@prefix bio: <http://purl.org/vocab/bio/0.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix ex: <http://example.org/ex#> .
@prefix thing: <http://example.org/thing#> .

thing:lymeRegis 
  a ex:Town ;
  foaf:name "Lyme Regis" .

thing:charmouth 
  a ex:Town ;
  foaf:name "Charmouth" .

thing:hastings
  a ex:Town ;
  foaf:name "Hastings" .
  

thing:anon a foaf:Person .

thing:anonInLymeRegis 
  ex:subject thing:anon ;
  ex:property ex:residence ;
  ex:value thing:lymeRegis ;
  time:intervalBefore thing:anonInCharmouth ;
  time:intervalContains "1844" .

thing:anonInCharmouth 
  ex:subject thing:anon ;
  ex:property ex:residence ;
  ex:value thing:charmouth ;
  time:intervalAfter thing:anonInLymeRegis ;
  time:intervalBefore thing:anonInHastings ;
  time:intervalContains "1871" .

thing:anonInHastings 
  ex:subject thing:anon ;
  ex:property ex:residence ;
  ex:value thing:hastings ;
  time:intervalAfter thing:anonInCharmouth ;
  time:intervalContains "1881" .


