<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-11611</id>
	<title>Nabble - w3.org - public-owl-dev</title>
	<updated>2009-11-06T05:52:56Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/w3.org---public-owl-dev-f11611.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/w3.org---public-owl-dev-f11611.html" />
	<subtitle type="html">For discussion of the Web Ontology Language (OWL), from specifications to tools to applications, tutorials, books, and so on.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26236918</id>
	<title>Application Ontology</title>
	<published>2009-11-06T05:52:56Z</published>
	<updated>2009-11-06T05:52:56Z</updated>
	<author>
		<name>Daniel Cintra</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:times new roman,new york,times,serif;font-size:12pt;color:#000000;&quot;&gt;Hi!&lt;br&gt;&lt;br&gt;I've been doing my master degree research and it includes the use of domain ontology and application ontology. I've found a lot of owl examples of domain ontology, but I can't find application ontology owl axamples. Someone knows where may I find some application ontology owl file to guide me in my research?&lt;br&gt;&lt;br&gt;Thanks!&lt;br&gt;&lt;br&gt;Best Regards.&lt;br&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;Daniel Cintra Cugler&lt;br&gt;Lince - Laboratory for Innovation on Computing and Engineering&lt;br&gt;DC - UFSCar - Brazil&lt;br&gt;Skype name: daniel.cintra.cugler&lt;div&gt;&lt;br&gt;&lt;/div&gt;
&lt;!-- cg7.c2.mail.re1.yahoo.com compressed/chunked Fri Oct 30 04:56:41 PDT 2009 --&gt;
&lt;/div&gt;&lt;br&gt;


      &lt;hr size=1&gt;Veja quais são os assuntos do momento no Yahoo! + Buscados: &lt;a href=&quot;http://br.rd.yahoo.com/mail/taglines/mail/*http://br.maisbuscados.yahoo.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Top 10&lt;/a&gt; - &lt;a href=&quot;http://br.rd.yahoo.com/mail/taglines/mail/*http://br.maisbuscados.yahoo.com/celebridades/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Celebridades&lt;/a&gt; - &lt;a href=&quot;http://br.rd.yahoo.com/mail/taglines/mail/*http://br.maisbuscados.yahoo.com/m%C3%BAsica/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Música&lt;/a&gt; - &lt;a href=&quot;http://br.rd.yahoo.com/mail/taglines/mail/*http://br.maisbuscados.yahoo.com/esportes/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Esportes&lt;/a&gt;&lt;/body&gt;&lt;/html&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Application-Ontology-tp26236918p26236918.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26222098</id>
	<title>Re: How to query items of a Sequence ?</title>
	<published>2009-11-05T13:00:00Z</published>
	<updated>2009-11-05T13:00:00Z</updated>
	<author>
		<name>Paul Gearon</name>
	</author>
	<content type="html">Doh! I've been caught up in function extensions recently, and totally
&lt;br&gt;forgot that this can be done with base SPARQL. See below...
&lt;br&gt;&lt;br&gt;On Thu, Nov 5, 2009 at 3:00 PM, Paul Gearon &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26222098&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gearon@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; If you don't have an entailment regime, then you can also try to
&lt;br&gt;&amp;gt; filter by the structure of the predicate, but you need function
&lt;br&gt;&amp;gt; extensions if your triplestore to handle that. For instance, on many
&lt;br&gt;&amp;gt; triplestores you could do:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; PREFIX rdf: &amp;lt;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; SELECT ?sequence ?predicate ?element
&lt;br&gt;&amp;gt; WHERE {
&lt;br&gt;&amp;gt;  ?sequence rdf:type rdf:Seq .
&lt;br&gt;&amp;gt;  ?sequence ?predicate ?element .
&lt;br&gt;&amp;gt;  FILTER fn:starts-with( str(?predicate),
&lt;br&gt;&amp;gt; &amp;quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#_&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#_&lt;/a&gt;&amp;quot;)
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The problem with this approach is that not every SPARQL endpoint
&lt;br&gt;&amp;gt; handles this function (yet), or they have similar though differently
&lt;br&gt;&amp;gt; named functions. Also, doing these string comparisons could get
&lt;br&gt;&amp;gt; expensive if you had a lot of data to return.
&lt;/div&gt;&lt;br&gt;The better approach is to use regex.
&lt;br&gt;&lt;br&gt;FILTER regex(str(?predicate),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;^&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#_&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#_&lt;/a&gt;\d+$&amp;quot;)
&lt;br&gt;&lt;br&gt;This has the added advantage of ensuring that only numbers are used at
&lt;br&gt;the end of the URI (this should be the case, but it's conceivable that
&lt;br&gt;someone could write bad URIs). Thanks to Andy Seaborne for pointing
&lt;br&gt;out my shortcomings. &amp;nbsp;:-)
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Paul Gearon
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-query-items-of-a-Sequence---tp26206897p26222098.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26221326</id>
	<title>Re: How to query items of a Sequence ?</title>
	<published>2009-11-05T12:00:59Z</published>
	<updated>2009-11-05T12:00:59Z</updated>
	<author>
		<name>Paul Gearon</name>
	</author>
	<content type="html">Hi Etienne,
&lt;br&gt;&lt;br&gt;This is an RDF and SPARQL issue, and not really appropriate for an OWL
&lt;br&gt;list. This is especially so, given that most of the OWL community are
&lt;br&gt;against the use of Containers (especially the DL folks).
&lt;br&gt;&lt;br&gt;I recommend mailing lists such as &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26221326&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;semantic-web@...&lt;/a&gt;, or possibly
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26221326&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www-rdf-interest@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;But since I'm here....
&lt;br&gt;&lt;br&gt;On Tue, Nov 3, 2009 at 4:48 PM, Etienne Morency
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26221326&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;etienne.morency@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi everyone,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; We are using sequences in our project and we are having difficulties finding
&lt;br&gt;&amp;gt; a way to query our ontology to get all items of a sequence using SPARQL.
&lt;br&gt;&lt;br&gt;I mentioned that containers (including sequences) are not encouraged
&lt;br&gt;by the OWL community. While I expect to see them used in general RDF,
&lt;br&gt;I'm a little surprised to see them in a system described by OWL. I'm
&lt;br&gt;sure there are a few people here willing to discuss this design
&lt;br&gt;decision with you, but I'll just press ahead with your question. After
&lt;br&gt;all, querying members of collections is just as awkward with SPARQL
&lt;br&gt;1.0. &amp;nbsp;:-)
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The sequence in our ontology looks like this :
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;rdf:Seq rdf:about=&amp;quot;&lt;a href=&quot;http://www.url.com/someonto.owl#1317&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;rdf:Seq rdf:about=&amp;quot;&lt;a href=&quot;http://www.url.com/someonto.owl#1317&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;     &amp;lt;rdf:_1 rdf:resource=&amp;quot;&lt;a href=&quot;http://www.url.com/someonto.owl#314&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#314&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;rdf:Seq rdf:about=&amp;quot;&lt;a href=&quot;http://www.url.com/someonto.owl#1317&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;     &amp;lt;rdf:_2 rdf:resource=&amp;quot;&lt;a href=&quot;http://www.url.com/someonto.owl#194&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#194&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;rdf:Seq rdf:about=&amp;quot;&lt;a href=&quot;http://www.url.com/someonto.owl#1317&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;     &amp;lt;rdf:_3 rdf:resource=&amp;quot;&lt;a href=&quot;http://www.url.com/someonto.owl#GENERIC_113&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#GENERIC_113&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; We are able to find the sequence &amp;quot;&lt;a href=&quot;http://www.url.com/someonto.owl#1317&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot; with
&lt;br&gt;&amp;gt; the following query :
&lt;br&gt;&amp;gt; SELECT ?sequence WHERE { ?sequence &amp;lt;&amp;quot; + RDF.TYPE + &amp;quot;&amp;gt; &amp;lt;&amp;quot; + RDF.SEQ + &amp;quot;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But is there a way to have a query that will return the items _1, _2 and _3
&lt;br&gt;&amp;gt; directly ?
&lt;/div&gt;&lt;br&gt;First off, since you have a sequence, you'd often want to know what
&lt;br&gt;the first thing is, the second thing is, etc, and you can select these
&lt;br&gt;out just by referring to the predicates rdf:_1, rdf:_2, and so on. But
&lt;br&gt;it looks like you want to get everything, so directly mentioning the
&lt;br&gt;predicates won't help.
&lt;br&gt;&lt;br&gt;If you have RDFS entailments available, you can ask for the
&lt;br&gt;rdfs:member property, since all rdf:_n are subproperties of this:
&lt;br&gt;&lt;br&gt;PREFIX rdf: &amp;lt;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;gt;
&lt;br&gt;PREFIX rdfs: &amp;lt;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&amp;gt;
&lt;br&gt;SELECT ?sequence ?element
&lt;br&gt;WHERE { ?sequence rdf:type rdf:Seq . ?sequence rdfs:member ?element }
&lt;br&gt;&lt;br&gt;However, this loses your ordering. You can try to get the associated
&lt;br&gt;predicate (add {?sequence ?pred ?element} and remove the rdfs:member
&lt;br&gt;elements via OPTIONAL/!BOUND), but the SPARQL gets messy and we
&lt;br&gt;haven't even established if you have entailment available.
&lt;br&gt;&lt;br&gt;If you don't have an entailment regime, then you can also try to
&lt;br&gt;filter by the structure of the predicate, but you need function
&lt;br&gt;extensions if your triplestore to handle that. For instance, on many
&lt;br&gt;triplestores you could do:
&lt;br&gt;&lt;br&gt;PREFIX rdf: &amp;lt;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;gt;
&lt;br&gt;SELECT ?sequence ?predicate ?element
&lt;br&gt;WHERE {
&lt;br&gt;&amp;nbsp; ?sequence rdf:type rdf:Seq .
&lt;br&gt;&amp;nbsp; ?sequence ?predicate ?element .
&lt;br&gt;&amp;nbsp; FILTER fn:starts-with( str(?predicate),
&lt;br&gt;&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#_&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#_&lt;/a&gt;&amp;quot;)
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;The problem with this approach is that not every SPARQL endpoint
&lt;br&gt;handles this function (yet), or they have similar though differently
&lt;br&gt;named functions. Also, doing these string comparisons could get
&lt;br&gt;expensive if you had a lot of data to return.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Paul Gearon
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-query-items-of-a-Sequence---tp26206897p26221326.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26219146</id>
	<title>Re: questions about the topObjectProperty</title>
	<published>2009-11-05T09:39:54Z</published>
	<updated>2009-11-05T09:39:54Z</updated>
	<author>
		<name>Birte Glimm</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/5 Wael Yehia &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26219146&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wmyehia2001@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;Hello everyone,&lt;br&gt;   
I&amp;#39;m trying to use some reasoner that supports OWL 2, fully, and I&amp;#39;m
particularly interested in being able to reason with the Universal Role
(represented by the topObjectProperty), the role that relates every
pair of individuals in the domain.&lt;br&gt;    Now, I noticed that Protege
4.0 does not have a keyword for topObjectProperty or at least it is not
predefined and appear at the root of the property hierarchy, the way
the Thing (top) concept is predefined and is at the root of the concept
hierarchy. Maybe because protege 4.0 doesn&amp;#39;t support OWL 2 fully yet.
&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;Protege 4.0 is not really OWL 2 ready. You would need Protege 4.1, which is not yet officially released. We just released HermiT 1.1 and from the HermiT website, you can also get a compiled version of Protege 4.1 (no support and no guarantee that it is working, it is not an official Protege release).&lt;br&gt;
 &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;And creating a new property with the &amp;#39;topObjectProperty&amp;#39; name won&amp;#39;t
make it the topObjectProperty that we need but just some another
property, because by looking at the rdf output when you save the
ontology you&amp;#39;ll see that the topObjectProperty that you defined is
prefixed with your ontology&amp;#39;s name and not the &amp;#39;owl:&amp;#39; prefix which is
presumably the right one.&lt;br&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;Yes, without the owl prefix it is not really the top property. &lt;br&gt; &lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;I wrote some test cases manually, this is one of them in First Order Logic (FOL):&lt;br&gt;              (\forall x.F(x))    \and    \not (\exist x.F(x))           &lt;br&gt;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;That can directly be expressed as a DL axiom:&lt;br&gt;SubClassOf(owl:Thing :F)&lt;br&gt;SubClassOf(owl:Thing ObjectComplementOf(:F))&lt;br&gt;in other syntax&lt;br&gt;top implies F&lt;br&gt;top implies not F&lt;br&gt;
(I used two axioms because in your example the two x are not really the same, you could rename one into y due to the quantifier scope)&lt;br&gt; &lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;which is equal to:    \forall x.False&lt;br&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;not equal, but it follows&lt;br&gt; &lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;I
am not sure if this formula is satisfiable, maybe if the domain is
empty. &lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;The domain is required to be non-empty, so it is unsatisfiable. &lt;br&gt; &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;But it can be translated to Description Logic (DL) using the
Universal Role (topObjectProperty) and becomes&lt;br&gt;              \forall U. Bot&lt;br&gt;or in manchester syntax:&lt;br&gt;              topObjectProperty only Nothing&lt;br&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;No need for the top role, as said above. All axioms apply to all individuals, they can be seen as usiversally quantified. &lt;br&gt;
If you use the top object property, your domain can still have one element, but that element cannot have a successor. The ontology is still satisfiable though. &lt;br&gt; &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;Now,
my concern is that I&amp;#39;m not 100% sure that I&amp;#39;m expressing the formula in
RDF syntax (which i will show below) correctly, and therefore don&amp;#39;t
know how Hermit 1.0 (which claims that it supports OWL 2) is
understanding it. &lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;HermiT understands what you say, but you probably don&amp;#39;t want to use the top object property.&lt;br&gt; &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;So, if anyone knows whether this is correct syntax,
or knows anything about Hermit&amp;#39;s reasoning capabilities with
topObjectProperty, then any advice or hints are greatly appreciated.
&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;HermiT supports indeed all of OWL 2 including owl:topObjectProperty.&lt;br&gt; &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;This is my RDF syntax ontology, I don&amp;#39;t know if I should include parts
of it here or all of it, so I decide to put it all here, and please
note that I cheated a bit and used protege to output it for me and then
i manually changed the occurrences of topobjectproperty with two
version of my own:&lt;br&gt;1) #TopObjectProperty    .... I tried this one
because protege shows it as a super property of any new property you
create so I thought maybe it recognizes it this way&lt;br&gt;2) owl:topObjectProperty&lt;br&gt;&lt;br&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;only the second one is the top object property. The first one is just a normal property for HermiT.&lt;br&gt;
 &lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;This is the RDF ontology:&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br&gt;&amp;lt;!DOCTYPE rdf:RDF [&lt;br&gt;    &amp;lt;!ENTITY owl2 &amp;quot;owl:&amp;quot; &amp;gt;&lt;br&gt;    &amp;lt;!ENTITY owl &amp;quot;&lt;a href=&quot;http://www.w3.org/2002/07/owl#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#&lt;/a&gt;&amp;quot; &amp;gt;&lt;br&gt;
    &amp;lt;!ENTITY xsd &amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema#&lt;/a&gt;&amp;quot; &amp;gt;&lt;br&gt;    &amp;lt;!ENTITY owl2xml &amp;quot;&lt;a href=&quot;http://www.w3.org/2006/12/owl2-xml#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2006/12/owl2-xml#&lt;/a&gt;&amp;quot; &amp;gt;&lt;br&gt;
    &amp;lt;!ENTITY rdfs &amp;quot;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&amp;quot; &amp;gt;&lt;br&gt;    &amp;lt;!ENTITY rdf &amp;quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3..org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;quot;
 &amp;gt;&lt;br&gt;    &amp;lt;!ENTITY O3 &amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&amp;quot; &amp;gt;&lt;br&gt;]&amp;gt;&lt;br&gt;&amp;lt;rdf:RDF xmlns=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&amp;quot;&lt;br&gt;
     xml:base=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl&lt;/a&gt;&amp;quot;&lt;br&gt;     xmlns:rdfs=&amp;quot;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&amp;quot;&lt;br&gt;
     xmlns:owl2xml=&amp;quot;&lt;a href=&quot;http://www.w3.org/2006/12/owl2-xml#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2006/12/owl2-xml#&lt;/a&gt;&amp;quot;&lt;br&gt;     xmlns:owl=&amp;quot;&lt;a href=&quot;http://www.w3.org/2002/07/owl#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#&lt;/a&gt;&amp;quot;&lt;br&gt;
     xmlns:xsd=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema#&lt;/a&gt;&amp;quot;&lt;br&gt;     xmlns:rdf=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;quot;&lt;br&gt;
     xmlns:owl2=&amp;quot;owl:&amp;quot;&lt;br&gt;     xmlns:O3=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&amp;quot;&amp;gt;&lt;br&gt;    &amp;lt;owl:Ontology rdf:about=&amp;quot;&amp;quot;/&amp;gt;&lt;br&gt;
&lt;br&gt;    &amp;lt;!--&lt;br&gt;    ///////////////////////////////////////////////////////////////////////////////////////&lt;br&gt;    //&lt;br&gt;    // Object Properties&lt;br&gt;    //&lt;br&gt;    ///////////////////////////////////////////////////////////////////////////////////////&lt;br&gt;
     --&amp;gt;  &lt;br&gt;&lt;br&gt;    &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#TopObjectProperty&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#TopObjectProperty&lt;/a&gt; --&amp;gt;&lt;br&gt;    &amp;lt;owl:ObjectProperty rdf:about=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;&lt;br&gt;
&lt;br&gt;    &amp;lt;!-- owl:topObjectProperty --&amp;gt;&lt;br&gt;    &amp;lt;owl:ObjectProperty rdf:about=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;&lt;br&gt;&lt;br&gt;    &amp;lt;!--&lt;br&gt;    ///////////////////////////////////////////////////////////////////////////////////////&lt;br&gt;
    //&lt;br&gt;    // Classes&lt;br&gt;    //&lt;br&gt;    ///////////////////////////////////////////////////////////////////////////////////////&lt;br&gt;     --&amp;gt;&lt;br&gt;&lt;br&gt;    &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#A&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#A&lt;/a&gt; --&amp;gt;&lt;br&gt;
   
 &amp;lt;owl:Class rdf:about=&amp;quot;#A&amp;quot;/&amp;gt;&lt;br&gt;&lt;br&gt;    &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#Last&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#Last&lt;/a&gt; --&amp;gt;&lt;br&gt;    &amp;lt;owl:Class rdf:about=&amp;quot;#Last&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;owl:equivalentClass&amp;gt;&lt;br&gt;            &amp;lt;owl:Class&amp;gt;&lt;br&gt;                &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;&lt;br&gt;                    &amp;lt;owl:Class&amp;gt;&lt;br&gt;                       
 &amp;lt;owl:complementOf&amp;gt;&lt;br&gt;                            &amp;lt;owl:Restriction&amp;gt;&lt;br&gt;                                &amp;lt;owl:onProperty rdf:resource=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;&lt;br&gt;                                &amp;lt;owl:someValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;&lt;br&gt;
                           
 &amp;lt;/owl:Restriction&amp;gt;&lt;br&gt;                        &amp;lt;/owl:complementOf&amp;gt;&lt;br&gt;                    &amp;lt;/owl:Class&amp;gt;&lt;br&gt;                    &amp;lt;owl:Restriction&amp;gt;&lt;br&gt;                        &amp;lt;owl:onProperty rdf:resource=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;&lt;br&gt;
                        &amp;lt;owl:allValuesFrom
 rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;&lt;br&gt;                    &amp;lt;/owl:Restriction&amp;gt;&lt;br&gt;                &amp;lt;/owl:intersectionOf&amp;gt;&lt;br&gt;            &amp;lt;/owl:Class&amp;gt;&lt;br&gt;        &amp;lt;/owl:equivalentClass&amp;gt;&lt;br&gt;    &amp;lt;/owl:Class&amp;gt;&lt;br&gt;
   &lt;br&gt;&lt;br&gt;&lt;br&gt;    &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#b&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#b&lt;/a&gt; --&amp;gt;&lt;br&gt;&lt;br&gt;    &amp;lt;owl:Class rdf:about=&amp;quot;#b&amp;quot;&amp;gt;&lt;br&gt;
        &amp;lt;owl:equivalentClass&amp;gt;&lt;br&gt;           
 &amp;lt;owl:Class&amp;gt;&lt;br&gt;                &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;&lt;br&gt;                    &amp;lt;rdf:Description rdf:about=&amp;quot;#A&amp;quot;/&amp;gt;&lt;br&gt;                    &amp;lt;rdf:Description rdf:about=&amp;quot;&amp;amp;owl;Thing&amp;quot;/&amp;gt;&lt;br&gt;
                &amp;lt;/owl:intersectionOf&amp;gt;&lt;br&gt;            &amp;lt;/owl:Class&amp;gt;&lt;br&gt;        &amp;lt;/owl:equivalentClass&amp;gt;&lt;br&gt;    &amp;lt;/owl:Class&amp;gt;&lt;br&gt;   &lt;br&gt;&lt;br&gt;&lt;br&gt;    &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#c&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#c&lt;/a&gt; --&amp;gt;&lt;br&gt;
&lt;br&gt;    &amp;lt;owl:Class rdf:about=&amp;quot;#c&amp;quot;&amp;gt;&lt;br&gt;        &amp;lt;owl:equivalentClass&amp;gt;&lt;br&gt;            &amp;lt;owl:Class&amp;gt;&lt;br&gt;                &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;&lt;br&gt;                    &amp;lt;owl:Class&amp;gt;&lt;br&gt;
                        &amp;lt;owl:complementOf&amp;gt;&lt;br&gt;                           
 &amp;lt;owl:Restriction&amp;gt;&lt;br&gt;                                &amp;lt;owl:onProperty rdf:resource=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;&lt;br&gt;                                &amp;lt;owl:someValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;&lt;br&gt;
                            &amp;lt;/owl:Restriction&amp;gt;&lt;br&gt;                       
 &amp;lt;/owl:complementOf&amp;gt;&lt;br&gt;                    &amp;lt;/owl:Class&amp;gt;&lt;br&gt;                    &amp;lt;owl:Restriction&amp;gt;&lt;br&gt;                        &amp;lt;owl:onProperty rdf:resource=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;&lt;br&gt;                        &amp;lt;owl:allValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;&lt;br&gt;
                    &amp;lt;/owl:Restriction&amp;gt;&lt;br&gt;               
 &amp;lt;/owl:intersectionOf&amp;gt;&lt;br&gt;            &amp;lt;/owl:Class&amp;gt;&lt;br&gt;        &amp;lt;/owl:equivalentClass&amp;gt;&lt;br&gt;    &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&lt;br&gt;    &amp;lt;!-- &lt;a href=&quot;http://www.w3.org/2002/07/owl#Thing&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#Thing&lt;/a&gt; --&amp;gt;&lt;br&gt;
&lt;br&gt;    &amp;lt;owl:Class rdf:about=&amp;quot;&amp;amp;owl;Thing&amp;quot;/&amp;gt;&lt;br&gt;&amp;lt;/rdf:RDF&amp;gt;&lt;br&gt;&amp;lt;!-- Generated by the OWL API (version 2.2.1.1138) &lt;a href=&quot;http://owlapi.sourceforge.net&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://owlapi.sourceforge.net&lt;/a&gt; --&amp;gt;&lt;br&gt;
&lt;br&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;In your ontology instances of the class C cannot have any successors (there you used the real top property) and instances of class Last cannot have any &lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl&lt;/a&gt;&lt;/font&gt;&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;#TopObjectProperty successor, but can have other successors.&lt;br&gt;
&lt;/font&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;&lt;br&gt;&lt;br&gt;finally,
I was wondering if there is a formula containing a topObjectProperty
that is, say unsatisfiable, and if all occurences of topObjectProperty
are substituted by another property R, then it becomes satisfiable. So,
what I &amp;#39;m asking is if there&amp;#39;s an example which clearly shows the
distinction between a topObjectProperty and an ordinary property, also
I&amp;#39;m interested in logic (or maybe DL) based satisfiability, and not
satisfiability based on domain, range or something else.&lt;br&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;I was told
that domain closure formulas such as \forall x.(F(x) &amp;lt;=&amp;gt; (x=a |
x=b)), can be used to distinguish between the topObjectProperty and
other properties, so this formula should be unsatisfiable:&lt;br&gt;       C(a) &amp;amp; C(b) &amp;amp; \forall x (C(x) &amp;lt;=&amp;gt; x=a)&lt;br&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;This just implies a=b, unless you have unique name assumption. &lt;br&gt;
 &lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;which is equivalent to:&lt;br&gt;       Ex.(C(x) &amp;amp; x=a)  &amp;amp;  Ex.(C(x) &amp;amp; x=b)  &amp;amp;  Ax.( (C(x) &amp;amp; x=a)  |  (~C(x) &amp;amp; ~x=a) )&lt;br&gt;So I translated them to a DL called ALCO+U, which allows nominals and the Universal Role, using the translation:&lt;br&gt;
       Ex.C(x)     becomes in DL   \exist U. C&lt;br&gt;       Ax.C(x)     becomes in DL   \forall U. C&lt;br&gt;where U is the universal role. &lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;Again, no need for the universal role: &lt;br&gt;
C(a)&lt;br&gt;C(b)&lt;br&gt;C equals {a}&lt;br&gt;in functional style syntax&lt;br&gt;ClassAssertion(C a)&lt;br&gt;ClassAssertion(C b)&lt;br&gt;EquivalentClasses(C ObjectOneOf(a))&lt;br&gt; &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;And the other translations are straightforward, such as   x=a  becomes {a}, and so on..&lt;br&gt;Also,
we assumed Unique Names Axioms in the above formula, but we need to
explicitly mention that in OWL 2, so I used the DifferentIndividuals
axiom to say that &amp;#39;a&amp;#39; and &amp;#39;b&amp;#39; are different individuals.&lt;br&gt;This is that formula in Manchester Syntax:&lt;br&gt;            topObjectProperty some (C and {a})&lt;br&gt;              and topObjectProperty some (C and {b})&lt;br&gt;
              and topObjectProperty only ((not C) or {a})&lt;br&gt;&lt;br&gt;So,
after saying that &amp;#39;a&amp;#39; and &amp;#39;b&amp;#39; are distinct individuals, the formula is
found unsatisfiable, which is correct, but when replacing
topObjectProperty with another property, say R, the unsatisfiablility
stays, which after some thinking I found it correct too. So this result
made me write this email to ask for advice about whether the
topObjectProperty can be distinguished from another role R using purely
FOL semantics.&lt;br&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;Well, it can be axiomatised, so you can replace the top object property by a fresh property and add a couple of axioms (the fresh property is a super property of all other axioms, etc.) and you have the same effect.&lt;br&gt;
&lt;br&gt;You should use the top object property sparsely, because it can be computationally expensive and in all your examples it was not needed and rather the result of a wrong translation, so I suggest you read more about OWL semantics and maybe its relation to FOL. Maybe the OWL primer is helpful:&lt;br&gt;
&lt;a href=&quot;http://www.w3.org/TR/owl2-primer/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/owl2-primer/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Best regards,&lt;br&gt;Birte  &lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;font face=&quot;&amp;#39;PrimaSans BT,Verdana,sans-serif&amp;#39;&quot;&gt;&lt;br&gt;Thank you.&lt;br&gt;&lt;br&gt;Wael&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;



      &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Dr. Birte Glimm, Room 306&lt;br&gt;Computing Laboratory&lt;br&gt;Parks Road&lt;br&gt;Oxford&lt;br&gt;OX1 3QD&lt;br&gt;United Kingdom&lt;br&gt;+44 (0)1865 283529&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/questions-about-the-topObjectProperty-tp26217602p26219146.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26219187</id>
	<title>Re: questions about the topObjectProperty</title>
	<published>2009-11-05T09:38:17Z</published>
	<updated>2009-11-05T09:38:17Z</updated>
	<author>
		<name>Timothy Redmond</name>
	</author>
	<content type="html">&lt;br&gt;I hope that this post is not misplaced but I thought I would give some &amp;nbsp;
&lt;br&gt;context about the Protege reference. &amp;nbsp;Protege 4.0 is currently in &amp;nbsp;
&lt;br&gt;transition and does not fully support OWL 2.0. &amp;nbsp; &amp;nbsp;Roughly speaking &amp;nbsp;
&lt;br&gt;Protege 4.0 supports OWL 1.1. &amp;nbsp;Protege 4.1, which will be released as &amp;nbsp;
&lt;br&gt;an early alpha soon, does support OWL 2.0 and works with Hermit.
&lt;br&gt;&lt;br&gt;-Timothy
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 4, 2009, at 7:30 PM, Wael Yehia wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello everyone,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I'm trying to use some reasoner that supports OWL 2, fully, and &amp;nbsp;
&lt;br&gt;&amp;gt; I'm particularly interested in being able to reason with the &amp;nbsp;
&lt;br&gt;&amp;gt; Universal Role (represented by the topObjectProperty), the role that &amp;nbsp;
&lt;br&gt;&amp;gt; relates every pair of individuals in the domain.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Now, I noticed that Protege 4.0 does not have a keyword for &amp;nbsp;
&lt;br&gt;&amp;gt; topObjectProperty or at least it is not predefined and appear at the &amp;nbsp;
&lt;br&gt;&amp;gt; root of the property hierarchy, the way the Thing (top) concept is &amp;nbsp;
&lt;br&gt;&amp;gt; predefined and is at the root of the concept hierarchy. Maybe &amp;nbsp;
&lt;br&gt;&amp;gt; because protege 4.0 doesn't support OWL 2 fully yet. And creating a &amp;nbsp;
&lt;br&gt;&amp;gt; new property with the 'topObjectProperty' name won't make it the &amp;nbsp;
&lt;br&gt;&amp;gt; topObjectProperty that we need but just some another property, &amp;nbsp;
&lt;br&gt;&amp;gt; because by looking at the rdf output when you save the ontology &amp;nbsp;
&lt;br&gt;&amp;gt; you'll see that the topObjectProperty that you defined is prefixed &amp;nbsp;
&lt;br&gt;&amp;gt; with your ontology's name and not the 'owl:' prefix which is &amp;nbsp;
&lt;br&gt;&amp;gt; presumably the right one.
&lt;br&gt;&amp;gt; I wrote some test cases manually, this is one of them in First Order &amp;nbsp;
&lt;br&gt;&amp;gt; Logic (FOL):
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (\forall x.F(x)) &amp;nbsp; &amp;nbsp;\and &amp;nbsp; &amp;nbsp;\not (\exist x.F(x))
&lt;br&gt;&amp;gt; which is equal to: &amp;nbsp; &amp;nbsp;\forall x.False
&lt;br&gt;&amp;gt; I am not sure if this formula is satisfiable, maybe if the domain is &amp;nbsp;
&lt;br&gt;&amp;gt; empty. But it can be translated to Description Logic (DL) using the &amp;nbsp;
&lt;br&gt;&amp;gt; Universal Role (topObjectProperty) and becomes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \forall U. Bot
&lt;br&gt;&amp;gt; or in manchester syntax:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; topObjectProperty only Nothing
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now, my concern is that I'm not 100% sure that I'm expressing the &amp;nbsp;
&lt;br&gt;&amp;gt; formula in RDF syntax (which i will show below) correctly, and &amp;nbsp;
&lt;br&gt;&amp;gt; therefore don't know how Hermit 1.0 (which claims that it supports &amp;nbsp;
&lt;br&gt;&amp;gt; OWL 2) is understanding it. So, if anyone knows whether this is &amp;nbsp;
&lt;br&gt;&amp;gt; correct syntax, or knows anything about Hermit's reasoning &amp;nbsp;
&lt;br&gt;&amp;gt; capabilities with topObjectProperty, then any advice or hints are &amp;nbsp;
&lt;br&gt;&amp;gt; greatly appreciated. This is my RDF syntax ontology, I don't know if &amp;nbsp;
&lt;br&gt;&amp;gt; I should include parts of it here or all of it, so I decide to put &amp;nbsp;
&lt;br&gt;&amp;gt; it all here, and please note that I cheated a bit and used protege &amp;nbsp;
&lt;br&gt;&amp;gt; to output it for me and then i manually changed the occurrences of &amp;nbsp;
&lt;br&gt;&amp;gt; topobjectproperty with two version of my own:
&lt;br&gt;&amp;gt; 1) #TopObjectProperty &amp;nbsp; &amp;nbsp;.... I tried this one because protege shows &amp;nbsp;
&lt;br&gt;&amp;gt; it as a super property of any new property you create so I thought &amp;nbsp;
&lt;br&gt;&amp;gt; maybe it recognizes it this way
&lt;br&gt;&amp;gt; 2) owl:topObjectProperty
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This is the RDF ontology:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;!DOCTYPE rdf:RDF [
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY owl2 &amp;quot;owl:&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY owl &amp;quot;&lt;a href=&quot;http://www.w3.org/2002/07/owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY xsd &amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY owl2xml &amp;quot;&lt;a href=&quot;http://www.w3.org/2006/12/owl2-xml#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2006/12/owl2-xml#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY rdfs &amp;quot;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY rdf &amp;quot;&lt;a href=&quot;http://www.w3..org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3..org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY O3 &amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; O3.owl#&amp;quot; &amp;gt;
&lt;br&gt;&amp;gt; ]&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;rdf:RDF xmlns=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;xml:base=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:rdfs=&amp;quot;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:owl2xml=&amp;quot;&lt;a href=&quot;http://www.w3.org/2006/12/owl2-xml#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2006/12/owl2-xml#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:owl=&amp;quot;&lt;a href=&quot;http://www.w3.org/2002/07/owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:xsd=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:rdf=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:owl2=&amp;quot;owl:&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:O3=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Ontology rdf:about=&amp;quot;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!--
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; //
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; // Object Properties
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; //
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#TopObjectProperty&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#TopObjectProperty&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;owl:ObjectProperty rdf:about=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- owl:topObjectProperty --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;owl:ObjectProperty rdf:about=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!--
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; //
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; // Classes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; //
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#A&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#A&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#A&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#Last&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#Last&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#Last&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:complementOf&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Restriction&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:onProperty &amp;nbsp;
&lt;br&gt;&amp;gt; rdf:resource=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:someValuesFrom &amp;nbsp;
&lt;br&gt;&amp;gt; rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:complementOf&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Restriction&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:onProperty &amp;nbsp;
&lt;br&gt;&amp;gt; rdf:resource=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:allValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:intersectionOf&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#b&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#b&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;#A&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;&amp;owl;Thing&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:intersectionOf&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#c&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#c&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:complementOf&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Restriction&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:onProperty &amp;nbsp;
&lt;br&gt;&amp;gt; rdf:resource=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:someValuesFrom &amp;nbsp;
&lt;br&gt;&amp;gt; rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:complementOf&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Restriction&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:onProperty &amp;nbsp;
&lt;br&gt;&amp;gt; rdf:resource=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:allValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:intersectionOf&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.w3.org/2002/07/owl#Thing&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#Thing&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;&amp;owl;Thing&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/rdf:RDF&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;!-- Generated by the OWL API (version 2.2.1.1138) &lt;a href=&quot;http://owlapi.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://owlapi.sourceforge.net&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; finally, I was wondering if there is a formula containing a &amp;nbsp;
&lt;br&gt;&amp;gt; topObjectProperty that is, say unsatisfiable, and if all occurences &amp;nbsp;
&lt;br&gt;&amp;gt; of topObjectProperty are substituted by another property R, then it &amp;nbsp;
&lt;br&gt;&amp;gt; becomes satisfiable. So, what I 'm asking is if there's an example &amp;nbsp;
&lt;br&gt;&amp;gt; which clearly shows the distinction between a topObjectProperty and &amp;nbsp;
&lt;br&gt;&amp;gt; an ordinary property, also I'm interested in logic (or maybe DL) &amp;nbsp;
&lt;br&gt;&amp;gt; based satisfiability, and not satisfiability based on domain, range &amp;nbsp;
&lt;br&gt;&amp;gt; or something else.
&lt;br&gt;&amp;gt; I was told that domain closure formulas such as \forall x.(F(x) &amp;lt;=&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; (x=a | x=b)), can be used to distinguish between the &amp;nbsp;
&lt;br&gt;&amp;gt; topObjectProperty and other properties, so this formula should be &amp;nbsp;
&lt;br&gt;&amp;gt; unsatisfiable:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;C(a) &amp; C(b) &amp; \forall x (C(x) &amp;lt;=&amp;gt; x=a)
&lt;br&gt;&amp;gt; which is equivalent to:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ex.(C(x) &amp; x=a) &amp;nbsp;&amp; &amp;nbsp;Ex.(C(x) &amp; x=b) &amp;nbsp;&amp; &amp;nbsp;Ax.( (C(x) &amp; x=a) &amp;nbsp;| &amp;nbsp; 
&lt;br&gt;&amp;gt; (~C(x) &amp; ~x=a) )
&lt;br&gt;&amp;gt; So I translated them to a DL called ALCO+U, which allows nominals &amp;nbsp;
&lt;br&gt;&amp;gt; and the Universal Role, using the translation:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ex.C(x) &amp;nbsp; &amp;nbsp; becomes in DL &amp;nbsp; \exist U. C
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ax.C(x) &amp;nbsp; &amp;nbsp; becomes in DL &amp;nbsp; \forall U. C
&lt;br&gt;&amp;gt; where U is the universal role. And the other translations are &amp;nbsp;
&lt;br&gt;&amp;gt; straightforward, such as &amp;nbsp; x=a &amp;nbsp;becomes {a}, and so on..
&lt;br&gt;&amp;gt; Also, we assumed Unique Names Axioms in the above formula, but we &amp;nbsp;
&lt;br&gt;&amp;gt; need to explicitly mention that in OWL 2, so I used the &amp;nbsp;
&lt;br&gt;&amp;gt; DifferentIndividuals axiom to say that 'a' and 'b' are different &amp;nbsp;
&lt;br&gt;&amp;gt; individuals.
&lt;br&gt;&amp;gt; This is that formula in Manchester Syntax:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; topObjectProperty some (C and {a})
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; and topObjectProperty some (C and {b})
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; and topObjectProperty only ((not C) or {a})
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, after saying that 'a' and 'b' are distinct individuals, the &amp;nbsp;
&lt;br&gt;&amp;gt; formula is found unsatisfiable, which is correct, but when replacing &amp;nbsp;
&lt;br&gt;&amp;gt; topObjectProperty with another property, say R, the &amp;nbsp;
&lt;br&gt;&amp;gt; unsatisfiablility stays, which after some thinking I found it &amp;nbsp;
&lt;br&gt;&amp;gt; correct too. So this result made me write this email to ask for &amp;nbsp;
&lt;br&gt;&amp;gt; advice about whether the topObjectProperty can be distinguished from &amp;nbsp;
&lt;br&gt;&amp;gt; another role R using purely FOL semantics.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Wael
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/questions-about-the-topObjectProperty-tp26217602p26219187.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26208364</id>
	<title>questions about the topObjectProperty</title>
	<published>2009-11-04T19:31:35Z</published>
	<updated>2009-11-04T19:31:35Z</updated>
	<author>
		<name>wyehia</name>
	</author>
	<content type="html">Hello everyone,
&lt;br&gt;&amp;nbsp; &amp;nbsp; I'm trying to use some reasoner that supports OWL 2, fully, and I'm particularly interested in being able to reason with the Universal Role (represented by the topObjectProperty), the role that relates every pair of individuals in the domain.
&lt;br&gt;&amp;nbsp; &amp;nbsp; Now, I noticed that Protege 4.0 does not have a keyword for topObjectProperty or at least it is not predefined and appear at the root of the property hierarchy, the way the Thing (top) concept is predefined and is at the root of the concept hierarchy. Maybe because protege 4.0 doesn't support OWL 2 fully yet. And creating a new property with the 'topObjectProperty' name won't make it the topObjectProperty that we need but just some another property, because by looking at the rdf output when you save the ontology you'll see that the topObjectProperty that you defined is prefixed with your ontology's name and not the 'owl:' prefix which is presumably the right one.
&lt;br&gt;I wrote some test cases manually, this is one of them in First Order Logic (FOL):
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (\forall x.F(x)) &amp;nbsp; &amp;nbsp;\and &amp;nbsp; &amp;nbsp;\not (\exist x.F(x)) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;which is equal to: &amp;nbsp; &amp;nbsp;\forall x.False
&lt;br&gt;I am not sure if this formula is satisfiable, maybe if the domain is empty. But it can be translated to Description Logic (DL) using the Universal Role (topObjectProperty) and becomes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \forall U. Bot
&lt;br&gt;or in manchester syntax:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; topObjectProperty only Nothing
&lt;br&gt;&lt;br&gt;Now, my concern is that I'm not 100% sure that I'm expressing the formula in RDF syntax (which i will show below) correctly, and therefore don't know how Hermit 1.0 (which claims that it supports OWL 2) is understanding it. So, if anyone knows whether this is correct syntax, or knows anything about Hermit's reasoning capabilities with topObjectProperty, then any advice or hints are greatly appreciated. This is my RDF syntax ontology, I don't know if I should include parts of it here or all of it, so I decide to put it all here, and please note that I cheated a bit and used protege to output it for me and then i manually changed the occurrences of topobjectproperty with two version of my own:
&lt;br&gt;1) #TopObjectProperty &amp;nbsp; &amp;nbsp;.... I tried this one because protege shows it as a super property of any new property you create so I thought maybe it recognizes it this way
&lt;br&gt;2) owl:topObjectProperty
&lt;br&gt;&lt;br&gt;This is the RDF ontology:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;
&lt;br&gt;&amp;lt;!DOCTYPE rdf:RDF [
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY owl2 &amp;quot;owl:&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY owl &amp;quot;&lt;a href=&quot;http://www.w3.org/2002/07/owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY xsd &amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY owl2xml &amp;quot;&lt;a href=&quot;http://www.w3.org/2006/12/owl2-xml#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2006/12/owl2-xml#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY rdfs &amp;quot;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY rdf &amp;quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!ENTITY O3 &amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&amp;quot; &amp;gt;
&lt;br&gt;]&amp;gt;
&lt;br&gt;&amp;lt;rdf:RDF xmlns=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;xml:base=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:rdfs=&amp;quot;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:owl2xml=&amp;quot;&lt;a href=&quot;http://www.w3.org/2006/12/owl2-xml#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2006/12/owl2-xml#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:owl=&amp;quot;&lt;a href=&quot;http://www.w3.org/2002/07/owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:xsd=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:rdf=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:owl2=&amp;quot;owl:&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:O3=&amp;quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:Ontology rdf:about=&amp;quot;&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!--
&lt;br&gt;&amp;nbsp; &amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////
&lt;br&gt;&amp;nbsp; &amp;nbsp; //
&lt;br&gt;&amp;nbsp; &amp;nbsp; // Object Properties
&lt;br&gt;&amp;nbsp; &amp;nbsp; //
&lt;br&gt;&amp;nbsp; &amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;--&amp;gt; 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#TopObjectProperty&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#TopObjectProperty&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:ObjectProperty rdf:about=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- owl:topObjectProperty --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:ObjectProperty rdf:about=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!--
&lt;br&gt;&amp;nbsp; &amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////
&lt;br&gt;&amp;nbsp; &amp;nbsp; //
&lt;br&gt;&amp;nbsp; &amp;nbsp; // Classes
&lt;br&gt;&amp;nbsp; &amp;nbsp; //
&lt;br&gt;&amp;nbsp; &amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;--&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#A&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#A&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#A&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#Last&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#Last&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#Last&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:complementOf&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:onProperty rdf:resource=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:someValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:complementOf&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:onProperty rdf:resource=&amp;quot;#TopObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:allValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:intersectionOf&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#b&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#b&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;#A&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;&amp;owl;Thing&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:intersectionOf&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#c&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#c&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&amp;quot;Collection&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:complementOf&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:onProperty rdf:resource=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:someValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:complementOf&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:Restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:onProperty rdf:resource=&amp;quot;owl:topObjectProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;owl:allValuesFrom rdf:resource=&amp;quot;#b&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:intersectionOf&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/owl:Class&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.w3.org/2002/07/owl#Thing&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#Thing&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;&amp;owl;Thing&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/rdf:RDF&amp;gt;
&lt;br&gt;&amp;lt;!-- Generated by the OWL API (version 2.2.1.1138) &lt;a href=&quot;http://owlapi.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://owlapi.sourceforge.net&lt;/a&gt;&amp;nbsp;--&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;finally, I was wondering if there is a formula containing a topObjectProperty that is, say unsatisfiable, and if all occurences of topObjectProperty are substituted by another property R, then it becomes satisfiable. So, what I 'm asking is if there's an example which clearly shows the distinction between a topObjectProperty and an ordinary property, also I'm interested in logic (or maybe DL) based satisfiability, and not satisfiability based on domain, range or something else.
&lt;br&gt;I was told that domain closure formulas such as \forall x.(F(x) &amp;lt;=&amp;gt; (x=a | x=b)), can be used to distinguish between the topObjectProperty and other properties, so this formula should be unsatisfiable:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;C(a) &amp; C(b) &amp; \forall x (C(x) &amp;lt;=&amp;gt; x=a)
&lt;br&gt;which is equivalent to:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ex.(C(x) &amp; x=a) &amp;nbsp;&amp; &amp;nbsp;Ex.(C(x) &amp; x=b) &amp;nbsp;&amp; &amp;nbsp;Ax.( (C(x) &amp; x=a) &amp;nbsp;| &amp;nbsp;(~C(x) &amp; ~x=a) )
&lt;br&gt;So I translated them to a DL called ALCO+U, which allows nominals and the Universal Role, using the translation:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ex.C(x) &amp;nbsp; &amp;nbsp; becomes in DL &amp;nbsp; \exist U. C
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Ax.C(x) &amp;nbsp; &amp;nbsp; becomes in DL &amp;nbsp; \forall U. C
&lt;br&gt;where U is the universal role. And the other translations are straightforward, such as &amp;nbsp; x=a &amp;nbsp;becomes {a}, and so on..
&lt;br&gt;Also, we assumed Unique Names Axioms in the above formula, but we need to explicitly mention that in OWL 2, so I used the DifferentIndividuals axiom to say that 'a' and 'b' are different individuals.
&lt;br&gt;This is that formula in Manchester Syntax:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; topObjectProperty some (C and {a})
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; and topObjectProperty some (C and {b})
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; and topObjectProperty only ((not C) or {a})
&lt;br&gt;&lt;br&gt;So, after saying that 'a' and 'b' are distinct individuals, the formula is found unsatisfiable, which is correct, but when replacing topObjectProperty with another property, say R, the unsatisfiablility stays, which after some thinking I found it correct too. So this result made me write this email to ask for advice about whether the topObjectProperty can be distinguished from another role R using purely FOL semantics.
&lt;br&gt;&lt;br&gt;Thank you.
&lt;br&gt;&lt;br&gt;Wael</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/questions-about-the-topObjectProperty-tp26208364p26208364.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26217602</id>
	<title>questions about the topObjectProperty</title>
	<published>2009-11-04T19:30:58Z</published>
	<updated>2009-11-04T19:30:58Z</updated>
	<author>
		<name>wyehia</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;&lt;font face=&quot;'PrimaSans BT,Verdana,sans-serif'&quot;&gt;Hello everyone,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
I'm trying to use some reasoner that supports OWL 2, fully, and I'm
particularly interested in being able to reason with the Universal Role
(represented by the topObjectProperty), the role that relates every
pair of individuals in the domain.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Now, I noticed that Protege
4.0 does not have a keyword for topObjectProperty or at least it is not
predefined and appear at the root of the property hierarchy, the way
the Thing (top) concept is predefined and is at the root of the concept
hierarchy. Maybe because protege 4.0 doesn't support OWL 2 fully yet.
And creating a new property with the 'topObjectProperty' name won't
make it the topObjectProperty that we need but just some another
property, because by looking at the rdf output when you save the
ontology you'll see that the topObjectProperty that you defined is
prefixed with your ontology's name and not the 'owl:' prefix which is
presumably the right one.&lt;br&gt;I wrote some test cases manually, this is one of them in First Order Logic (FOL):&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (\forall x.F(x))&amp;nbsp;&amp;nbsp;&amp;nbsp; \and&amp;nbsp;&amp;nbsp;&amp;nbsp; \not (\exist x.F(x))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;which is equal to:&amp;nbsp;&amp;nbsp;&amp;nbsp; \forall x.False&lt;br&gt;I
am not sure if this formula is satisfiable, maybe if the domain is
empty. But it can be translated to Description Logic (DL) using the
Universal Role (topObjectProperty) and becomes&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; \forall U. Bot&lt;br&gt;or in manchester syntax:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; topObjectProperty only Nothing&lt;br&gt;&lt;br&gt;Now,
my concern is that I'm not 100% sure that I'm expressing the formula in
RDF syntax (which i will show below) correctly, and therefore don't
know how Hermit 1.0 (which claims that it supports OWL 2) is
understanding it. So, if anyone knows whether this is correct syntax,
or knows anything about Hermit's reasoning capabilities with
topObjectProperty, then any advice or hints are greatly appreciated.
This is my RDF syntax ontology, I don't know if I should include parts
of it here or all of it, so I decide to put it all here, and please
note that I cheated a bit and used protege to output it for me and then
i manually changed the occurrences of topobjectproperty with two
version of my own:&lt;br&gt;1) #TopObjectProperty&amp;nbsp;&amp;nbsp;&amp;nbsp; .... I tried this one
because protege shows it as a super property of any new property you
create so I thought maybe it recognizes it this way&lt;br&gt;2) owl:topObjectProperty&lt;br&gt;&lt;br&gt;This is the RDF ontology:&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;?xml version=&quot;1.0&quot;?&amp;gt;&lt;br&gt;&amp;lt;!DOCTYPE rdf:RDF [&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!ENTITY owl2 &quot;owl:&quot; &amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!ENTITY owl &quot;&lt;a href=&quot;http://www.w3.org/2002/07/owl#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#&lt;/a&gt;&quot; &amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!ENTITY xsd &quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema#&lt;/a&gt;&quot; &amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!ENTITY owl2xml &quot;&lt;a href=&quot;http://www.w3.org/2006/12/owl2-xml#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2006/12/owl2-xml#&lt;/a&gt;&quot; &amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!ENTITY rdfs &quot;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&quot; &amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!ENTITY rdf &quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3..org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&quot;
 &amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!ENTITY O3 &quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&quot; &amp;gt;&lt;br&gt;]&amp;gt;&lt;br&gt;&amp;lt;rdf:RDF xmlns=&quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xml:base=&quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl&lt;/a&gt;&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:rdfs=&quot;&lt;a href=&quot;http://www.w3.org/2000/01/rdf-schema#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2000/01/rdf-schema#&lt;/a&gt;&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:owl2xml=&quot;&lt;a href=&quot;http://www.w3.org/2006/12/owl2-xml#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2006/12/owl2-xml#&lt;/a&gt;&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:owl=&quot;&lt;a href=&quot;http://www.w3.org/2002/07/owl#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#&lt;/a&gt;&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:xsd=&quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema#&lt;/a&gt;&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:rdf=&quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&lt;/a&gt;&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:owl2=&quot;owl:&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:O3=&quot;&lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#&lt;/a&gt;&quot;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Ontology rdf:about=&quot;&quot;/&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Object Properties&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt;&amp;nbsp; &lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#TopObjectProperty&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#TopObjectProperty&lt;/a&gt; --&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:ObjectProperty rdf:about=&quot;#TopObjectProperty&quot;/&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- owl:topObjectProperty --&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:ObjectProperty rdf:about=&quot;owl:topObjectProperty&quot;/&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Classes&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ///////////////////////////////////////////////////////////////////////////////////////&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#A&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#A&lt;/a&gt; --&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
 &amp;lt;owl:Class rdf:about=&quot;#A&quot;/&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#Last&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#Last&lt;/a&gt; --&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Class rdf:about=&quot;#Last&quot;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&quot;Collection&quot;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
 &amp;lt;owl:complementOf&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Restriction&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:onProperty rdf:resource=&quot;#TopObjectProperty&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:someValuesFrom rdf:resource=&quot;#b&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
 &amp;lt;/owl:Restriction&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:complementOf&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Restriction&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:onProperty rdf:resource=&quot;#TopObjectProperty&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:allValuesFrom
 rdf:resource=&quot;#b&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:intersectionOf&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#b&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#b&lt;/a&gt; --&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Class rdf:about=&quot;#b&quot;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
 &amp;lt;owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&quot;Collection&quot;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;rdf:Description rdf:about=&quot;#A&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;rdf:Description rdf:about=&quot;&amp;amp;owl;Thing&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:intersectionOf&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.semanticweb.org/ontologies/2009/9/O3.owl#c&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.semanticweb.org/ontologies/2009/9/O3.owl#c&lt;/a&gt; --&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Class rdf:about=&quot;#c&quot;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:equivalentClass&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:intersectionOf rdf:parseType=&quot;Collection&quot;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:complementOf&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
 &amp;lt;owl:Restriction&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:onProperty rdf:resource=&quot;owl:topObjectProperty&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:someValuesFrom rdf:resource=&quot;#b&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
 &amp;lt;/owl:complementOf&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Restriction&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:onProperty rdf:resource=&quot;owl:topObjectProperty&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:allValuesFrom rdf:resource=&quot;#b&quot;/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Restriction&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
 &amp;lt;/owl:intersectionOf&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:equivalentClass&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/owl:Class&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- &lt;a href=&quot;http://www.w3.org/2002/07/owl#Thing&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl#Thing&lt;/a&gt; --&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;owl:Class rdf:about=&quot;&amp;amp;owl;Thing&quot;/&amp;gt;&lt;br&gt;&amp;lt;/rdf:RDF&amp;gt;&lt;br&gt;&amp;lt;!-- Generated by the OWL API (version 2.2.1.1138) &lt;a href=&quot;http://owlapi.sourceforge.net&quot; target=&quot;l&quot; rel=&quot;nofollow&quot;&gt;http://owlapi.sourceforge.net&lt;/a&gt; --&amp;gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;finally,
I was wondering if there is a formula containing a topObjectProperty
that is, say unsatisfiable, and if all occurences of topObjectProperty
are substituted by another property R, then it becomes satisfiable. So,
what I 'm asking is if there's an example which clearly shows the
distinction between a topObjectProperty and an ordinary property, also
I'm interested in logic (or maybe DL) based satisfiability, and not
satisfiability based on domain, range or something else.&lt;br&gt;I was told
that domain closure formulas such as \forall x.(F(x) &amp;lt;=&amp;gt; (x=a |
x=b)), can be used to distinguish between the topObjectProperty and
other properties, so this formula should be unsatisfiable:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C(a) &amp;amp; C(b) &amp;amp; \forall x (C(x) &amp;lt;=&amp;gt; x=a)&lt;br&gt;which is equivalent to:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ex.(C(x) &amp;amp; x=a)&amp;nbsp; &amp;amp;&amp;nbsp; Ex.(C(x) &amp;amp; x=b)&amp;nbsp; &amp;amp;&amp;nbsp; Ax.( (C(x) &amp;amp; x=a)&amp;nbsp; |&amp;nbsp; (~C(x) &amp;amp; ~x=a) )&lt;br&gt;So I translated them to a DL called ALCO+U, which allows nominals and the Universal Role, using the translation:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ex.C(x)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; becomes in DL&amp;nbsp;&amp;nbsp; \exist U. C&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ax.C(x)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; becomes in DL&amp;nbsp;&amp;nbsp; \forall U. C&lt;br&gt;where U is the universal role. And the other translations are straightforward, such as&amp;nbsp;&amp;nbsp; x=a&amp;nbsp; becomes {a}, and so on..&lt;br&gt;Also,
we assumed Unique Names Axioms in the above formula, but we need to
explicitly mention that in OWL 2, so I used the DifferentIndividuals
axiom to say that 'a' and 'b' are different individuals.&lt;br&gt;This is that formula in Manchester Syntax:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; topObjectProperty some (C and {a})&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and topObjectProperty some (C and {b})&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and topObjectProperty only ((not C) or {a})&lt;br&gt;&lt;br&gt;So,
after saying that 'a' and 'b' are distinct individuals, the formula is
found unsatisfiable, which is correct, but when replacing
topObjectProperty with another property, say R, the unsatisfiablility
stays, which after some thinking I found it correct too. So this result
made me write this email to ask for advice about whether the
topObjectProperty can be distinguished from another role R using purely
FOL semantics.&lt;br&gt;&lt;br&gt;Thank you.&lt;br&gt;&lt;br&gt;Wael&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;



</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/questions-about-the-topObjectProperty-tp26217602p26217602.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26201239</id>
	<title>3rd CFP Agent-Directed Simulation, April 12-14, 2010, Orlando,  Florida</title>
	<published>2009-11-04T09:22:50Z</published>
	<updated>2009-11-04T09:22:50Z</updated>
	<author>
		<name>Yu Zhang-4</name>
	</author>
	<content type="html">===============================================================
&lt;br&gt;CALL FOR PAPERS and POSTERS
&lt;br&gt;Agent-Directed Simulation Symposium (ADS'10)
&lt;br&gt;Orlando, Florida, USA
&lt;br&gt;April 12-14, 2010
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.site.uottawa.ca/~oren/conf-org/ADS_2010/ADS-CFP.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.site.uottawa.ca/~oren/conf-org/ADS_2010/ADS-CFP.htm&lt;/a&gt;&lt;br&gt;Manuscript Submission: November 30, 2009.
&lt;br&gt;&lt;br&gt;Sponsored by The Society for Modeling and Simulation
&lt;br&gt;International (SCS) in collaboration with ACM/SIGSIM.
&lt;br&gt;==============================================================
&lt;br&gt;&lt;br&gt;As part of the 2010 Spring Simulation Multi-conference (SpringSim'10) 
&lt;br&gt;&lt;a href=&quot;http://www.scs.org/confernc/springsim/springsim10/springsim10.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.scs.org/confernc/springsim/springsim10/springsim10.htm&lt;/a&gt;&lt;br&gt;&lt;br&gt;the 2010 Agent-Directed Simulation Symposium is a premier platform to
&lt;br&gt;explore all three aspects of the synergy of simulation and agent
&lt;br&gt;technologies. Hence, it has a special place within simulation and
&lt;br&gt;agent conferences, including agent-based (social) simulation
&lt;br&gt;conferences. Therefore the ADS symposium fills a gap in the agent
&lt;br&gt;community as well as the simulation community.
&lt;br&gt;&lt;br&gt;The purpose of the ADS symposium is to facilitate dissemination of the
&lt;br&gt;most recent advancements in the theory, methodology, application, and
&lt;br&gt;toolkits of agent-directed simulation. Agent-directed simulation is
&lt;br&gt;comprehensive in the integration of agent and simulation technologies,
&lt;br&gt;by including models that use agents to develop domain-specific
&lt;br&gt;simulations, i.e., agent simulation (this is often referred to as
&lt;br&gt;agent-based simulation -when other two important aspects are not
&lt;br&gt;considered), and by also including the use of agent technology to
&lt;br&gt;develop simulation techniques and toolkits that are subsequently
&lt;br&gt;applied, either with or without agents.
&lt;br&gt;&lt;br&gt;Hence, agent-directed simulation consists of three distinct, yet
&lt;br&gt;related areas that can be grouped under two categories as follows:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;1. Simulation for Agents (agent simulation): simulation of agent
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; systems in engineering, human and social dynamics, military
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; applications etc.
&lt;br&gt;&amp;nbsp; &amp;nbsp;2. Agents for Simulation (which has two aspects): agent-supported
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; simulation deals with the use of agents as a support facility to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; enable computer assistance in problem solving or enhancing
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; cognitive capabilities; and agent-based simulation that focuses
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; on the use of agents for the generation of model behavior in a
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; simulation study.
&lt;br&gt;&lt;br&gt;Through the theme of agent-directed simulation, the symposium will
&lt;br&gt;bring together agent technologies, tools, toolkits, platforms,
&lt;br&gt;languages, methodologies, and applications in a pragmatic manner. In
&lt;br&gt;this symposium, established researchers, educators, and students are
&lt;br&gt;encouraged to come together and discuss the benefits of agent
&lt;br&gt;technology in their use and application for simulation. It is a way
&lt;br&gt;for people to discuss why and how they have used agent technology in
&lt;br&gt;their simulations, and describe the benefit of having done so.
&lt;br&gt;&lt;br&gt;&lt;br&gt;The theme of ADS'10 is based on the observation of the following
&lt;br&gt;premises.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* The growth of new advanced distributed computing standards along
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;with the rapid rise of e-commerce are providing a new context that
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;acts as a critical driver for the development of next generation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;systems. These standards revolve around service-oriented
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;technologies, pervasive computing, web-services, Grid, autonomic
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;computing, ambient intelligence etc. The supporting role that
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;intelligent agents play in the development of such systems is
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;becoming pervasive, and simulation plays a critical role in the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;analysis and design of such systems.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* The use of emergent agent technologies at the organization,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;interaction (e.g., coordination, negotiation, communication) and
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;agent levels (i.e. reasoning, autonomy) are expected to advance
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;the state of the art in various application technologies is
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;difficult. Using agent-supported simulation techniques for
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;testing complex agent systems is up and coming field.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* To facilitate bridging the gap between research and application,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;there is a need for tools, agent programming languages, and
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;methodologies to analyze, design, and implement complex,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;non-trivial agent-based simulations. Existing agent-based
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;simulation tools are still not mature enough to enable developing
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;agents with varying degrees cognitive and reasoning capabilities.
&lt;br&gt;&lt;br&gt;ADS'10 will provide a leading forum to bring together researchers and
&lt;br&gt;practitioners from diverse simulation societies within computer science,
&lt;br&gt;social sciences, engineering, business, education, human factors, and
&lt;br&gt;systems engineering. The involvement of various agent-directed
&lt;br&gt;simulation groups will enable the cross-fertilization of ideas and
&lt;br&gt;development of new perspectives by fostering novel advanced solutions,
&lt;br&gt;as well as enabling technologies for agent-directed simulation
&lt;br&gt;&lt;br&gt;AUTHOR GUIDE
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* Technical papers provide a longer format for presenting experience
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;reports, research results, or descriptions of &amp;nbsp;&amp;quot;work in progress&amp;quot;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;They are limited to 8 pages.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* Short position papers are targeted at raising a question or framing
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;an issue for discussion during the symposium. Position papers are
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;limited to 3 pages.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* Poster presentations present an opportunity to present work in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;progress and receive feedback from colleagues. A one page write-up
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;of the poster presentations will be included in the proceedings.
&lt;br&gt;&lt;br&gt;(For all, required font sizes are: min 10 pt for text and min 9 pt for
&lt;br&gt;figures or references).
&lt;br&gt;&lt;br&gt;Papers should be submitted electronically to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.softconf.com/scs/ADS10/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.softconf.com/scs/ADS10/&lt;/a&gt;&amp;nbsp;.
&lt;br&gt;All papers will be subject to a peer-reviewing process by three program
&lt;br&gt;committee members. (Please see the key dates listed below.)
&lt;br&gt;&lt;br&gt;&lt;br&gt;FINAL PAPER SUBMISSION GUIDELINES
&lt;br&gt;&lt;br&gt;All prospective authors, whose papers are accepted for inclusion in the
&lt;br&gt;program, will be invited to submit their position or technical &amp;nbsp;papers
&lt;br&gt;to ADS'10. Accepted and registered papers will be published in the
&lt;br&gt;conference proceedings by the SCS. In addition, the committee will
&lt;br&gt;select a set of best papers. Authors of these papers will be encouraged to 
&lt;br&gt;submit appropriately expanded versions of these papers for journal
&lt;br&gt;publication.
&lt;br&gt;&lt;br&gt;&lt;br&gt;KEY DATES
&lt;br&gt;&amp;nbsp; &amp;nbsp;Nov 30, 2009: Manuscript submission
&lt;br&gt;&amp;nbsp; &amp;nbsp;Dec 30, 2009: Notification of acceptance
&lt;br&gt;&amp;nbsp; &amp;nbsp;Jan 20, 2010: Full Camera-ready papers
&lt;br&gt;&amp;nbsp; &amp;nbsp;Apr 12-14, 2010: ADS'10 Symposium
&lt;br&gt;&lt;br&gt;&lt;br&gt;General Co-Chair
&lt;br&gt;&amp;nbsp; &amp;nbsp;Levent Yilmaz, Auburn University
&lt;br&gt;&amp;nbsp; &amp;nbsp;Tuncer Ören, University of Ottawa
&lt;br&gt;Program Co-Chair
&lt;br&gt;&amp;nbsp; &amp;nbsp;Gregory Madey, University of Notre Dame
&lt;br&gt;&amp;nbsp; &amp;nbsp;Maarten Sierhuis, Carnegie Mellon University, NASA Ames Research Center
&lt;br&gt;&amp;nbsp; &amp;nbsp;Yu Zhang, Trinity University</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/3rd-CFP-Agent-Directed-Simulation%2C-April-12-14%2C-2010%2C-Orlando%2C--Florida-tp26201239p26201239.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26206897</id>
	<title>How to query items of a Sequence ?</title>
	<published>2009-11-03T13:48:58Z</published>
	<updated>2009-11-03T13:48:58Z</updated>
	<author>
		<name>Etienne Morency</name>
	</author>
	<content type="html">Hi everyone, &lt;br&gt;&lt;br&gt;We are using sequences in our project and we are having difficulties finding a way to query our ontology to get all items of a sequence using SPARQL.&lt;br&gt;
&lt;br&gt;The sequence in our ontology looks like this :&lt;br&gt;&lt;br&gt;&amp;lt;rdf:Seq rdf:about=&amp;quot;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_1317&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot;/&amp;gt;&lt;br&gt;


&lt;br&gt;&amp;lt;rdf:Seq rdf:about=&amp;quot;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_1317&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot;/&amp;gt;&lt;br&gt;    &amp;lt;rdf:_1 rdf:resource=&amp;quot;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_1317&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#&lt;/a&gt;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_314&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;314&lt;/a&gt;&amp;quot;/&amp;gt;&lt;br&gt;


&amp;lt;/rdf:Description&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;rdf:Seq rdf:about=&amp;quot;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_1317&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot;/&amp;gt;&lt;br&gt;
    &amp;lt;rdf:_2 rdf:resource=&amp;quot;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_1317&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#&lt;/a&gt;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_194&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;194&lt;/a&gt;&amp;quot;/&amp;gt;&lt;br&gt;

&amp;lt;/rdf:Description&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;rdf:Seq rdf:about=&amp;quot;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_1317&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot;/&amp;gt;&lt;br&gt;
    &amp;lt;rdf:_3 rdf:resource=&amp;quot;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_1317&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#&lt;/a&gt;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_113&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;GENERIC_113&lt;/a&gt;&amp;quot;/&amp;gt;&lt;br&gt;

&amp;lt;/rdf:Description&amp;gt;&lt;br&gt;&lt;br&gt;We are able to find the sequence &amp;quot;&lt;a href=&quot;http://www.datashaper.org/owl/2009/10/generic.owl#GENERIC_1317&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.url.com/someonto.owl#1317&lt;/a&gt;&amp;quot; with the following query : &lt;br&gt;

SELECT ?sequence WHERE { ?sequence &amp;lt;&amp;quot; + RDF.TYPE + &amp;quot;&amp;gt; &amp;lt;&amp;quot; + RDF.SEQ + &amp;quot;&amp;gt; }&lt;br&gt;&lt;br&gt;But is there a way to have a query that will return the items _1, _2 and _3 directly ?&lt;br&gt;&lt;br&gt;Thank you,&lt;br&gt;

&lt;br&gt;Etienne Morency-Bachand&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-query-items-of-a-Sequence---tp26206897p26206897.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26069490</id>
	<title>OnTheMove 2009, Vilamoura, Algarve: 5  top Keynote Speakers</title>
	<published>2009-10-26T16:13:30Z</published>
	<updated>2009-10-26T16:13:30Z</updated>
	<author>
		<name>OnTheMove Federated Conferences</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.6000.16890&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY bgColor=#ffffff&gt;
&lt;DIV&gt;Call for Participation&lt;BR&gt;&lt;BR&gt;OnTheMove (OTM) 2009 is a federated event 
that counts 4 conferences and 10 workshops, co-located in the week of Nov.1 to 
6, in the &lt;A href=&quot;http://www.tivolihotels.com/hotels-portugal/destination/algarve/hotel_marina_vilamoura/list.aspx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Tivoli&amp;nbsp;Marina 
Conference Center and Hotel &lt;/A&gt;overlooking the pleasant fishing and yacht 
harbour of Vilamoura, in the Portuguese Algarve.&lt;BR&gt;&lt;BR&gt;All workshops and 
conferences gravitate around the themes and aspects of distributed, heterogenous 
and ubiquitous computing on the internet. There will be plenty of opportunities 
to mingle with researchers in related domains, or become informed of new 
developments in your area.&lt;BR&gt;&lt;BR&gt;More&amp;nbsp;about OnTheMove 2009 can be 
found&amp;nbsp;at &lt;A href=&quot;http://www.onthemove-conferences.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.onthemove-conferences.org/&lt;/A&gt;&lt;A href=&quot;http://www.onthemove-conferences.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;FONT color=#000000&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;We draw your attention to our prestigious keynote speaker program which by 
OTM tradition is shared among all workshops and conferences, so *any* 
registration gives access to *all* keynote talks!&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Keynotes:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;- Wolfgang Prinz&lt;BR&gt;- Santosh Shrivastava&lt;BR&gt;- Kai Hwang&lt;BR&gt;- Alejandro 
Buchmann&lt;BR&gt;- Claude Feliot&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&lt;BR&gt;We, the 
General co-Chairs of OTM'09 hope we may welcome you for a week of top 
professional enjoyment in this charming part of Portugal.&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Advance registration rates remain in effect if registration is done through 
our website until 31 Oct 2009.&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Pilar Herrero&lt;BR&gt;Tharam Dillon&lt;BR&gt;Robert Meersman&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;OnTheMove Federated Conferences &amp;amp; Workshops 2009&lt;/DIV&gt;
&lt;DIV&gt;&lt;A href=&quot;http://www.onthemove-conferences.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.onthemove-conferences.org&lt;/A&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OnTheMove-2009%2C-Vilamoura%2C-Algarve%3A-5--top-Keynote-Speakers-tp26069490p26069490.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26067644</id>
	<title>Mapping from relational databases to OWL?</title>
	<published>2009-10-26T09:31:04Z</published>
	<updated>2009-10-26T09:31:04Z</updated>
	<author>
		<name>Duncan Hull-2</name>
	</author>
	<content type="html">Dear public-owl-dev
&lt;br&gt;&lt;br&gt;Can anybody can point me to any work done (published reviews and/or &amp;nbsp;
&lt;br&gt;available software) in the area of mapping relational database schemas &amp;nbsp;
&lt;br&gt;to OWL ontologies?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;Duncan
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Duncan Hull
&lt;br&gt;&lt;a href=&quot;http://www.ebi.ac.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ebi.ac.uk&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Mapping-from-relational-databases-to-OWL--tp26067644p26067644.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26041287</id>
	<title>OWLED 2009 - Future of OWL session minutes &amp; slides</title>
	<published>2009-10-24T10:37:42Z</published>
	<updated>2009-10-24T10:37:42Z</updated>
	<author>
		<name>Rinke Hoekstra-4</name>
	</author>
	<content type="html">The minutes and slides of the Future of OWL session are now available &amp;nbsp;
&lt;br&gt;from the Webont Wiki [1].
&lt;br&gt;&lt;br&gt;If you feel like contributing to the wiki (best practices, use cases, &amp;nbsp;
&lt;br&gt;applications etc.) please contact the Wiki administrators listed on &amp;nbsp;
&lt;br&gt;the front page [2] to get an account.
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;Rinke
&lt;br&gt;OWLED 2009 program chair
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://wiki.webont.org/page/Future_of_OWL&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.webont.org/page/Future_of_OWL&lt;/a&gt;&lt;br&gt;[2] &lt;a href=&quot;http://wiki.webont.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.webont.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;Dr Rinke Hoekstra
&lt;br&gt;&lt;br&gt;AI Department &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp; Leibniz Center for Law
&lt;br&gt;Faculty of Sciences &amp;nbsp; | &amp;nbsp; Faculty of Law
&lt;br&gt;Vrije Universiteit &amp;nbsp; &amp;nbsp;| &amp;nbsp; Universiteit van Amsterdam
&lt;br&gt;De Boelelaan 1081a &amp;nbsp; &amp;nbsp;| &amp;nbsp; Kloveniersburgwal 48
&lt;br&gt;1081 HV Amsterdam &amp;nbsp; &amp;nbsp; | &amp;nbsp; 1012 CX &amp;nbsp;Amsterdam
&lt;br&gt;+31-(0)20-5987752 &amp;nbsp; &amp;nbsp; | &amp;nbsp; +31-(0)20-5253499
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26041287&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hoekstra@...&lt;/a&gt; &amp;nbsp; &amp;nbsp;| &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26041287&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hoekstra@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;Homepage: &lt;a href=&quot;http://www.few.vu.nl/~hoekstra&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.few.vu.nl/~hoekstra&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWLED-2009---Future-of-OWL-session-minutes---slides-tp26041287p26041287.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26035157</id>
	<title>Call For Participation: Semantics for the Rest of Us Workshop at ISWC 2009</title>
	<published>2009-10-23T17:53:28Z</published>
	<updated>2009-10-23T17:53:28Z</updated>
	<author>
		<name>Lalana Kagal</name>
	</author>
	<content type="html">Apologies for cross posting
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Semantics for the Rest of Us -- Variants of
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Semantic Web Languages in the Real World
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Held in conjunction with
&lt;br&gt;&amp;nbsp; &amp;nbsp; 8th International Semantic Web Conference (ISWC 2009)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Monday, 26 October 2009, Washington, DC
&lt;br&gt;---------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;The Semantic Web is a broad vision of the future of personal
&lt;br&gt;computing, emphasizing the use of sophisticated knowledge
&lt;br&gt;representation as the basis for end-user applications' data modeling
&lt;br&gt;and management needs. Key to the pervasive adoption of Semantic Web
&lt;br&gt;technologies is a good set of fundamental &amp;quot;building blocks&amp;quot; - the most
&lt;br&gt;important of these are representation languages themselves. W3C's
&lt;br&gt;standard languages for the Semantic Web, RDF and OWL, have been around
&lt;br&gt;for several years; instead of strict standards compliance, we see
&lt;br&gt;&amp;quot;variants&amp;quot; of these languages emerge in applications, often tailored
&lt;br&gt;to a particular application's needs. These variants are often either
&lt;br&gt;subsets of OWL or supersets of RDF, typically with fragments OWL
&lt;br&gt;added. Extensions based on rules, such as SWRL and N3 logic, have been
&lt;br&gt;developed as well as enhancements to the SPARQL query language and
&lt;br&gt;protocol.
&lt;br&gt;&lt;br&gt;In this workshop we will explore the landscape of RDF, OWL and SPARQL
&lt;br&gt;variants, specifically from the standpoint of &amp;quot;real-world
&lt;br&gt;semantics&amp;quot;. Are there commonalities in these variants that might
&lt;br&gt;suggest new standards or new versions of the existing standards? We
&lt;br&gt;hope to identify common requirements of applications consuming
&lt;br&gt;Semantic Web data and understand the pros and cons of a strictly
&lt;br&gt;formal approach to modeling data versus a &amp;quot;scruffier&amp;quot; approach where
&lt;br&gt;semantics are based on application requirements and implementation
&lt;br&gt;restrictions.
&lt;br&gt;&lt;br&gt;The workshop will encourage active audience participation and
&lt;br&gt;discussion and includes a keynote by Sandro Hawke (W3C) as well as a
&lt;br&gt;panel to be moderated by Jim Hendler (RPI).
&lt;br&gt;&lt;br&gt;&lt;br&gt;ORGANIZERS
&lt;br&gt;&lt;br&gt;Lalana Kagal, Massachusetts Institute of Technology
&lt;br&gt;Ora Lassila, Nokia
&lt;br&gt;Tim Finin, University of Maryland, Baltimore County
&lt;br&gt;&lt;br&gt;&lt;br&gt;PROGRAM
&lt;br&gt;&lt;br&gt;08:30-08:45 Welcome, introductions, etc. [15]
&lt;br&gt;08:45-09:45 Sandro's invited talk + discussion [60]
&lt;br&gt;9:45 - 10:35 2 research paper [50]
&lt;br&gt;RDF syntax normalization using XML validation - Denny Vrandecic, Frank
&lt;br&gt;Dengler, Sebastian Rudolph and Michael Erdmann (research paper) [25]
&lt;br&gt;LexRDF Model: An RDF-based Unified Model for Heterologous Biomedical
&lt;br&gt;Ontologies - Cui Tao, Jyotishman Pathak, Harold Solbrig, Wei-Qi Wei
&lt;br&gt;and Christopher Chute (research paper) [25]
&lt;br&gt;10:35-10:50 Break [15]
&lt;br&gt;10:50 - 11:55 1 position paper, 2 research papers [65]
&lt;br&gt;Streaming OWL, Mike Dean (position paper) [10]
&lt;br&gt;Accessing Site-Specific APIs Through Write-Wrappers From The Web of
&lt;br&gt;Data - Oana Ureche, Aftab Iqbal, Richard Cyganiak and Michael
&lt;br&gt;Hausenblas (research paper) [25]
&lt;br&gt;LTML - A Language for Representing Semantic Web Service Workflow
&lt;br&gt;Procedures - Mark Burstein, Robert Goldman, Drew McDermott, David
&lt;br&gt;McDonald, Jacob Beal and John Maraist [25]
&lt;br&gt;11:55 - 12:40 Panel + discussion [45]
&lt;br&gt;12:40-12:45 Closing comments and Wrap-up
&lt;br&gt;12:45-2:00 Lunch
&lt;br&gt;&lt;br&gt;&lt;br&gt;PANEL
&lt;br&gt;&lt;br&gt;Title: &amp;quot;Little vs Large Semantics: What's next for the Semantic Web
&lt;br&gt;languages?&amp;quot;
&lt;br&gt;&lt;br&gt;Moderator: Jim Hendler, RPI
&lt;br&gt;&lt;br&gt;Panelists:
&lt;br&gt;Kendall Clark, Clark &amp; Parsia, LLC
&lt;br&gt;Leigh Dodds, Talis
&lt;br&gt;Ivan Herman, W3C
&lt;br&gt;Ora Lassila, Nokia
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Call-For-Participation%3A-Semantics-for-the-Rest-of-Us-Workshop-at-ISWC-2009-tp26035157p26035157.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26016422</id>
	<title>Sequence and inverse/transitive properties</title>
	<published>2009-10-22T13:10:53Z</published>
	<updated>2009-10-22T13:10:53Z</updated>
	<author>
		<name>thiebal</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm working for the first time with rdf:seq and I have a few questions.
&lt;br&gt;&lt;br&gt;I have a class Person and 2 inverse and transitive properties hasChild
&lt;br&gt;and isChildOf:
&lt;br&gt;&amp;nbsp; &amp;lt;owl:Class rdf:about=&amp;quot;#Person&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;owl:ObjectProperty rdf:about=&amp;quot;#hasChild&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;rdf:type rdf:resource=&amp;quot;&amp;owl;TransitiveProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/owl:ObjectProperty&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;owl:ObjectProperty rdf:about=&amp;quot;#isChildOf&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;rdf:type rdf:resource=&amp;quot;&amp;owl;TransitiveProperty&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;owl:inverseOf rdf:resource=&amp;quot;#hasChild&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/owl:ObjectProperty&amp;gt;
&lt;br&gt;&lt;br&gt;Here are my individuals:
&lt;br&gt;&amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#parent1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#parent1&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;hasChild xmlns=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#&lt;/a&gt;&amp;quot;
&lt;br&gt;rdf:resource=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#childSeq&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#childSeq&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#childSeq&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#childSeq&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;rdf:type rdf:resource=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#parent1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#parent1&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;rdf:type rdf:resource=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#Person&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#Person&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#child1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#child1&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;rdf:type rdf:resource=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#Person&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#Person&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#child2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#child2&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;rdf:type rdf:resource=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#Person&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#Person&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;rdf:Description rdf:about=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#childSeq&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#childSeq&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;rdf:_1 rdf:resource=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#child1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#child1&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;rdf:_2 rdf:resource=&amp;quot;&lt;a href=&quot;http://www.test.com/test.owl#child2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.test.com/test.owl#child2&lt;/a&gt;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/rdf:Description&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;How can I know who is the parent of a child?
&lt;br&gt;HasChild property from the parent give me the Seq instance, so the
&lt;br&gt;inverse from the Seq will return the parent. There is no properties
&lt;br&gt;about children...
&lt;br&gt;&lt;br&gt;Ideally, I'd like to have something like
&lt;br&gt;&amp;nbsp; parent1 hasChild child1, child2 (sorted)
&lt;br&gt;&amp;nbsp; child1 isChildOf parent1
&lt;br&gt;&amp;nbsp; child2 isChildOf parent1
&lt;br&gt;&lt;br&gt;And how can I use the transitivity of hasChild:
&lt;br&gt;&amp;nbsp; parent1 hasChild seq(child1)
&lt;br&gt;&amp;nbsp; child1 hasChild seq(child3)
&lt;br&gt;&lt;br&gt;I don't understand how can I get all children (multiple generations)
&lt;br&gt;from a parent (something like parent1 hasChild child1, child2,
&lt;br&gt;child3).
&lt;br&gt;&lt;br&gt;Is there a way from an individual to retrieve the seq that contains it?
&lt;br&gt;&lt;br&gt;Thanks in advance
&lt;br&gt;&lt;br&gt;Cedric
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Sequence-and-inverse-transitive-properties-tp26016422p26016422.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26001693</id>
	<title>Transitive Self-Referencing Properties</title>
	<published>2009-10-21T16:11:15Z</published>
	<updated>2009-10-21T16:11:15Z</updated>
	<author>
		<name>Jevon Wright</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;I am working on extending an ontology to select particular groups of equivalent classes from the base ontology, for validation of an ontology instance. I have come across a situation which doesn&amp;#39;t seem to be solvable within OWL 2 DL, and as far as I can tell, there are no OWL 2 Full reasoners available.&lt;br&gt;
&lt;br&gt;This is the base ontology:&lt;br&gt;&lt;br&gt;  SubClassOf(Page Destination)&lt;br&gt;&lt;br&gt;  ObjectPropertyDomain(events Page)&lt;br&gt;  ObjectPropertyRange(events Event)&lt;br&gt;&lt;br&gt;  ObjectPropertyDomain(action Event)&lt;br&gt;  ObjectPropertyRange(action Action)&lt;br&gt;
&lt;br&gt;  ObjectPropertyDomain(to Action)&lt;br&gt;  ObjectPropertyRange(to Destination)&lt;br&gt;&lt;br&gt;  DataPropertyDomain(name Event)&lt;br&gt;  DataPropertyRange(name xsd:string)&lt;br&gt;&lt;br&gt;That is, a Page (subclass of Destination) can have an Event, which has an Action, which has a reference to another Destination.&lt;br&gt;
&lt;br&gt;What I would like to achieve is select all cycles in ontology instances, i.e. all Pages that have an Event/Action chain that eventually points to itself - a cycle of event/action redirections.&lt;br&gt;&lt;br&gt;I define an equivalent subclass EventAccess which is all Events with the name &amp;quot;access&amp;quot;:&lt;br&gt;
&lt;br&gt;  SubClassOf(EventAccess Event)&lt;br&gt;  EquivalentClasses(EventAccess ObjectIntersectionOf(DataHasValue(name &amp;quot;access&amp;quot;) Event))&lt;br&gt;&lt;br&gt;In order to select this class later, I assert that all of these classes have a new &amp;quot;isAccessEvent&amp;quot; property, thanks to the OWA:&lt;br&gt;
&lt;br&gt;  Declaration(ObjectProperty(isAccessEvent))&lt;br&gt;  SubClassOf(EventAccess ObjectSomeValuesFrom(isAccessEvent owl:Thing))&lt;br&gt;&lt;br&gt;I then define a subclass of Page called PageRedirects, which represents a Page that contains an Event, which has an Action, that points to another Page.This is achieved though property chains, and uses the &amp;quot;property o inv(property)&amp;quot; approach of selecting a particular class. This &amp;quot;pageAccessTo&amp;quot; property, which points to the possible Pages that this Page may redirect to, is also defined as transitive.&lt;br&gt;
&lt;br&gt;  Declaration(ObjectProperty(pageAccessTo))&lt;br&gt;  TransitiveObjectProperty(pageAccessTo)&lt;br&gt;  ObjectPropertyDomain(pageAccessTo Page)&lt;br&gt;  ObjectPropertyRange(pageAccessTo Page)&lt;br&gt;  SubObjectPropertyOf(SubObjectPropertyChain(events isAccessEvent InverseObjectProperty(isAccessEvent) action to) pageAccessTo)&lt;br&gt;
&lt;br&gt;  Declaration(Class(PageRedirects))&lt;br&gt;  EquivalentClasses(PageRedirects ObjectIntersectionOf(ObjectSomeValuesFrom(pageAccessTo Page) Page))&lt;br&gt;  SubClassOf(PageRedirects Page)&lt;br&gt;&lt;br&gt;Up to this stage, there is no problem. I can create individuals in Protege and use the FaCT reasoner, and the Pellet reasoner, to infer that individuals are correctly equivalent to PageRedirects.&lt;br&gt;
&lt;br&gt;However, now I want to select all PageRedirects which eventually redirect to itself, using the transitive property above. I define an equivalent class CyclicPage, which is all PageRedirects which redirects to itself:&lt;br&gt;
&lt;br&gt;  EquivalentClasses(CyclicPage ObjectIntersectionOf(ObjectExistsSelf(pageAccessTo) PageRedirects))&lt;br&gt;  SubClassOf(CyclicPage PageRedirects)&lt;br&gt;&lt;br&gt;This is where the ontology fails. On further investigation, it appears this is because this transitive, self-referencing property is part of OWL 2 Full, and not OWL 2 DL; and the reasoners I have tried (FaCT, Pellet) can only support OWL 2 DL.&lt;br&gt;
&lt;br&gt;Is there another approach that would let me select transitive self-referencing properties, or achieve what I&amp;#39;d like to do, within the OWL 2 DL restrictions?&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;&lt;br&gt;Jevon&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Transitive-Self-Referencing-Properties-tp26001693p26001693.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25944535</id>
	<title>Re: OWL 2 Quick Reference Card</title>
	<published>2009-10-18T00:21:51Z</published>
	<updated>2009-10-18T00:21:51Z</updated>
	<author>
		<name>Hugh Glaser</name>
	</author>
	<content type="html">This ([1]) is just so cool - it even got me to read it properly.
&lt;br&gt;&lt;br&gt;Which did get me pondering on why people might feel the need to re-write
&lt;br&gt;Universal/Empty to Top/Bottom, making people have to just remember the
&lt;br&gt;terms, since hopefully many users will have no idea why.
&lt;br&gt;&lt;br&gt;But it is really good, and even seduces me into thinking I might understand
&lt;br&gt;it.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Hugh
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 18/10/2009 05:55, &amp;quot;Jie Bao&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25944535&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;baojie@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; We¹re pleased to announce the OWL 2 Reference Card [1]. The Card is
&lt;br&gt;&amp;gt; meant to be a ³cheat sheet² of OWL 2 features printable on a single
&lt;br&gt;&amp;gt; piece of paper (on both sides). It is based on the OWL 2 Quick
&lt;br&gt;&amp;gt; Reference Guide [1], which is now a Proposed Recommendation [2] in the
&lt;br&gt;&amp;gt; OWL 2 Web Ontology Language document set.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Background: OWL 2 [4] is an extension to OWL 1 with a few new
&lt;br&gt;&amp;gt; functionalities. Some of the new features are syntactic sugar (e.g.,
&lt;br&gt;&amp;gt; disjoint union of classes) while others offer new expressivity,
&lt;br&gt;&amp;gt; including:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; * keys;
&lt;br&gt;&amp;gt; * property chains;
&lt;br&gt;&amp;gt; * richer datatypes, data ranges;
&lt;br&gt;&amp;gt; * qualified cardinality restrictions;
&lt;br&gt;&amp;gt; * asymmetric, reflexive, and disjoint properties; and
&lt;br&gt;&amp;gt; * enhanced annotation capabilities
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Comments and suggestions to the Card are welcome (please send to
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25944535&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-comments@...&lt;/a&gt;)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; [1] &lt;a href=&quot;http://www.w3.org/2007/OWL/refcard&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2007/OWL/refcard&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; [2] &lt;a href=&quot;http://www.w3.org/2007/OWL/wiki/Quick_Reference_Guide&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2007/OWL/wiki/Quick_Reference_Guide&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; [3] &lt;a href=&quot;http://www.w3.org/TR/2009/PR-owl2-quick-reference-20090922/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/2009/PR-owl2-quick-reference-20090922/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; [4] &lt;a href=&quot;http://www.w3.org/TR/owl2-overview/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/owl2-overview/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Jie Bao
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-OWL-2-Quick-Reference-Card-tp25944084p25944535.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25944084</id>
	<title>Re: OWL 2 Quick Reference Card</title>
	<published>2009-10-17T21:55:01Z</published>
	<updated>2009-10-17T21:55:01Z</updated>
	<author>
		<name>Jie Bao</name>
	</author>
	<content type="html">We’re pleased to announce the OWL 2 Reference Card [1]. The Card is
&lt;br&gt;meant to be a “cheat sheet” of OWL 2 features printable on a single
&lt;br&gt;piece of paper (on both sides). It is based on the OWL 2 Quick
&lt;br&gt;Reference Guide [1], which is now a Proposed Recommendation [2] in the
&lt;br&gt;OWL 2 Web Ontology Language document set.
&lt;br&gt;&lt;br&gt;Background: OWL 2 [4] is an extension to OWL 1 with a few new
&lt;br&gt;functionalities. Some of the new features are syntactic sugar (e.g.,
&lt;br&gt;disjoint union of classes) while others offer new expressivity,
&lt;br&gt;including:
&lt;br&gt;&lt;br&gt;* keys;
&lt;br&gt;* property chains;
&lt;br&gt;* richer datatypes, data ranges;
&lt;br&gt;* qualified cardinality restrictions;
&lt;br&gt;* asymmetric, reflexive, and disjoint properties; and
&lt;br&gt;* enhanced annotation capabilities
&lt;br&gt;&lt;br&gt;Comments and suggestions to the Card are welcome (please send to
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25944084&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-comments@...&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://www.w3.org/2007/OWL/refcard&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2007/OWL/refcard&lt;/a&gt;&lt;br&gt;&lt;br&gt;[2] &lt;a href=&quot;http://www.w3.org/2007/OWL/wiki/Quick_Reference_Guide&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2007/OWL/wiki/Quick_Reference_Guide&lt;/a&gt;&lt;br&gt;&lt;br&gt;[3] &lt;a href=&quot;http://www.w3.org/TR/2009/PR-owl2-quick-reference-20090922/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/2009/PR-owl2-quick-reference-20090922/&lt;/a&gt;&lt;br&gt;&lt;br&gt;[4] &lt;a href=&quot;http://www.w3.org/TR/owl2-overview/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/owl2-overview/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Jie Bao
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-OWL-2-Quick-Reference-Card-tp25944084p25944084.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25923923</id>
	<title>OWLED 2009 - Discussion on the Future of OWL</title>
	<published>2009-10-16T04:35:33Z</published>
	<updated>2009-10-16T04:35:33Z</updated>
	<author>
		<name>Rinke Hoekstra-4</name>
	</author>
	<content type="html">(apologies for crossposts)
&lt;br&gt;&lt;br&gt;Dear All,
&lt;br&gt;&lt;br&gt;OWLED is not only about sharing OWL experiences, but also on the &amp;nbsp;
&lt;br&gt;direction in which OWL should be developed. Day 1 of this year's OWLED &amp;nbsp;
&lt;br&gt;will be concluded with a session on the future of OWL [4].
&lt;br&gt;&lt;br&gt;In anticipation of this session, we are soliciting (fresh, good) ideas &amp;nbsp;
&lt;br&gt;and opinions on the next steps for OWL.
&lt;br&gt;&lt;br&gt;To give some ideas. Topics may touch upon a wide variety of OWL- 
&lt;br&gt;related issues, such as much-needed language features (expressiveness, &amp;nbsp;
&lt;br&gt;annotations, time, space), scalability, compatibility, interaction and &amp;nbsp;
&lt;br&gt;interoperability with other languages (SKOS, RIF etc.), syntaxes, &amp;nbsp;
&lt;br&gt;'spreading the word' (or, 'how not to evangelize too much'), tools, &amp;nbsp;
&lt;br&gt;uncharted application domains, strategies to stimulate industry take- 
&lt;br&gt;up, etc. etc. etc.
&lt;br&gt;&lt;br&gt;In particular, we would like to have your input on the last point: now &amp;nbsp;
&lt;br&gt;that OWL 2 is in its final stage of development, how do we go about &amp;nbsp;
&lt;br&gt;creating a mature 'market' for OWL-based technologies. What are the &amp;nbsp;
&lt;br&gt;biggest hurdles ahead?
&lt;br&gt;&lt;br&gt;Please post your ideas as response to this email on &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25923923&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-dev@...&lt;/a&gt; 
&lt;br&gt;, or privately to me.
&lt;br&gt;&lt;br&gt;Plenty of inspiration can be found on the workshop series homepage &amp;nbsp;
&lt;br&gt;[1], OWLED taskforces [2], or by having a look at the papers of this &amp;nbsp;
&lt;br&gt;year's OWLED at [3] or [4].
&lt;br&gt;&lt;br&gt;Looking forward to hearing from you! (and perhaps even meeting you &amp;nbsp;
&lt;br&gt;next week... who knows?)
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;Rinke Hoekstra
&lt;br&gt;Program Chair
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://www.webont.org/owled&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webont.org/owled&lt;/a&gt;&lt;br&gt;[2] &lt;a href=&quot;http://www.webont.org/owled/taskforces/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webont.org/owled/taskforces/&lt;/a&gt;&lt;br&gt;[3] &lt;a href=&quot;http://www.webont.org/owled/2009&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webont.org/owled/2009&lt;/a&gt;&lt;br&gt;[4] &lt;a href=&quot;http://www.webont.org/owled/2009/schedule.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webont.org/owled/2009/schedule.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;Dr Rinke Hoekstra
&lt;br&gt;&lt;br&gt;AI Department &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp; Leibniz Center for Law
&lt;br&gt;Faculty of Sciences &amp;nbsp; | &amp;nbsp; Faculty of Law
&lt;br&gt;Vrije Universiteit &amp;nbsp; &amp;nbsp;| &amp;nbsp; Universiteit van Amsterdam
&lt;br&gt;De Boelelaan 1081a &amp;nbsp; &amp;nbsp;| &amp;nbsp; Kloveniersburgwal 48
&lt;br&gt;1081 HV Amsterdam &amp;nbsp; &amp;nbsp; | &amp;nbsp; 1012 CX &amp;nbsp;Amsterdam
&lt;br&gt;+31-(0)20-5987752 &amp;nbsp; &amp;nbsp; | &amp;nbsp; +31-(0)20-5253499
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25923923&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hoekstra@...&lt;/a&gt; &amp;nbsp; &amp;nbsp;| &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25923923&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hoekstra@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;Homepage: &lt;a href=&quot;http://www.few.vu.nl/~hoekstra&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.few.vu.nl/~hoekstra&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWLED-2009---Discussion-on-the-Future-of-OWL-tp25923923p25923923.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25919950</id>
	<title>Call for Participation: Service Matchmaking and Resource Retrieval  in the Semantic Web</title>
	<published>2009-10-15T21:52:30Z</published>
	<updated>2009-10-15T21:52:30Z</updated>
	<author>
		<name>David Martin-4</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot; http-equiv=&quot;Content-Type&quot;&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
&lt;div class=&quot;moz-text-html&quot; lang=&quot;x-western&quot;&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;div class=&quot;Section1&quot;&gt;
&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;Apologies
for cross-postings&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;--------------------------------------------------------------------------&lt;br&gt;
CALL FOR PARTICIPATION&lt;br&gt;
--------------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;SMR2-2009&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt; &lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;Third
International Workshop on&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;Service
Matchmaking and Resource
Retrieval in the Semantic Web&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;&lt;a href=&quot;http://www-ags.dfki.uni-sb.de/%7Eklusch/smr2-09/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www-ags.dfki.uni-sb.de/~klusch/smr2-09/&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;&amp;nbsp; 8th
International Semantic Web
Conference (ISWC 2009)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;October 25,
2009 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;Washington DC,
USA&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;Aim
&amp;amp; Scope&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;The
primary objective of this workshop is to bring together researchers and
practitioners from industry who tackle semantic service discovery from
various points of view. This year's workshop will especially focus on
building bridges to the software engineering and model-driven
development communities in order to share requirements, technologies,
and experiences that might be helpful in advancing the state of the art
in semantic service matchmaking and resource retrieval.&lt;br&gt;
&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;i&gt;&lt;span style=&quot;font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;Going
to Practice: The Third Semantic Service Selection (S3) Contest&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
In addition, this year's workshop integrates the third edition of the
open international contest on semantic service selection (S3). The S3
contest focuses on the comparative evaluation of classic retrieval
performance of ready to use Semantic Web service matchmakers over given
test collections for semantic service formats such as OWL-S, WSML, and
the standard SA-WSDL.
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 9.5pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;span style=&quot;font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;Scientific
Program&lt;/span&gt;&lt;/b&gt;&lt;br&gt;
&lt;i&gt;&lt;span style=&quot;font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;&lt;o:p&gt;8:45
- 9:00 Opening&lt;br&gt;
&lt;br&gt;
9:00 - 10:00 Session 1: Supporting Service Mashups&lt;br&gt;
&lt;br&gt;
Mashup Development for Everybody: A Planning-Based Approach.&lt;br&gt;
Christian Kubczak, Tiziana Margaria and Bernhard Steffen.&lt;br&gt;
&lt;br&gt;
Policy-Aware Pipes: Support Accountability in Mashup Service of Linked
Data.&lt;br&gt;
Fuming Shih Shih and Lalana Kagal. &lt;br&gt;
&lt;br&gt;
10:00 - 10:30 Invited Talk I&lt;br&gt;
&lt;br&gt;
BioSky: An Approach to Discover the Best Services Efficiently.&lt;br&gt;
Maria-Esther Vidal (Universidad Sim&amp;oacute;n Bol&amp;iacute;var, Venezuela).&lt;br&gt;
&lt;br&gt;
10:30 - 11:00 Coffee break&lt;br&gt;
&lt;br&gt;
11:00 - 12:30 Session 2: Service Discovery&lt;br&gt;
&lt;br&gt;
OWLS-MX3: An Adaptive Hybrid Semantic Service Matchmaker for OWL-S&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;
Matthias Klusch and Patrick Kapahnke.&lt;br&gt;
&lt;br&gt;
Semantic Matchmaking for Job Recruitment: An Ontology-Based Hybrid
Approach.&lt;br&gt;
Maryam Fazel-Zarandi and Mark S. Fox.&lt;br&gt;
&lt;br&gt;
Discovering Pervasive Services Based on their Expected Use.&lt;br&gt;
Raman Kazhamiakin, Volha Kehert, Massimo Paolucci Marco Pistore and
Matthias Wagner.&lt;br&gt;
&lt;br&gt;
12:30 - 14:00 Lunch&lt;br&gt;
&lt;br&gt;
14:00 - 14:45 Session 3: &lt;br&gt;
The 3rd International Semantic Service Selection Contest: Final Results.&lt;br&gt;
Matthias Klusch, Ulrich K&amp;uuml;ster.&lt;br&gt;
&lt;br&gt;
Track 1: OWL-S Service Matchmakers&lt;br&gt;
Track 2: SAWSDL Service Matchmakers&lt;br&gt;
Track 3: Initial Cross-Evaluation&lt;br&gt;
&lt;br&gt;
S3 contest page: &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.dfki.de/~klusch/s3/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/~klusch/s3/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
14:45 - 15:15 Invited Talk II&lt;br&gt;
&lt;br&gt;
The Role of Semantic Web Service Matching &lt;br&gt;
in the Context of Business Process Implementation - an Industry
Perspective. &lt;br&gt;
Rama Akkiraju (IBM Research, USA).&lt;br&gt;
&lt;br&gt;
15:15 - 16:00 Open Discussion:&amp;nbsp; &quot;Semantic Services in Practice: Quo
Vadis?&quot;&lt;br&gt;
Moderation: Massimo Paolucci&lt;br&gt;
&lt;br&gt;
16:00 - 16:30 Coffee break&lt;br&gt;
&lt;br&gt;
16:30 - 18:00 Session 4: Service Representation and Querying&lt;br&gt;
&lt;br&gt;
Supporting the Creation of Semantic RESTful Service Descriptions.&lt;br&gt;
Maria Maleshkova, Carlos Pedrinaci and John Domingue. &lt;br&gt;
&lt;br&gt;
Using Queries for Semantic-based Service Utilization.&lt;br&gt;
Mohammad-Reza Tazari.&lt;br&gt;
&lt;br&gt;
Measuring the Weight of Relations Between Entities.&lt;br&gt;
Mizuki Oka and Yutaka Matsuo.&lt;br&gt;
&lt;br&gt;
18:00 Closing&lt;br&gt;
&lt;br&gt;
&lt;/o:p&gt;&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;Registration&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;&lt;o:p&gt;&lt;br&gt;
&lt;br&gt;
Registration to the SMR2-2009 workshop is through the Web page &lt;br&gt;
of the hosting conference ISWC 2009.&lt;br&gt;
&amp;nbsp;&lt;br&gt;
Please register to the workshop (second page) here: &lt;br&gt;
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://iswc2009.semanticweb.org/wiki/index.php/ISWC_2009_Registration&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://iswc2009.semanticweb.org/wiki/index.php/ISWC_2009_Registration&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
At this page you are given the choice to register &lt;br&gt;
for only one or both events (workshop, conference). &lt;br&gt;
&lt;br&gt;
The virtual participation in the S3 contest in general&lt;br&gt;
(via submission of your entry/entries online) is free of charge. &lt;br&gt;
&lt;br&gt;
&lt;/o:p&gt;&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;EN-GB&quot;&gt;Organization&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;&lt;o:p&gt;&lt;br&gt;
&lt;br&gt;
&lt;i&gt;Program Co-Chairs&lt;/i&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoPlainText&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot; lang=&quot;FR&quot;&gt;&lt;o:p&gt;&amp;nbsp;
Alain L&amp;eacute;ger (France Telecom Research, France)&lt;br&gt;
&amp;nbsp; Tiziana Margaria (U Potsdam, Germany)&lt;br&gt;
&amp;nbsp; David Martin (SRI International, USA)&lt;br&gt;
&amp;nbsp; Massimo Paolucci (NTT DoCoMo Research Europe, Germany)&lt;br&gt;
&lt;br&gt;
&lt;i&gt;Steering Committee&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp; Abraham Bernstein (U Zurich, Switzerland)&lt;br&gt;
&amp;nbsp; Tommaso Di Noia (TU Bari, Italy)&lt;br&gt;
&amp;nbsp; Takahiro Kawamura (Toshiba, Japan)&lt;br&gt;
&amp;nbsp; Matthias Klusch (DFKI, Germany) &lt;br&gt;
&amp;nbsp; Ulrich K&amp;uuml;ster (U Jena, Germany)&lt;br&gt;
&amp;nbsp; Ruben Lara (Telefonica R&amp;amp;D, Spain)&lt;br&gt;
&amp;nbsp; Alain Leger (France Telecom Research, France)&lt;br&gt;
&amp;nbsp; David Martin (SRI International, USA)&lt;br&gt;
&amp;nbsp; Terry Payne (U Southampton, UK)&lt;br&gt;
&amp;nbsp; Axel Polleres (DERI Galway, Ireland)&lt;br&gt;
&amp;nbsp; Massimo Paolucci (NTT DoCoMo Europe, Germany)&lt;br&gt;
&amp;nbsp; Ioan Toma (STI, Austria)&lt;br&gt;
&lt;br&gt;
&lt;i&gt;Program Committee&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp; Sudhir Agarwal (U Karlsruhe, Germany)&lt;br&gt;
&amp;nbsp; Rama Akkiraju (IBM Research, USA)&lt;br&gt;
&amp;nbsp; Eugenio Di Sciascio (Politecnico di Bari, Italy)&lt;br&gt;
&amp;nbsp; Toumani Farouk (Blaise Pascal University, France)&lt;br&gt;
&amp;nbsp; Takahiro Kawamura (Toshiba Research, Japan) &lt;br&gt;
&amp;nbsp; Matthias Klusch (DFKI, Germany)&lt;br&gt;
&amp;nbsp; Ulrich K&amp;uuml;ster (U Jena, Germany) &lt;br&gt;
&amp;nbsp; Freddy Lecue (U Manchester, UK)&lt;br&gt;
&amp;nbsp; Alain L&amp;eacute;ger (France Telecom Research, France)&lt;br&gt;
&amp;nbsp; Tiziana Margaria (U Potsdam, Germany)&lt;br&gt;
&amp;nbsp; David Martin (SRI International, USA)&lt;br&gt;
&amp;nbsp; Massimo Paolucci (NTT DoCoMo Research Europe, Germany)&lt;br&gt;
&amp;nbsp; Axel Polleres (DERI Galway, Ireland) &lt;br&gt;
&amp;nbsp; Dumitru Roman (STI Innsbruck, Austria) &lt;br&gt;
&amp;nbsp; Bernhard Steffen (TU Dortmund, Germany)&lt;br&gt;
&amp;nbsp; Eran Toch (Carnegie-Mellon U, USA)&lt;br&gt;
&amp;nbsp; Ioan Toma (STI Innsbruck, Austria) &lt;br&gt;
&lt;/o:p&gt;&lt;/span&gt;&lt;br&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CFP%3A-Service-Matchmaking-and-Resource-Retrieval-in-the-Semantic-Web-tp24804972p25919950.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25908142</id>
	<title>OWLED 2009 - Papers Online &amp; Call for Participation</title>
	<published>2009-10-15T05:00:15Z</published>
	<updated>2009-10-15T05:00:15Z</updated>
	<author>
		<name>Rinke Hoekstra-6</name>
	</author>
	<content type="html">(apologies for cross-posting)
&lt;br&gt;&lt;br&gt;Dear All,
&lt;br&gt;&lt;br&gt;Papers accepted for this year's OWLED are now accessible online from &amp;nbsp;
&lt;br&gt;the workshop website:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.webont.org/owled/2009&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webont.org/owled/2009&lt;/a&gt;&lt;br&gt;&lt;br&gt;The current draft schedule can be found at:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.webont.org/owled/2009/schedule.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.webont.org/owled/2009/schedule.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Registration is still open via the ISWC 2009 website (no late &amp;nbsp;
&lt;br&gt;registration penalty for OWLED):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://ww2.eventrebels.com/er/Registration/StepRegInfo.jsp?ActivityID=4116&amp;StepNumber=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://ww2.eventrebels.com/er/Registration/StepRegInfo.jsp?ActivityID=4116&amp;StepNumber=1&lt;/a&gt;&lt;br&gt;&lt;br&gt;Hope to see you all next week!
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;Rinke
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;Dr Rinke Hoekstra
&lt;br&gt;&lt;br&gt;AI Department &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp; Leibniz Center for Law
&lt;br&gt;Faculty of Sciences &amp;nbsp; | &amp;nbsp; Faculty of Law
&lt;br&gt;Vrije Universiteit &amp;nbsp; &amp;nbsp;| &amp;nbsp; Universiteit van Amsterdam
&lt;br&gt;De Boelelaan 1081a &amp;nbsp; &amp;nbsp;| &amp;nbsp; Kloveniersburgwal 48
&lt;br&gt;1081 HV Amsterdam &amp;nbsp; &amp;nbsp; | &amp;nbsp; 1012 CX &amp;nbsp;Amsterdam
&lt;br&gt;+31-(0)20-5987752 &amp;nbsp; &amp;nbsp; | &amp;nbsp; +31-(0)20-5253499
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25908142&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hoekstra@...&lt;/a&gt; &amp;nbsp; &amp;nbsp;| &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25908142&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hoekstra@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;Homepage: &lt;a href=&quot;http://www.few.vu.nl/~hoekstra&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.few.vu.nl/~hoekstra&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWLED-2009---Papers-Online---Call-for-Participation-tp25908142p25908142.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25896095</id>
	<title>Semantic Web Job Openings at Bell Labs Ireland</title>
	<published>2009-10-14T10:50:36Z</published>
	<updated>2009-10-14T10:50:36Z</updated>
	<author>
		<name>Peter F. Patel-Schneider</name>
	</author>
	<content type="html">Bell Labs Ireland has vacancies for researchers in Semantic Web and
&lt;br&gt;related disciplines to lead and participate in a new long-term project
&lt;br&gt;involving semantic access to telecommunications data and services. &amp;nbsp;The
&lt;br&gt;project is focussed on the modelling of, integration of and reasoning
&lt;br&gt;about heterogeneous data sources in a scalable and adaptive manner and
&lt;br&gt;will be based in Blanchardstown, near Dublin, Ireland.
&lt;br&gt;&lt;br&gt;Project members will lead, define and conduct groundbreaking research
&lt;br&gt;into semantic access to, and transport of, telecommunications data, as
&lt;br&gt;well as semantic description of, and access to, telecommunications and
&lt;br&gt;hybrid services. &amp;nbsp;Project members will as well lead and perform advanced
&lt;br&gt;development on research outputs. &amp;nbsp;Project members will disseminate
&lt;br&gt;results of the project as appropriate, including publication in
&lt;br&gt;internationally recognized research conferences and journals. &amp;nbsp;Project
&lt;br&gt;members will create and maintain strong collaborative associations other
&lt;br&gt;Bell Labs researchers, with university-based researchers, other leading
&lt;br&gt;research bodies, product business units and government agencies.
&lt;br&gt;&lt;br&gt;The project leader will also be responsible for recruiting and
&lt;br&gt;developing the research team to deliver this research program; leading
&lt;br&gt;the definition of technical foundations for research programs, project
&lt;br&gt;objectives and work plans; and partnering with Alcatel-Lucent business
&lt;br&gt;units to ensure the successful transfer of the research output to the
&lt;br&gt;product portfolio of Alcatel-Lucent.
&lt;br&gt;&lt;br&gt;Project members are expected to have a PhD in Computer Science,
&lt;br&gt;Electrical Engineering, or Mathematics with experience in Semantic Web
&lt;br&gt;technologies or a related area with a strong publication record in high
&lt;br&gt;quality research venues. &amp;nbsp;Experience with RDF, RDFS and OWL and
&lt;br&gt;associated tools is very desirable, as is expertise in web services
&lt;br&gt;architecture and infrastructure especially RESTful. &amp;nbsp;Experience with
&lt;br&gt;advanced development activities is also desirable.
&lt;br&gt;&lt;br&gt;The project leader is expected to have experience in building and
&lt;br&gt;leading team oriented projects, and in conducting independent research.
&lt;br&gt;A proven track record in a research arena or strong industrial
&lt;br&gt;experience is essential.
&lt;br&gt;&lt;br&gt;Applicants should contact Julie Byrne (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25896095&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juliebyrne@...&lt;/a&gt;,
&lt;br&gt;+353-1-8864453), Bell Labs Ireland. &amp;nbsp;Complete applications are to
&lt;br&gt;include a CV and research interests.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;I will be at ISWC and available to talk to interested parties.
&lt;br&gt;&lt;br&gt;Peter F. Patel-Schneider
&lt;br&gt;Bell Labs Research
&lt;br&gt;&lt;br&gt;Note that return receipts from this account are misleading and
&lt;br&gt;incorrect. &amp;nbsp;Any return receipt that you receive does not indicate the
&lt;br&gt;true disposition of the message.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Semantic-Web-Job-Openings-at-Bell-Labs-Ireland-tp25896095p25896095.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25888894</id>
	<title>ISWC Tutorial: Working with Explanations of OWL Entailments</title>
	<published>2009-10-14T03:50:11Z</published>
	<updated>2009-10-14T03:50:11Z</updated>
	<author>
		<name>Thomas Schneider-5</name>
	</author>
	<content type="html">This is a reminder that Matthew Horridge and I are looking forward to &amp;nbsp;
&lt;br&gt;presenting the ISWC explanation tutorial on the 25th [1]. We hope to &amp;nbsp;
&lt;br&gt;see many of you there. In case that, in your work with ontologies, you &amp;nbsp;
&lt;br&gt;have come across entailments that you found hard to understand, we &amp;nbsp;
&lt;br&gt;encourage you to bring them with you.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;&lt;br&gt;Thomas
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://iswc2009.semanticweb.org/wiki/index.php/ISWC_2009_Tutorials/Working_with_Explanations_of_OWL_Entailments&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://iswc2009.semanticweb.org/wiki/index.php/ISWC_2009_Tutorials/Working_with_Explanations_of_OWL_Entailments&lt;/a&gt;&lt;br&gt;&lt;br&gt;Abstract: In complex ontologies, users are often baffled by the &amp;nbsp;
&lt;br&gt;behavior of the reasoner. Even if we restrict ourselves to &amp;quot;buggy&amp;quot; &amp;nbsp;
&lt;br&gt;entailments (e.g., unsatisfiable classes) it is often unclear why &amp;nbsp;
&lt;br&gt;those entailments hold. The reasons as to why an entailment arises in &amp;nbsp;
&lt;br&gt;an ontology can range from fairly simple localized glitches through to &amp;nbsp;
&lt;br&gt;highly non-obvious problems scattered throughout the ontology. In the &amp;nbsp;
&lt;br&gt;case of very large ontologies, manually pinpointing the reasons for an &amp;nbsp;
&lt;br&gt;entailment can be a frustrating task, especially as it is typically &amp;nbsp;
&lt;br&gt;only a very small percentage of the ontology that is responsible for &amp;nbsp;
&lt;br&gt;the entailment. Tool support in the form of an explanation workbench &amp;nbsp;
&lt;br&gt;plug-in has recently been made available for Protege 4. This plug-in &amp;nbsp;
&lt;br&gt;makes it possible to obtain and browse explanations for entailments. &amp;nbsp;
&lt;br&gt;Using the explanation workbench plug-in, the tutorial will introduce &amp;nbsp;
&lt;br&gt;explanation of entailments in OWL. The tutorial will cover everything &amp;nbsp;
&lt;br&gt;from now standard justification finding services to cutting edge &amp;nbsp;
&lt;br&gt;experimental support for model exploration. Participants will be &amp;nbsp;
&lt;br&gt;exposed to a wide range of interesting and challenging examples &amp;nbsp;
&lt;br&gt;collected over the course of several years in doing research on &amp;nbsp;
&lt;br&gt;explanation.
&lt;br&gt;&lt;br&gt;+----------------------------------------------------------------------+
&lt;br&gt;| &amp;nbsp;Dr Thomas Schneider &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;schneider (at) cs.man.ac.uk &amp;nbsp;|
&lt;br&gt;| &amp;nbsp;School of Computer Science &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.cs.man.ac.uk/~schneidt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.man.ac.uk/~schneidt&lt;/a&gt;&amp;nbsp; |
&lt;br&gt;| &amp;nbsp;Kilburn Building, Room 2.114 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; phone +44 161 2756136 &amp;nbsp;|
&lt;br&gt;| &amp;nbsp;University of Manchester &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;| &amp;nbsp;Oxford Road &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _///_ &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;| &amp;nbsp;Manchester M13 9PL &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(o~o) &amp;nbsp; &amp;nbsp; &amp;nbsp; |
&lt;br&gt;+-----------------------------------------------------oOOO--(_)--OOOo--+
&lt;br&gt;&lt;br&gt;Ventnor (n.)
&lt;br&gt;&amp;nbsp; &amp;nbsp;One who, having been visited as a child by a mysterious gypsy lady,
&lt;br&gt;&amp;nbsp; &amp;nbsp;is gifted with the strange power of being able to operate the air-
&lt;br&gt;&amp;nbsp; &amp;nbsp;nozzles above aeroplane seats.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Douglas Adams, John Lloyd: The Deeper Meaning of Liff
&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;tt&gt;[Thomas Schneider.vcf]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;BEGIN:VCARD
&lt;br&gt;VERSION:3.0
&lt;br&gt;N:Schneider;Thomas;;;
&lt;br&gt;FN:Thomas Schneider
&lt;br&gt;EMAIL;type=INTERNET;type=WORK;type=pref:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25888894&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;schneidt@...&lt;/a&gt;
&lt;br&gt;EMAIL;type=INTERNET;type=WORK:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25888894&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;schneider@...&lt;/a&gt;
&lt;br&gt;EMAIL;type=INTERNET;type=HOME:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25888894&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;th42sch@...&lt;/a&gt;
&lt;br&gt;TEL;type=WORK;type=pref:+44 161 2756136
&lt;br&gt;item1.TEL:+44 7964 924587
&lt;br&gt;item1.X-ABLabel:mobile (UK)
&lt;br&gt;item2.TEL:+44 161 2269925
&lt;br&gt;item2.X-ABLabel:home (UK)
&lt;br&gt;item3.TEL:+49 160 3318037
&lt;br&gt;item3.X-ABLabel:mobile (DE)
&lt;br&gt;item4.TEL:+49 621 86248498
&lt;br&gt;item4.X-ABLabel:home (DE)
&lt;br&gt;item5.ADR;type=WORK;type=pref:;;School of Computer Science\nRoom 2.114 Kilburn Building\nUniversity of Manchester\nOxford Road;Manchester;;M13 9PL;United Kingdom
&lt;br&gt;item5.X-ABADR:gb
&lt;br&gt;item6.ADR;type=HOME:;;Flat 7 Alexandra Park House\n28 Alexandra Road South;Manchester;;M16 8HU;UK
&lt;br&gt;item6.X-ABLabel:home (UK)
&lt;br&gt;item6.X-ABADR:gb
&lt;br&gt;item7.ADR;type=HOME:;;WeylstraÃe 9;Mannheim;;68167;Germany
&lt;br&gt;item7.X-ABADR:de
&lt;br&gt;item8.URL;type=pref:http\://www.cs.manchester.ac.uk/~schneidt/
&lt;br&gt;item8.X-ABLabel:_$!&amp;lt;HomePage&amp;gt;!$_
&lt;br&gt;item9.URL:skype\:amurleopard42
&lt;br&gt;item9.X-ABLabel:Skype
&lt;br&gt;X-JABBER;type=WORK;type=pref:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25888894&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;th42sch@...&lt;/a&gt;
&lt;br&gt;PHOTO;BASE64:
&lt;br&gt;&amp;nbsp; /9j/4AAQSkZJRgABAQAAAQABAAD/4hEsSUNDX1BST0ZJTEUAAQEAABEcYXBwbAIAAABtbnRyUkdC
&lt;br&gt;&amp;nbsp; IFhZWiAH2QAIAAcAFgAbADphY3NwQVBQTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAA
&lt;br&gt;&amp;nbsp; AADTLWFwcGwKLieT/qge0s34S/pgcrvlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5y
&lt;br&gt;&amp;nbsp; WFlaAAABLAAAABRnWFlaAAABQAAAABRiWFlaAAABVAAAABR3dHB0AAABaAAAABRjaGFkAAABfAAA
&lt;br&gt;&amp;nbsp; ACxyVFJDAAABqAAAAA5nVFJDAAABuAAAAA5iVFJDAAAByAAAAA52Y2d0AAAB2AAABhJuZGluAAAH
&lt;br&gt;&amp;nbsp; 7AAABj5kZXNjAAAOLAAAAGRkc2NtAAAOkAAAAj5tbW9kAAAQ0AAAAChjcHJ0AAAQ+AAAACRYWVog
&lt;br&gt;&amp;nbsp; AAAAAAAAYOgAADgUAAAGUlhZWiAAAAAAAABwNgAAsgIAACEbWFlaIAAAAAAAACW3AAAWBAAAq7hY
&lt;br&gt;&amp;nbsp; WVogAAAAAAAA81IAAQAAAAEWz3NmMzIAAAAAAAEMQgAABd7///MmAAAHkgAA/ZH///ui///9owAA
&lt;br&gt;&amp;nbsp; A9wAAMBsY3VydgAAAAAAAAABAc0AAGN1cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAdmNn
&lt;br&gt;&amp;nbsp; dAAAAAAAAAAAAAMBAAACAAAAIQByAOwBggI7AyUEUgWrBzcI9wr4DRMPNBFmE4oVmReLGWAbHxyo
&lt;br&gt;&amp;nbsp; Hg8fYyC1IgsjaCTJJicniyjwKlsrvy0pLo0v8zFUMq40DDVfNq84ADlHOoc7vzz5Pi8/a0CkQd5D
&lt;br&gt;&amp;nbsp; F0RMRYdGv0f2SSxKX0uRTMJN8k8gUE5RdFKeU9BVH1Z2V8dZGVprW7Zc/l5IX4xgz2ISY1RklmXb
&lt;br&gt;&amp;nbsp; Zx1oYWmqavNsPG2Ibsxv8XEFchZzJXQ3dUl2W3dseHx5j3qfe7F8wn3Vfuh/+oEPgiWDOoROhV2G
&lt;br&gt;&amp;nbsp; Voc5iBiI94nYiruLnIx+jWCOQo8ij/+Q2pG1kpGTZJQ4lQqV2Zaol3SYUJlDmjybNZwrnR2eC571
&lt;br&gt;&amp;nbsp; n9ygvqGdonejTqQipPOlv6aLp1WoHKjiqaqqeqtrrGWtX65Yr02wQLEvshyzBrPttNO1traYt3a4
&lt;br&gt;&amp;nbsp; VLkyug6667vJvKW9gL5bvzPACcDhwbTCicNbxC3FAMXTxqPHdMhFyRbJ5sq1y4fMV80ozfzOz8+P
&lt;br&gt;&amp;nbsp; 0EjQ/NGx0mzTKdPn1KjVa9Yw1vfXvtiG2U/aFtrd26Tcat0u3fHesd944EXhF+Hq4rbjguRM5RHl
&lt;br&gt;&amp;nbsp; 0eaP50jn/eir6VTp++qa6zfr0uxm7Prtiu4k7s/vhvBA8PnxtPJw8y7z7fSw9Xf2Q/cT9+j4xvmq
&lt;br&gt;&amp;nbsp; +pL7gvx5/XX+df9Q//8AAAA4AMMBbgI2AyEENwWEBuwIcwoeC9cNqg95EUwTGRTWFoMYJRmuGyUc
&lt;br&gt;&amp;nbsp; cB2wHvEgNCF+IswkGCVpJrooEilkKrYsCi1cLqgv8DE9MnwzvDT7NjA3Wzh1OY46pTu/PNc97D8B
&lt;br&gt;&amp;nbsp; QBRBK0JBQ1REaEV6RoxHnkixScVK1kvnTPpOE09IUIZRvVL0VCxVYFaOV79Y7VoZW0VccV2bXshf
&lt;br&gt;&amp;nbsp; 82EgYlJjgWSxZeRnEGgjaSZqKmssbC9tNW46bz9wRnFOcldzYnRrdXl2iXeXeKl5vnrSe+Z8833y
&lt;br&gt;&amp;nbsp; fuF/yYCygZyCi4N1hGKFToY5hyKIB4jqicyKrouIjGKNOI4LjtuPqpB+kXOSZJNVlEWVMZYalwCX
&lt;br&gt;&amp;nbsp; 4pjCmZ6ad5tNnCGc8p3Ano6fWaAioOuhtqKFo3ikbqVmplynUKhBqS+qG6sEq+ys0623rpuve7Bd
&lt;br&gt;&amp;nbsp; sT2yHbL+s9+0wbWgtoS3ZrhGuSa6Bbrku8C8nL15vla/MsAOwOvBycKmw4TEY8VDxiTHB8fryMnJ
&lt;br&gt;&amp;nbsp; pcqAy1vMOc0YzffO2c+40JvRfdJg00LUI9UE1eTWxdej2IHZXto52xncBNzw3eDex9+w4JbheeJa
&lt;br&gt;&amp;nbsp; 4zvkGuT25dHmqueD6FvpM+oM6uXrveyX7XPuVe9A8DHxLvIy8zj0RvVX9mb3c/h6+Xn6bftT/Cv8
&lt;br&gt;&amp;nbsp; 9f2l/kb+2f9E/6H//wAAACQAfAECAZUCSgMgBBsFLAZYB5YI4Qo5C5MM7g5DD48Q0RIMEzIURRVA
&lt;br&gt;&amp;nbsp; FjAXIBgSGQkaBBr7G/kc9R31HvMf8SDxIe4i6CPfJNUlyCa4J6cokSl3KlcrOCwSLO4txi6cL3Aw
&lt;br&gt;&amp;nbsp; QTERMd0ypjNvNDU09jW4Nnk3OTf3OLQ5cTowOwA70jylPXg+TT8iP/dAzUGkQnxDVUQxRQxF60bK
&lt;br&gt;&amp;nbsp; R6tIjklxSlRLOUwdTPxN2E6zT49QalFIUiRTAVPeVLxVnFZ7V1tYQFklWgpa8lvdXMhdsl6aX35g
&lt;br&gt;&amp;nbsp; V2EvYgpi6GPIZKpljmZ0Z1xoRGkqahBq9mvcbMBtom6Eb2BwPHEXcfxy7XPjdNZ1xnazd5p4e3la
&lt;br&gt;&amp;nbsp; ejF7BXvVfKF9an4sfux/q4BpgSKB24KVg0+EDITLhYuGTIcMh82Ij4lRihSK2YugjGqNNY4Bjs+P
&lt;br&gt;&amp;nbsp; n5BxkUWSGpLwk8GUhJU2lemWnpdTmAuYxpmEmkebDZvWnKGdcp5Gnxuf86DOoaiihaNnpEWlG6Xs
&lt;br&gt;&amp;nbsp; prqni6hkqT+qHar+q+Ksy621rqCvjLB3sWGySrMytBm0/bXetru3oLivub+61LvivPK+AL8KwBLB
&lt;br&gt;&amp;nbsp; G8IgwyPEI8Uhxh7HGcgTyQ3KBcr7y/LM8M44z5PQ69I404TU1tYv143Y9Np03Ajdu9+U4ZPjv+Y/
&lt;br&gt;&amp;nbsp; 6RfsZvBH9TP7hP//AABuZGluAAAAAAAABjYAAJhlAABZhQAAUxgAAIvaAAAnmgAAFWAAAFANAABU
&lt;br&gt;&amp;nbsp; OQACaPUAAiuFAAFcKAADAQAAAgAAABgAMgBKAF8AdACIAJwArgDCANQA5gD5AQsBHgEyAUYBWgFv
&lt;br&gt;&amp;nbsp; AYUBnAG0Ac0B6AIEAiICQgJjAokCsQLfAw8DQQN0A6gD3AQRBEcEfwS3BPAFKgVkBaEF3gYcBlwG
&lt;br&gt;&amp;nbsp; nQbfByMHagexB/kIRQiTCOEJMQmFCdsKNQqRCu0LTQurDAwMbgzSDTcNnw4GDm8O2g9HD7UQJhCY
&lt;br&gt;&amp;nbsp; EQ0RghH6EnQS7xNvE+4UcBTpFVsVzhZFFrwXNReuGCsYqhkrGawaMRq3Gz4bxxxRHN0daB31HoQf
&lt;br&gt;&amp;nbsp; Ex+hIDAgwSFSIeMidSMWI8YkfSU1JfAmqidmKCQo5CmmKmgrLSvyLLstgy5MLxcv5DCwMX0yTTMf
&lt;br&gt;&amp;nbsp; M/c05jXwNvw4CjkVOiY7NzxKPWA+fD+eQMVB60MhRFZFlkbaSCVJVUpjS3pMkE2uTtJP/1EwUmxT
&lt;br&gt;&amp;nbsp; sFT9VlFXr1kZWodb/F18Xvpga2GeYtVkDWVKZo1n1mkmanxr1205bqBwC3GAcvV0cHXtd2p47Hpy
&lt;br&gt;&amp;nbsp; e/t9j38hgL+CWoQAhaaHToj8iq2MX44Vj9GRh5NGlP+WupikmrKcwJ69oLuisKSjppCofqprrF2u
&lt;br&gt;&amp;nbsp; U7BMsky0VLZouGa6Urw7vjnAN8JIxGvGmsjly03Nz9B40zfWG9kW25zd8+BP4qjk/edQ6Zbrzu35
&lt;br&gt;&amp;nbsp; 8BfyHvQZ9gr36vm/+5D9Wf//AAAADgAhADUASQBcAG8AgwCXAKsAvwDUAOkA/gEUASsBQwFbAXUB
&lt;br&gt;&amp;nbsp; jwGrAcgB5wIHAikCTQJ0Ap0CzAL+AzMDaAOfA9YEDgRHBIIEvQT6BTcFdQW1BfcGOQZ9BsIHCgdT
&lt;br&gt;&amp;nbsp; B58H6gg6CIwI3gkzCYwJ6ApMCrILGwuFC/AMXgzPDUENtg4rDqIPHA+XEBUQlREWEZkSHRKjEywT
&lt;br&gt;&amp;nbsp; txRBFMoVRhXCFkIWxBdHF8sYUhjdGWgZ9RqFGxYbqRw9HNQdah4CHpwfNh/PIGshCCGlIkIi6COh
&lt;br&gt;&amp;nbsp; JGIlIyXoJqwncSg4KQEpyiqUK18sKiz4LcQukC9gMC4w+zHKMpszbjRMNT02PTc+OEE5QDpGO0s8
&lt;br&gt;&amp;nbsp; Uz1ePm8/h0CjQcFC7EQZRVFGj0fWSRZKKUtITGZNik60T+ZRHlJdU6RU81ZIV6VZDVp4W+ldZF7d
&lt;br&gt;&amp;nbsp; YFBhhmLBY/xlO2aBZ8tpHGpza85tLm6Ub/txbHLcdFF1x3c+eLZ6NHusfSx+roA1gb2DToTghnOI
&lt;br&gt;&amp;nbsp; CYmjizyM145zkBKRrZNOlOeWgpgpmdebip08numgmqJIo/ylqqdcqQ+qxqyBrj+v/rHEs4y1XLcu
&lt;br&gt;&amp;nbsp; uOK6mLxHvgq/yMGRw2TFOccTyPfK4MzQzsHQuNKs1KTWodiZ2ozca9493/3hreNc5QPmoehC6ejr
&lt;br&gt;&amp;nbsp; lu1Q7xvxA/MQ9VH37vsM//8AAAAWADAASgBjAH0AlwCxAM0A6QEGASQBRAFlAYgBrQHVAf8CLAJd
&lt;br&gt;&amp;nbsp; ApMC0QMVA1wDpQPvBDoEiQTYBSoFfQXTBisGhQbiB0MHpwgOCHkI5wlZCdAKTgrOC1UL3QxsDP8N
&lt;br&gt;&amp;nbsp; mA40DtgPgBAvEOQRnRJcEx8T6BSzFW4WKxbqF6sYbhk0GfsaxBuOHFgdJR3xHr8fjSBcIS8iASLX
&lt;br&gt;&amp;nbsp; I7UkmCV+JmYnTig6KSgqFysHK/ks7S3eLtEvxjC4MasyoDOZNJk1qTa9N8843jnuOv08DD0ZPio/
&lt;br&gt;&amp;nbsp; PkBWQW1CikOrRNBF/kcuSGRJhEqaS7RM0035TyhQYlGiUvFUSVWtVxlYl1odW6hdQ17cYHliDmOm
&lt;br&gt;&amp;nbsp; ZTxm1mhxag5rqW1Cbthwa3H/c5B1HnaseDd5xnt/fWd/R4EpgwKE1IaciF2KGIvJjXePI5DHknCU
&lt;br&gt;&amp;nbsp; E5Wxl1qZHJronLGeaKAeoc2je6UfpsKoZaoHq6+tWa8HsLqyc7Q0tgK3wbk1urK8Jb2ovyXAqMIx
&lt;br&gt;&amp;nbsp; w8HFT8biyH3KHMvCzWnPF9DK0nzUM9Xx163Zb9rI3AvdSd6N393hMOKB483lFuZc557o2+oJ6y3s
&lt;br&gt;&amp;nbsp; SO1S7ljvTfA88R/x/PLM85n0UPUH9a72Tvbu93z4B/iT+RP5ifoA+nf63Ps5+5f79PxS/J785f0t
&lt;br&gt;&amp;nbsp; /XT9vP4E/lj+wv8r/5X//wAAZGVzYwAAAAAAAAAKQ29sb3IgTENEAAAAAAAAAAAAAAAAAAAAAAAA
&lt;br&gt;&amp;nbsp; AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
&lt;br&gt;&amp;nbsp; AAAAAG1sdWMAAAAAAAAAEgAAAAxuYk5PAAAAEgAAAOhwdFBUAAAAFgAAAPpzdlNFAAAAEAAAARBm
&lt;br&gt;&amp;nbsp; aUZJAAAAEAAAASBkYURLAAAAHAAAATB6aENOAAAADAAAAUxmckZSAAAAEgAAAVhqYUpQAAAADgAA
&lt;br&gt;&amp;nbsp; AWplblVTAAAAEgAAAXhwbFBMAAAAEgAAAYpwdEJSAAAAGAAAAZxlc0VTAAAAEgAAAbR6aFRXAAAA
&lt;br&gt;&amp;nbsp; DgAAAcZydVJVAAAAJAAAAdRrb0tSAAAADAAAAfhkZURFAAAAEAAAAgRubE5MAAAAFgAAAhRpdElU
&lt;br&gt;&amp;nbsp; AAAAFAAAAioARgBhAHIAZwBlAC0ATABDAEQATABDAEQAIABhACAAQwBvAHIAZQBzAEYA5AByAGcA
&lt;br&gt;&amp;nbsp; LQBMAEMARABWAOQAcgBpAC0ATABDAEQATABDAEQALQBmAGEAcgB2AGUAcwBrAOYAcgBtX2mCcgAg
&lt;br&gt;&amp;nbsp; AEwAQwBEAMkAYwByAGEAbgAgAEwAQwBEMKsw6TD8ACAATABDAEQAQwBvAGwAbwByACAATABDAEQA
&lt;br&gt;&amp;nbsp; SwBvAGwAbwByACAATABDAEQATABDAEQAIABDAG8AbABvAHIAaQBkAG8ATABDAEQAIABjAG8AbABv
&lt;br&gt;&amp;nbsp; AHJfaYJybbJmdphveTpWaAQmBDIENQRCBD0EPgQ5ACAEFgQaAC0ENAQ4BEEEPwQ7BDUEOc7st+wA
&lt;br&gt;&amp;nbsp; IABMAEMARABGAGEAcgBiAC0ATABDAEQASwBsAGUAdQByAGUAbgAtAEwAQwBEAEwAQwBEACAAYwBv
&lt;br&gt;&amp;nbsp; AGwAbwByAGkAAG1tb2QAAAAAAAAGEAAAnGYAAAAAwUS1gAAAAAAAAAAAAAAAAAAAAAB0ZXh0AAAA
&lt;br&gt;&amp;nbsp; AENvcHlyaWdodCBBcHBsZSwgSW5jLiwgMjAwOQD/4QBARXhpZgAATU0AKgAAAAgAAYdpAAQAAAAB
&lt;br&gt;&amp;nbsp; AAAAGgAAAAAAAqACAAQAAAABAAAA2qADAAQAAAABAAAA2gAAAAD/2wBDAAIBAQIBAQICAQICAgIC
&lt;br&gt;&amp;nbsp; AwUDAwMDAwYEBAMFBwYHBwcGBgYHCAsJBwgKCAYGCQ0JCgsLDAwMBwkNDg0MDgsMDAv/2wBDAQIC
&lt;br&gt;&amp;nbsp; AgMCAwUDAwULCAYICwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsL
&lt;br&gt;&amp;nbsp; CwsLCwv/wAARCADaANoDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL
&lt;br&gt;&amp;nbsp; /8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2Jy
&lt;br&gt;&amp;nbsp; ggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWG
&lt;br&gt;&amp;nbsp; h4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo
&lt;br&gt;&amp;nbsp; 6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQD
&lt;br&gt;&amp;nbsp; BAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRom
&lt;br&gt;&amp;nbsp; JygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaX
&lt;br&gt;&amp;nbsp; mJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6
&lt;br&gt;&amp;nbsp; /9oADAMBAAIRAxEAPwD5o16HWotE8Taf4WlWzOq+akwWISRCOXkxKSpMYYBT8ucHPTNch8T4o/gR
&lt;br&gt;&amp;nbsp; J4RvPh5eC91M6e1rPbvOis91Iu12AA4IJGAwYZ5616dDCkMQOgecb0rJmVJWlN0SANwUncuACBiu
&lt;br&gt;&amp;nbsp; Q8W+AL3xHphTUXBa0lW7WZ7VpoV7hH3cBuTyOma+Vo4905qMlp/SJtJKyPEvF/j3Xvjax074weLd
&lt;br&gt;&amp;nbsp; dvbyF91vYiGL7LGxX5WYJ6ZYsTnrW9Z+FvEep6ZYQNaGe78hFWARLNbX9rGNscsW4hVVAHJ+9xng
&lt;br&gt;&amp;nbsp; kjPT/E34I634j+LWk3PhNItJs9Q0x5nnig2W9p5CtlXYLtUN6tx70vhL4ij4VaPYn4lTfadjNZCe
&lt;br&gt;&amp;nbsp; MST7Q65AALY2lScbDjOD2pYzGzSjOi7p9P8AL/g3JVPmk1J/1oc/8H/CXh7xF4wt9U8MSwWl5brL
&lt;br&gt;&amp;nbsp; DPp94wMcshJzgAqAvXAAOMfdr2PVPBmpWlgsGm6SY/JbzTLE7TyFSoKHyycZDDGMjPf1rwm08GeJ
&lt;br&gt;&amp;nbsp; tF/aMg1vwl4e1P7K16b2Oa3jbygroCX3YIUbTznkEkV69D8YIVjuZ5pIWudLm8rU5GmEhkRclmBH
&lt;br&gt;&amp;nbsp; LHj7pxzU4v2k3GUZc2l/TujSFOK3epxHjT4UQeEvCVlP8RtOi1jVUcwwwnLm4QnDSRshDo65J3MW
&lt;br&gt;&amp;nbsp; GV6kAV4z4Z+GZ1jxfHDGJ7WCO78u7lV1IhG9hkhv4sD9M17R4s+LkHjvU5n1a61i6aKDyhtRYfsa
&lt;br&gt;&amp;nbsp; sf3KxqFPmFSQx+U5V+cYrj77UY7f4cX9g1uq6vHchZr65l8vzZmfduMeRkDgDeuOvQDFaUsXUp0X
&lt;br&gt;&amp;nbsp; BLVtfK5Kg4yb6GB4u8J2XgLXLm3je11K4mkMSLDE+I7ZwWDbxjzC3y4AAB5Fdp8M/jzH4T8QWGja
&lt;br&gt;&amp;nbsp; P4ZvNPwTvYSne4I+bYGG7YTg7GJxitT4Q/APxF4cvYdd8fG21AG3kuBJFcB985JKFmTGCqgew6dq
&lt;br&gt;&amp;nbsp; 9P0j4X2OrfZtWsb2fSp7tEmvTc20c6xnCr+6yD8pIB9zzXmV8XSqSdCq+ey1d9Lm1JSclY2vhpZz
&lt;br&gt;&amp;nbsp; eIvF9vrk94ht4Wa3FoEKzO6qQCX3bdqZUnA5PFdL45MWjWzG0cxF2VfNhhZI0cjcHkBY7RnOTzng
&lt;br&gt;&amp;nbsp; dq1dA8HeJz4fhhvYLSzeWdiiWtmZ4JUJOeAARzg5BHStzQ/hdfwxTQajdWmoiWTdtKAbmOAFOcna
&lt;br&gt;&amp;nbsp; uBgfrXhV8FUnUTVnFHsQwFWaVlo9TzDw/od7qFiLi2uldLtFM1z9oKwlxglcLnY2epPtXm3xU0hL
&lt;br&gt;&amp;nbsp; jw9PPZWQspYrorcXXl7JUjOQcsx+7kDkdSAa+mNE8B3Ph9dRaeWBrWR1W2gE4WEZHzFgmCRx0HXP
&lt;br&gt;&amp;nbsp; tUeofCW/1axuINI/sONpWDgyhkZCT0y2fM4ycdOa6sJg3RqOa2f5BLK6k1onc+LLTS0s7d3mhtcQ
&lt;br&gt;&amp;nbsp; EmKScgsxP3CAeTkc5Gat6F4y1TWBDDqWr6jbR2fzCGSYrDCFOCrMPmIOR8voelfXNh+yxqrvEviO
&lt;br&gt;&amp;nbsp; Lw7G6qIUaK13sEAO3arHKvzkscjrjHFcTqX7I+teEYpby+t/NwWWC7gizMmGIPzhMIWUqcsSfkr1
&lt;br&gt;&amp;nbsp; ZYWlNtzim+55lXKK8fhR83/Ei1a/0K7tNUi8xLlt1u1uTi5kXBGSozt5GcgVkaN4tEmppPFYQGfS
&lt;br&gt;&amp;nbsp; bKOKMzRfu4+cYUk/N9cc19NeOPAVxdeFG/4QN2+1QWojVYrFg0kgYhioXjLBGVj17mvEfB/wq16z
&lt;br&gt;&amp;nbsp; 0zU5/H2mW1xqFtP5EewI4gRl3eZIOBzlsHBP866I0kqTVrW2sYzwMqWkm2ZWgazpfiH4l2C+Nit1
&lt;br&gt;&amp;nbsp; YWGnvJdQ2RJELSOdq88MRsz2GT3r0zxN4l1e38QeGb477a6gVrK1t4UiIBIX/WfNjAyNwznIwK89
&lt;br&gt;&amp;nbsp; 02yvNfutUgimjhtYrlIFnhQMkhUZIB3AcHI/Liq2tNPYupuJbua7tMzRGRMIBnOUPYnuR3FeJiIp
&lt;br&gt;&amp;nbsp; zSlG6taz/NGTvTglHZHo1lrj6Jrccgvw2y4P9r21muFnz97DbjhOPu55yaw7/wCItzbhv7EeSNE3
&lt;br&gt;&amp;nbsp; KhjGAE2nIjB5U/8A18VkWPj6O4vyviC2s7g6iijzZF2K7Kdo3Y4HPBPrya6rwlZaVouuWdvrOlT2
&lt;br&gt;&amp;nbsp; 2rXG9haKgEEYQEybi5IDFQCFznH1rjlTqYZ3qK99ibyrW1tqcLqlj9jtWmN1qHmGUESMwk2g4Gdp
&lt;br&gt;&amp;nbsp; 5IHsRW/4K8X3t3q95bWMWjadd3G2S7uBbs7SHoJfLbgZ74BJ6+9aOva1pNld3cs1jef2fZyqEcwb
&lt;br&gt;&amp;nbsp; DMuQxCA9QTgZFa8up6Vp+lRppPlrqFzF9oj07a/71XZtsYfGFK+nPUin9adanyShds1imlZlTxxc
&lt;br&gt;&amp;nbsp; XLWcNyYY4XsTuurmJnSC4V1Iwq5PI4/yK8x1++tPBbxy6as6edP9oikVxvL8E7Sp/H+lek/D34ga
&lt;br&gt;&amp;nbsp; bHZrY6nFdLaqVt7tbpz+4bfjIGPukbRgjqPetHx/4SsR4vtr/Q7Sa5iRD5gktv3aRHO2XarYYfNj
&lt;br&gt;&amp;nbsp; 5QDxz1rfLZ/U6ro11v2KirO5wOvfFObU5xbeO9KWxmm3Ml09uxJUgAybhnKE4yV71CNS0VRi3+xi
&lt;br&gt;&amp;nbsp; McKEkuNoHbGU6VZ021srl5P+EkuXuYorqVfIWDEJAK4KOeUTkZXk8VpHR9KJ+e4mz3xKMfhxXtQh
&lt;br&gt;&amp;nbsp; SpfDpfsdVGE6i0R6Jpt3/Z1+b3TAqIxSGJEb7xK5I4zjqeQCTxWnfajc2FjJa+Jft9vJP8+ISFkB
&lt;br&gt;&amp;nbsp; JOAAV4Az1z0H1rA8P6pLoEMA0y1nt4/MBUPGCyngE7m9Ce+eoFO8caS1xa2s/ii/l3R4NvhPPDvn
&lt;br&gt;&amp;nbsp; BQMCMN82cHnnpWMYc3vR3Zx36M7Pwr4ji09bjR2R3e0gUXcfzSG4THEqOMdzyO+Kp6/BaWSGXUoL
&lt;br&gt;&amp;nbsp; fPneVbxyL5kjx9AxQFtnA3YzwCfSuR0fTLzw3MkF2s1xJMrQytM7wy2/QlmdSCcZG0N8vY1ordRy
&lt;br&gt;&amp;nbsp; 6ctja3n2IWsj4u5WWXeMZBKbfvEgjI45puMnZRdn/VzTnVti74s1NPH2iz6fc3z2Wn2sQl+yRySp
&lt;br&gt;&amp;nbsp; buXbjaFIKckZx268V54TFa+Nra00WBorOyjR7tnHzOg3gg7hzHno2RjA65rs73VYoruySdp/tcym
&lt;br&gt;&amp;nbsp; VQkStvQNyzBiBkjHA6A1L/wj8OtK7ajFc2m0JKQhLAhWHDoOMcHgnOfaqpL2Utuj6+QnJSabON0n
&lt;br&gt;&amp;nbsp; wpJ4XF1ceDrXT2gupzPOJ4TL5UnJzGcFVY4Hc9O2a6WDUtI8ceKIG8Z6DNNcRvJLBOqMsbMFOV2n
&lt;br&gt;&amp;nbsp; gjOOGU896z9CsLqzudSl0yZJo5W+1eX/AKu4lUZBUBxtUnoAxxxwTiuv+CngLUY/FLX+sSR6ckyb
&lt;br&gt;&amp;nbsp; igyXhCty/nsM9Nv3SAPmzniieErQTqynZaW13OnDReIqRgo77kl18MpTpr3fhCaPTYXmMw05SzRt
&lt;br&gt;&amp;nbsp; 0AYDopXjK+5969T+F/wxuPDehwXSrdJeqxMLTHmQlRuO0gYAHAA471NJ4w0/wFpckGhhbolvNmvJ
&lt;br&gt;&amp;nbsp; yDFbKQcgvK27J5xySTiuM8T6nqnizUo59R1WSa3tkZ3kTdHCvQJjB+b7yhgCD7Vzww8q+yS8z6Kh
&lt;br&gt;&amp;nbsp; ltLC+9W1fRHpN34oNxfpbXmn2j24cb/Ok3JCDncTGoJHOO3IyarzfGS48J2Vybm408xxRkxRW7bG
&lt;br&gt;&amp;nbsp; jjI2nlwO4/h6CvL/AAtYabDe/bby4t7Ndohkkt7h1iusZ6o64Jz71m+N/wBpbRfAgeK1smvpAQDK
&lt;br&gt;&amp;nbsp; jiQqOBxvPB6+nWu32NKjblV2j0lNtWvyo9Ms/iWmuRyNqZtHOC0bPIs0RBJAxkjaPbGRWjL4svNc
&lt;br&gt;&amp;nbsp; 0+3ggjtY40+XfbMpCHkDjJYDGea+abz9pG28e6U2Ly3mgtiqxyROYXhBOGV0B3AjjnODWLc/FyDQ
&lt;br&gt;&amp;nbsp; tRV7TUZBJGxWJw+fLYqRtP8AfRs8Z74/DT606ctrGc4qXc+tYvitfxYstUun3yEHzNwUsANuAT0/
&lt;br&gt;&amp;nbsp; hOc9hXXH4kmWztrP7VMj3K7mSRx5bDJDRsOx4P1zXyZp3xeh8X6D5k8qwSKuGjznkdDj8Tz6+ta3
&lt;br&gt;&amp;nbsp; hz4ppc+HSFnSVreItav5nDkMQy+zDgY/xro9tGokzBwabVj6I1G5stYnhLWVlJDpyNuuI3CMnUhT
&lt;br&gt;&amp;nbsp; txnggD8a5W48KWfirT1+y2v2GzhbzRJEzbTEMAHrzxwMeh7VwegfFG1n0q8uL67Cx3KrcDYcE/L8
&lt;br&gt;&amp;nbsp; xJ7EMCO/Na1x8R7XxQLeTSsWdrYwsIIYpiQwJH3x05yTj6itfZwrfDocsoRS95EHj/QdG8L6Mlpe
&lt;br&gt;&amp;nbsp; 3Wh3codpZHmAVYJHBCYRVAlwD1cgAjkGvINV8MXVz4dD6/cxaxcRErb4dTEyKcbQ4HJ2g8A4X617
&lt;br&gt;&amp;nbsp; jfeJvCHiy6/s69sIr+881N/7rzEVhzyrfKgBHJwKr+MNQh0nw15VjoVjNZTgwfY1gCMWGW84kDcV
&lt;br&gt;&amp;nbsp; 5A4A4rwsfhpqSUdzzq2C506iat+J4HqHhu1vrDTk1mKDQhDM9ql4RtW4ZFDBQQMq/wAuctgnPtU+
&lt;br&gt;&amp;nbsp; ma/c2xur+KX+0Vv/ACmFzqDbbiQgL+7adSCrDbt6YIIyDyKzdL0Cz1nUZLPU1t7ODJuWjjk8qSOc
&lt;br&gt;&amp;nbsp; /wDLOUnI8vlRuBzgjoam+JV7Db6Lc2tjawKWuES3ltGby4sr0LY+cMQQC3HucV5GLg4uMGtex5M4
&lt;br&gt;&amp;nbsp; On0Om8X+CLnx9ptjqR014ILWN447KS4dyNrbz8wG1nGfbIHvXjnj1TcXR1C31HVDeSTgRWkyEpbA
&lt;br&gt;&amp;nbsp; nkxt90c9BweOtaXw9+LGoWF/Lo160gkaNomimUlgf72D0bjg8VreIvCz/Ey/txO721xYrkxSAoko
&lt;br&gt;&amp;nbsp; YrjGflLZHGT3Na4W+DxEYVFaH9XEpOdk9C1ao/hn4i6sl/qt00Ny/wBlt575ChmnIXzEYsMBwWV8
&lt;br&gt;&amp;nbsp; k8jsa5vVPiVeWl/ZPqclxFLIjhnnlywBJRo3wcKTgHbgDBGDWT4gtLnwxb66njFNSv4ty3TwQTGI
&lt;br&gt;&amp;nbsp; ZA2iVizDLchcgHPTtXPL43h1XXYpdDlXFxGVnikUNJJnJ+bgZ5HUY6/WvapYaNWopJJ26/kbwprV
&lt;br&gt;&amp;nbsp; yZ2lr4rkM0vkyh/t0brujk3qiMMFWBzg/wAqjGl6jMN8Vn8rcj5WHH51m317HFKvkW0Qulbi4jfa
&lt;br&gt;&amp;nbsp; E+Xv68N0NXo/ifHBGqeVdNsG3OH5x9K6k5xb5NjedP2bXLKx3Oq382qE/abhFWf5Q0YKKXBDEE8A
&lt;br&gt;&amp;nbsp; Hgd+cUngC91RdXvp9PkCGX9y5JO3a2VAXJIy3T+XrXA/aHe5aHWL2OEQfNEgBaYEg87M5bJHPJxn
&lt;br&gt;&amp;nbsp; 8K3bDxXeadP/AMS+4tpLiX90iwWrQIr4yxJOAx77scVhTXLTV9W9jztLtnoL2/8AbGpK+oSwC/u5
&lt;br&gt;&amp;nbsp; PLt7dpwxwCMrIpO4cjAJp9ndxaPqtwul26hwfmdJGeNpOCCrEALhOoGa87vllvvEVvLKunWptyTA
&lt;br&gt;&amp;nbsp; N29sEfOdwOC3B9utaeg+J7axu5Yb9j50oaOMQqFiUBc4K9G75Pt0qIxtL3mJq/wna+KfEMSaJcRa
&lt;br&gt;&amp;nbsp; dsnZkWXaUPmR5J3FnyOOmMA8DNavgu9gTU5odNa5u9QVPncD9ycgks44BA5XJ65x3ri5dJsfE7GO
&lt;br&gt;&amp;nbsp; 4up7O3OUIjxKZGHaPGBsGQOvfGc123w+8P2Wkrb2vhyEXj2TRoC6tudx90ruXK49OmTSnU9olOLO
&lt;br&gt;&amp;nbsp; nB0OaXJI7vwvN9j0+6tNXEU8XnR3dxFLJlYmCbQwjIKqSDgKCAOaqXHjaDUrueWNYtL8OaYVllkk
&lt;br&gt;&amp;nbsp; k/eNgDkj8wOM+grO8XeI9N0VDZ3c8dzfSgx3gQb1DY+6vQggn73JyK878bavPeafZ2tsbATOd1na
&lt;br&gt;&amp;nbsp; SqY8AdGkdsln75PTI9qbqynFc8j6nBUYYX34rUn8VfEu/wDiNqX/ABTNn/ZOhyyMWuL91iecA8yB
&lt;br&gt;&amp;nbsp; CCRnJ7luByKqabrOn+FcW+m3s9wqq0irBLKfN9d25xlfTjHSubtPCV74i1dLV7x9T1GST94LZAIo
&lt;br&gt;&amp;nbsp; +TlV7vj1IHtnrX01+zR/wTp1PxlfLPr0EtrbOuyWd1CyP6KvXA5xXRSpSnBRgrL+u52+y9q+abPl
&lt;br&gt;&amp;nbsp; Hxt4w8afF67FnoaRi1BwhSFpZGGcYDE/N0xxkcV2/wAN/wDgnn8SPHljK2txyrBsVoxKpVh0wv0x
&lt;br&gt;&amp;nbsp; 1GK/W74Q/sJ+FvhpaQiHR42lihVSz/MQe/617Hpvw10jRCpsbGNRxIE24VSMfr/jXWsPTjG1inyx
&lt;br&gt;&amp;nbsp; 2PyU+FH/AARdv9QsDPfR3Fk1xMpOJeOhHr046fpXoPhf/gjlp9gjW3jNLma/UOI50ORIMEr0OFxk
&lt;br&gt;&amp;nbsp; jBr9NLzSIfLjQKjGM7l2LgAdScDp1xVDUYLVmZpMxBicruHz/T0ro5/IjR6n5TeM/wDgl7f+FLyM
&lt;br&gt;&amp;nbsp; +GppZZkyAcgqMf3v88k1yGt/sFeJtItGQW8rPNIC6Ajdhs5bBOM4HP1r9YdY0SCUg3cKKpztG4YY
&lt;br&gt;&amp;nbsp; YyT+Vcxq3gy0uos3ShkLYVU6hMcfWoagtOVERpubvc/KPx18APEXg21M2mQXdwFtysgMfG/sGPTO
&lt;br&gt;&amp;nbsp; Bzj64rz278W3HgfS4otTe+VnlV7gQqPPJUAYGf8AdUdhX63eLfg5YeI4Hgv1cJKSwVRt446+tfJv
&lt;br&gt;&amp;nbsp; 7WX7EccVpLq/haNGvYg0knczt15HfP4VMlG+mhlOnZrsfOOifEKz0nw3dXGjNf6dJIwJZ52lkZpN
&lt;br&gt;&amp;nbsp; oOUyVyq5+ntzW94a+JFp8RNDm0bxtLHd27uBbyspt7uAqThg2fnx1yMfXHFeCeJPiOvgzX2sfG1h
&lt;br&gt;&amp;nbsp; Nvhbb+9O3aQf4RxjHbArT0j4jaN4gv1bTFjVoTj52bKntnnn864anN9pag6Nl5HrN14E1SZ9WsPE
&lt;br&gt;&amp;nbsp; +sQanZS7Zra5kswS4z8u9tuN68ENnPauGg0vUNKbUF1S8tZdSmjME0TuTgoP3fJPY9MAjt6iu80G
&lt;br&gt;&amp;nbsp; 9j+Kfht9J152MW9Ctw0qW8cTpymwKdx9Dk981k+JvDOp+GfLnu0OpXGn43v5nnJLCd20B1yAVdhg
&lt;br&gt;&amp;nbsp; 8Yz3riqNyjZddzwsfh5R1hsYlpp+ka8mnXurWKvf/Z3iju7ecLNKFJHTqQpyPm7HsKi0bUrL7Etl
&lt;br&gt;&amp;nbsp; I013dRjapMJilwnGCSQC2T6c11+g6vpd/oemyeJ44RdxwtdWhdQFSPBzlOpHT9OlYDaIut2N40Gv
&lt;br&gt;&amp;nbsp; S2MNtcM5t7kgwR7mRlIGMoOeo6jHvXhV4c0+WbaXzPJqR5XYpax8MtN1Fbz7A86XNyrRXKthzKAQ
&lt;br&gt;&amp;nbsp; SFDfd5GOD71494/+Hs3wturTWvDt+t7aTuyrFcxDfaSMDgOgOAcZIYflmva9M8QW0l7Np13caWdU
&lt;br&gt;&amp;nbsp; hIiuHuZBGuOG82FgVJxnovOMH1rmL/wxa/FbxJfXOq3Vnq1u65FvGpZ1jj4YnIxjAOGz17134OtP
&lt;br&gt;&amp;nbsp; Dz5pv3dL6PVDSU1Z7nneotPDbhrm6SZVihmk2Z+80Y3KVIByCCOmDjr3q9AmjPChn1GFXKgsAV4P
&lt;br&gt;&amp;nbsp; etHXvHEGsG3glmju9KsI3SxmESLLCr87SUGQAe3IBzjrVyF9HeFGuNesxIVBYfYl4PfrX0EK7lFO
&lt;br&gt;&amp;nbsp; rGzOlQmkuVnDaFrUs9603iOSaZC4CNKgwA3fnv61pXfjS71q/t7W8Ij/ALPHl27EBV2/X6Dvmubb
&lt;br&gt;&amp;nbsp; UktpVaWTz4584CqW2AHrxzir2kzxLqccaMERrZl8x1DpIXyBg+g6Z61j9m/yOL7SSNrU/EkEpmgl
&lt;br&gt;&amp;nbsp; mVEzlcxtsde+D0I9jz3rXtIrhHuIWglW1uYlMf3WVTx91ucE85qd4dQ8S6faW2sXGnmx0xC81xjM
&lt;br&gt;&amp;nbsp; KqcEk7RktxtCgZOeleif8K903XNEjm0TVYY7WyQRXslxCqgDYp5wcj5SmEIyd2Qawu6kdXZp+p0U
&lt;br&gt;&amp;nbsp; qTd0iD4XaIb/AFBW16KC4jdFAjdN/wAnTH5jsffivZ9N1y30myabQRHMyQeQgMgYIndlIPAxxn6c
&lt;br&gt;&amp;nbsp; 15hYeE9K0/T4rLTr5v7JhtwL4ZAluJP4IiTyuc8gdAe9S/FHWF03wnFo2gH7Lc33DYR3bJbBjUd+
&lt;br&gt;&amp;nbsp; wyOKmq1BKEfQ9nL8O73aMXxd8ddF8K69cTJbRS33QyyozhWA4wM5PQYUdSecZzXFeH7vWvixq3n6
&lt;br&gt;&amp;nbsp; jPNBayzfJbx48yQnp5zr0PbYpwPfrUfijwZD4Ujgj1jypL6ZVYJJGxuCxGcbc9cY4AHTmvUf2TvD
&lt;br&gt;&amp;nbsp; ML+LIDLtmljlBiiHJznHPZQOfXPtSpxipJLVn0dNKTsj7L/YA/Y10XSIVv8AxFYpe3IO8RfKkaEc
&lt;br&gt;&amp;nbsp; /MRy35197eFfCFr4d0+ArDEFgwf3QxtI6AEfe7/jXkv7L/hRtK0SD7UVAnUvgLjp7+nP/wBevbId
&lt;br&gt;&amp;nbsp; Xh+yxeWAwiywTBAGPUn3xXtUpcsdTmxcr1OWOxfu7yG1kLMzlUHJ3YUH2Hc8/pVC512RYCLRVdn5
&lt;br&gt;&amp;nbsp; VTyceuDWHrviuxtmzeTNvIACqMEH1Jz+FYmo+ORbWbpaOS+cKxPPH169+abqRQUU9EzZ1/WvsM26
&lt;br&gt;&amp;nbsp; 5YAYyAzDA9+Pr0rnbvxNbaiqyW0oYv8AMCQcj8/btXK+KfHy30jLebfMRQDtHHbJwa5PWfHCyyLD
&lt;br&gt;&amp;nbsp; DIAyYwoGV6etYOopa3O7kVlodvrfii3M++eZTICRGSASv0BPrzTYPF9vdgLNd+QixE5Cbizd/pmv
&lt;br&gt;&amp;nbsp; KdV8Rskx2yqVIwfc56Y9Kwb/AMb3UBP2R9oxwzrkfWiNRPYSWvKe4x6wuqjczRBjjajA5PPPtWT4
&lt;br&gt;&amp;nbsp; i02DVIZIpFiffnJbBBJrye1+KU1oBGtyFEYGc5BZvYjtitK0+KlvMjJeEb3zjAOD7mhVb62FyuK0
&lt;br&gt;&amp;nbsp; 2PnT9uT9hHRfirotzc2kccF+oZ0aNAHDep+vrX5reJNA1X4KeNotJ8fI0UBlKx3AUqR/veuR+or9
&lt;br&gt;&amp;nbsp; stW1a31VSNqzBwASw4I7f0r5d/bg/ZH074yeCruTTrdI75Yy8EijLBuSOfTPatoqM1yzPPrPkvJH
&lt;br&gt;&amp;nbsp; x5pusT+FLmy1rSZruS2uEVbg5EqhR8u9eCHHYkcjPtXufhvxneavYrHrRinsjGWSUxoPlXBKOwHA
&lt;br&gt;&amp;nbsp; GM84z718ffD7xfqHw4u9V8Pa+7kWkjpLbMNyO5wGx6cc5GORXtvwG+JMNg4EhVLK4+XEaCVS3P3t
&lt;br&gt;&amp;nbsp; x3KQOCpz9TXn16EqbcLGE17WFkewXunaE3hsvK9vdQXMRjQKoKrkkny2xkHgnt04rhPC1xceFdVu
&lt;br&gt;&amp;nbsp; p7mG+1aKGN2CTRxlruEEEKEC4EnAGTnOetdTa6posl8z6SLd4UOy4tpfMUSZ6BNpPIPPAyAc8VTt
&lt;br&gt;&amp;nbsp; 9Kik1O7ludQS5tLaGQ20ccCrIqyDmPep+fIwM7SwIrx6jk703tb+rdjwK1FOWu5474qhfxL4wuby
&lt;br&gt;&amp;nbsp; XR7qG5SQQGzmj2i0Zl+QoynA+U7iCPlOaIvCms/DK38rWGh0iGcbY2ikEpfoCN6cRgggbTgNzV3Q
&lt;br&gt;&amp;nbsp; tZk8NfEDTbTw217daVeXexYRlyZR/CGwSTweemK6bUPGGu+LpJRoFnAdT025a7mtvLKrEqdwCcFg
&lt;br&gt;&amp;nbsp; BnB6nIx2rrr4mrB+xhb2Vtn2/wCHMZxUGrI43SfhxDp0Uc09uLC4MazJvj3l1cAhm2kgA5YjrVhf
&lt;br&gt;&amp;nbsp; BtiqgLeW2AP+eWf6V0GteMrrWrCS31NI3e3UzJLAqxowYjapPpkkAds1x0uqXNxK0kEEwRyWUBxg
&lt;br&gt;&amp;nbsp; A9OpqqE6tdOU3bUtVHskcX4h0ZdH09ZrFzZPBDkTY3Bhg/LgjBJB9ugqla6BeXMunG9iit11B8Bi
&lt;br&gt;&amp;nbsp; 4BUHvsJBBxyOxru9ZtrO5mkj103UtrbS7WMO5/n/AIQAcfLk4zniufvfBZn162WMPE1oQ6LJkOuM
&lt;br&gt;&amp;nbsp; tnZ1bHYe9d1HlnFK2m5yR0nZnqOo2Eqafb2mhXFxYQpi7EAbfBsB+VMZ57McDqa2vDusWK2Mkesx
&lt;br&gt;&amp;nbsp; 28r3cYgkmjkIM67eCF2HGATgjB96h8M+KtP8Oafb2E9hFfXoj8trlWzcxHPz4XGMNhgQD6cGug8P
&lt;br&gt;&amp;nbsp; SaPqxn/4QiO7uJ7Ly/Pgly0YJO0Fc/KPXg8Y/CuWU21ax7dKnFOyN/wt8O7O0ZbjSvEdhFP5YeOP
&lt;br&gt;&amp;nbsp; yHb7PDsI34XIZ8jlm44HHFYPxD+Iuk+EfMl0Oea7vVC2884AjkuH6AK5OVTkszZGffgV1CeE4x4f
&lt;br&gt;&amp;nbsp; uo7ZbTy1LF0WZHJOclS+cKD6E89q+ePjRo3iOW5+0QaZcSQQTFA6xbld8cAY42j24rJyUpbHsYWl
&lt;br&gt;&amp;nbsp; yoqeOPFzarezSedFYPegrdzEM806dRHFzlVznJ4J9a+mf2DNMtZ9as7q/KRRKwESMAXkGP4gOM+g
&lt;br&gt;&amp;nbsp; zxXw9oVhdXPioJ4mnmM7NulYYYRf7zc4/wB3+VfdP7BCf254xs5ghWOF8RRD/lkgOAzHvkg8+9aw
&lt;br&gt;&amp;nbsp; SjKKPRptJH6j+BNXFrommvDkuE2+X0z9fyHFbdzrrTxOhY9eMHHoTz9a4PwvqYmit4Uzsz91epBB
&lt;br&gt;&amp;nbsp; A+lbEd/5l0XhQzMcoFPT8TXfCTaZx1Y3ldC6rcSPP5sw3yHKouckjPGT37flWXfWksgdLiaSHYey
&lt;br&gt;&amp;nbsp; 55I55P8AhU8126X43W8+5yMMBkDIJ4P4GnmzdbDbNEyDGBkdDnoSe/1q7XuaQ3ucP4p0KaW5H2bl
&lt;br&gt;&amp;nbsp; 4+rcjd/n+lcvdaLLBC8twZJnYnmT5cH2x17V6ncWtq06y6lsiK8qWOSwwcGuW8TfZEhTz5XiKthW
&lt;br&gt;&amp;nbsp; fgNxwQBz+NRKNtzpvdaHmTG5jDJcxlQpPc5b/P8ASsyQMTKJHyPc56+ldLJM1xcTKzo4Q8MP89/6
&lt;br&gt;&amp;nbsp; ViXlqs2oMuSQQW2D7rGnFW0Etzn72KSAeUxUK5yGHU/WsuK8nSWTyNxIPBHH0r0XS/B0V7blpSob
&lt;br&gt;&amp;nbsp; b8pOdob0H51J4g+H0FjZSfZpWEzAFgwG08dMCnYbdtzidI8RXVnGVkkByAWCZCk1qajrqXunzRgg
&lt;br&gt;&amp;nbsp; qOcE/wBK57W7Z7GZUgVeVP3TnFJpty11CN/yyt37gdKqCs9DhrNO6PiX/goV+z8NA1qHxh4fjY21
&lt;br&gt;&amp;nbsp; whjvViTABzkFj0GQdv8A+qvCPhj47Phq/VY0murOVlLsyh3Rh93cAOo9a/Q79o3w3Frfw21Ox1tQ
&lt;br&gt;&amp;nbsp; 0M8ZDJ1GeuT7+9fl9PbzeE/FklnZ3RhkRz5UjD5GGTwfyq6sVPR7nLTfK+VI+2PCniy08c+H7a40
&lt;br&gt;&amp;nbsp; +KB7yB9jxBNplUgjIZT97jvUkdnbw/bm0m21CNV2BVedTtBbkwSBR8y8HBHX+LseF/Z2g1HWbWCP
&lt;br&gt;&amp;nbsp; xJPBIkjRGIROgZirdRjDcA9+K7nx1qz+GPiZb2ujyKrG5Mbhbb5QuAWz/CwxyOK8WrR5m5KzscOM
&lt;br&gt;&amp;nbsp; ppTv3OJ8Q3mjeFtEs/tT38Lmdri1uQAx84DDK+cfKwbB4zySDWFY+NFXXotSxHNNayFo9PnXe00e
&lt;br&gt;&amp;nbsp; 394h55DZznPatf42aCuv6ZNP4anF1b+aqSQgEQpIylsYxlMnggn0xXAeENWGlHOsQzxm3UyEiIqq
&lt;br&gt;&amp;nbsp; jkbC5+6SQRn6VjTw0JL2qu2/yZ5WJtFq253WoT23xA8GX8elWM+izQuZ4AWMheNT8ozjng7dvPQH
&lt;br&gt;&amp;nbsp; rXnk19DbzPHeaLfyzISruCoDsOpxjua7fQfiHZWfhBLS3cPqGwu8Ux3tCrN045YAZGTzx71y7eHN
&lt;br&gt;&amp;nbsp; OvWMy6nGgl+cKXGRnnFbYGT5pwmmkrWT/M45+8atz9rUXUWr/uDLiRGDKfMPIznPTgZ+lTaba2dr
&lt;br&gt;&amp;nbsp; plxdWk1vJrjJHsZ5maRF3EH5F+Y8EDpjBqd9E1jXrYPGIcwMI0EsI84nphh1zj9aZ4fnvJb8w+It
&lt;br&gt;&amp;nbsp; MtlNsTEhCeWPMDbgTJtyxB/DAqIVeS8G+v4F8rck7HceGrJX8PK0MKyXG0qxMI+fnrG3ARck5z1r
&lt;br&gt;&amp;nbsp; X0C1stPK2ulgW0Mc5a48lD5U0zLwPn/ugnkE8k8Cudu5p/D3h1DcyfbYhtlKxtt8iQnaCZNuM8kh
&lt;br&gt;&amp;nbsp; eSQDXTeDNNXU5pB4Wuns7NZWjmmeM5lbqUjkbn0zjnrzWkldOXmejhZSlJRjqaniDxQNJ0R47e1R
&lt;br&gt;&amp;nbsp; 1ghKq+PKbe+cEKOcentj1r5w+J/iGPxOTDrsurWNxk5W3cvGTjj5SRt69RmvpP4jWTaZ4HlOrypN
&lt;br&gt;&amp;nbsp; PLERsjxwP7u0cIBjOSc818QeK9b1PUtRvbbTJnHkhjJ5a4CqDycjoBkUsNF1qjitz6aFNwhdmloG
&lt;br&gt;&amp;nbsp; hrba/HFBcrPM3Vc8njndX6Df8E7dNS58SB7ItlUEe08hMN7c/wD6q/OPwn4jj8N2n22OTzJ5pFRQ
&lt;br&gt;&amp;nbsp; RyB3JFfoZ/wR58WL4y1rUSQX+yyckD7uQcgn6gfnXdSjKUnZbI6opRp3bP0I0KFopkS33yOOSvb2
&lt;br&gt;&amp;nbsp; /Ouk1Dx/o3w0sTL4kBuZVyNkLBQD2ySeuTTNL05PD2itql88KxxAssbD5pM9OD1r5e+O3xVudS12
&lt;br&gt;&amp;nbsp; /e4nSK3QlEjiABx7468960V0lFHH7S8rfZO++JX7amkaTqbw+HIRDJEqtIZs5j5J+VgAP/114l8U
&lt;br&gt;&amp;nbsp; v+Cp0Hhe5eO1t47lI0LvtIYMQOOh/U46V4P8WfGWjzXk02qXSw7xhvPmwOnbJ4+leR6v8SPCcUpS
&lt;br&gt;&amp;nbsp; KfSGbkZMikr7D/CtFRb1s2YSxaTsj6Yh/wCCtVnrVuY7mymVXGzOdwQHvn8qTTP27YfGuuqkQkiS
&lt;br&gt;&amp;nbsp; XKANng5Pzc9PSvlWw/4RnXZv9Cjs97HIEWBz26Vt6N4LaxvftOiwgFRjBOR6f41nZ3saRxafU+1P
&lt;br&gt;&amp;nbsp; DHxlTVbV545t/wAgGc5zn2/Gl/4W1bCR2hnRSil8k9B3r580y41HQPDxkVdxYAbdxxx6Vx+sePLm
&lt;br&gt;&amp;nbsp; zFxLLK0RUZQbsc981o0krM2+sOS0PqS5/acs9Kjgt7m4UhzgkuMc/wA66RfjXoupW5NpqdrK7AZj
&lt;br&gt;&amp;nbsp; 88Ft3cED8K/NP4k/EW51i722EzAqQV56nPWuKl8a+JkuG+xXsy5bd8rlSPfIqVJJlOcnFH602Njb
&lt;br&gt;&amp;nbsp; ay7y2dzAJAcMgcMM9c/59Kz9S08+E7hmn81xO27Ocrk4yAa/Nz4Y/tJ+NfAV5GNYv7x7Zm4YvuKj
&lt;br&gt;&amp;nbsp; 8fw4r61+B37ZNn4ysYNM8ebJSfkE68OpBJU8nA64NaXcnZHO4yd2bXxp8WtD4Zvku2ZlaNsbu49M
&lt;br&gt;&amp;nbsp; 1+bXieKLW9euZvm/cyuhbGRySQcd+tffX7Vd7Fp3gq/msZl8hYmZCCOQAelfnZo13cyatcXsQQ29
&lt;br&gt;&amp;nbsp; w8hcsQBnJI4+vNXVi07oxou7PVv2d9SvfD2v28mnxyyYYI4AwqjPOPTNfSfjGyj18XHlrBG8nyRz
&lt;br&gt;&amp;nbsp; +Zh0kTgkDHTn1r5o+HuvEy2NxarPv+0RxTNCNrBSwwc/xD+gr6D8Qma1naa0hEt4WRyhwY5lzyuO
&lt;br&gt;&amp;nbsp; gOMt1HQ1wOHtIvmMsc7qPKeYQSanY+JpBrF49uYZzHMwYkuvRMKDyeMgYxVv4x38OoWRit4p5Lae
&lt;br&gt;&amp;nbsp; MukVw2AylsbFZC2Dkg+3NYnxO1iHTvGaNqMUs0M6MJfIk+a2BPylOSQRg9unerHiXS45/B9vfRxW
&lt;br&gt;&amp;nbsp; sqW6GKKS1KrNdOSCvngHO/AwM44HHrVuFNxj28l/wx4EpylZdtzIsvGUfgvxLLb+NdAubK5sXNrP
&lt;br&gt;&amp;nbsp; CYtk6oEHAGBnqDuzg5rkrxtRvbyWaC52pM5dQI8AAnIrqPjn4sg8U3ula9eZuNTMKw3PmMdkhC4A
&lt;br&gt;&amp;nbsp; wD1G0CuG/wCE9d+Ws7AE84CcCvQwmBw8pSqUqfN3uzOEIP45WPUJfE9/4kuRfWzzDyozJ8rlUjHQ
&lt;br&gt;&amp;nbsp; 8enI455q3pPiW8vtJgE88sxtW8mUoVG0E9Np+9kY5rV0g6l4gW5sNCs7eCS8RppWMcYcREjcoJ79
&lt;br&gt;&amp;nbsp; O+BVHS7NLHWvsvhq3Z7Wwv5IIJZdkrl1O04lGeMg98e9eJPDqoue+myHG6aVjd03Q7863a3cGrai
&lt;br&gt;&amp;nbsp; 2nYSOLT0j8qOaVucl8ncOoJI+70rvvCWsT3dnPqV4r2+yRoIbNVDW8UnQ8ggZUY5APJ69qyNA8H6
&lt;br&gt;&amp;nbsp; jrtq9rp1xayajuaVEiygiJPCZOMEDrjr2NdVB4c1Pwrp/wDY+u5uma3ULJgN5YBDEHtuLAk/QVap
&lt;br&gt;&amp;nbsp; yXuLyPRwseX3n3OK+MV/NovhGK2tV2rIGd/mO484O4n3PX3rkP2VtJsdQ8E3mn3GlrqOpePtdk06
&lt;br&gt;&amp;nbsp; UJMYpYLaKNOFI7F5WbHT5Rmup+PHg7UW0qV7iK5itxGQDLtVTgZPc8nHTP8ASu+/4JN/DS31a4bx
&lt;br&gt;&amp;nbsp; Dqu1tK8Lz37CRlBCTzxwJGADzuA8xs1z4WPs/auemz9bf8Gx9hgJUq8feV0eBfFT9gfV/DmpOPDw
&lt;br&gt;&amp;nbsp; 8yzs4llIONz5ZgVz03BgO/Svpn/glf8ADX4i/DzwZfeJfgzY6HrsLkS3ulX4a2a+XLD9zODhZBjj
&lt;br&gt;&amp;nbsp; PDcAkV9S+F5fC3jDx7J4a8OSrfvaotxc7kwDk9BxzivpT4SeANP8KfDWytPDtpbWEK7hEqIBuUEk
&lt;br&gt;&amp;nbsp; Dj3Neth6t4OX9M5sZSdOTVt9j5l+KP8AwU1+F2h6ONL+M9zrfgHVY48T6dqWnTCW3kII2mRVMZAw
&lt;br&gt;&amp;nbsp; TkMQQeDXyl8bP2jPCfxA06+1vwH4ne98LwbYrQ6cGS71ecL+8Csy5igRiBvADOQwUgDJ/SH4reE7
&lt;br&gt;&amp;nbsp; TUtOkuL9LeRJZBEVkQSCfAO5VU8EDH0r4w8J/DjRk8I+dYaPazapa6pqkTbIE/d/8TCfhUHyxjbs
&lt;br&gt;&amp;nbsp; GSV46CqpVaWtk7+tzypUZt+87o+G9MuzcTX2ra78N9X8Ryod1vBO7Q2ac9W3HzJT7ng/jXm/xC/a
&lt;br&gt;&amp;nbsp; T1iW6e01f4faNpEB+6sFi0fl/T/69foR8RtX1LTtNKS6NDJFH8p3SK74z3284r5e+KNzpWqancBL
&lt;br&gt;&amp;nbsp; C6SYj7iqT1PrjJFdqxFlZx0M40edqOx852es2z30M4U2EshB287W79e1fRfwY8Q6xoYivIYbnUbC
&lt;br&gt;&amp;nbsp; I5mtpW3u6Y5MMn94dgcg9OK4qz+F02rXcWdEMsLOoInj4yemR1wa+gdNvtP+BPwXvNW8TafaWFhY
&lt;br&gt;&amp;nbsp; ENDaxgqJpyT5aKSDglvy5q7c1kaYhwowu2e3eEPh7/wnnhW3utBUTwXsKz28io37xWXcD7da+Vf2
&lt;br&gt;&amp;nbsp; x7GX4VX628+YpmBJA6kk579sGvo39j39ka1/aD+CVrqGl2lxp09yjTTX76neMu+Ri+yNVmVVA39A
&lt;br&gt;&amp;nbsp; ABivlv8A4KPfs86h8AdZtU8Q3V5KrApb3P22eeGY9ApWZ22EZ7HoKxnh9Wr9RzqunFSaPm7VfHE0
&lt;br&gt;&amp;nbsp; twfLc4OTj3+lWNJ8YLpshe91K2QHBxIeV9uKh1f4WP8A2j+/u3SNOsax5yQeuR16VZu/2fLTxFK7
&lt;br&gt;&amp;nbsp; 2V9MZMBiiBRg+1bKlSiruNvM5aksRUacV+NjdT4pAy7jHb3cOOWibOD/ALvat/w74yjM0U+nloo9
&lt;br&gt;&amp;nbsp; +7crcAg9fY1yuk/sz3kVwiWE88Ks2TJIQMfUVq6D8O9a+Hdw018q32nl8TtAgl8jJ6uvbp16VhNU
&lt;br&gt;&amp;nbsp; Zu9N3Z24bnWlTR/gfTPxn8XP4m/Y/a/MyTGQ/ZzKpGB8pIOR34IP0r4lkleeOG0tAqrFGXUEcbvX
&lt;br&gt;&amp;nbsp; 619AeNvGdr4M+AWo6XHPeT6fr5CoGsyi210BlXxkkKV3gkDBwK8L8N6XDe6LLeC+t/OtMJIqP8xz
&lt;br&gt;&amp;nbsp; kghTzjjB/D1pyUnHnjsYRmoVJUX8TO1+CdjeXGs26yTTbkddm5+EPqM9On0r3nxf4hj07WpP7Ted
&lt;br&gt;&amp;nbsp; rc3IdPKIeObOMrk8LyOB7/WvP/2ZdAj1PVoS0Mr3E8iRQlFyWYsAPl/r6Zruvj74hbwvdaraaHvn
&lt;br&gt;&amp;nbsp; uYp2E1woLpEe6YHfk81hToupe/VmGZYmNGKS0scN4r0xdH8dwXV0JxpsziKRnvhHMq5P3Dyu4K3A
&lt;br&gt;&amp;nbsp; 68Hjmuh0Lww2mwS3ngyW6a2VCxjuC4jlUkkFmQYL4wBz3NeYQ6ZrfiG804s6XUupXkawxthFkJAU
&lt;br&gt;&amp;nbsp; EA4weOvfFfVHhWyufCvhlF8kzeThZkQBgpHGCo9Ofrit5Q9lBK/keZBqd7o+efFHg+x1q3iiGqzW
&lt;br&gt;&amp;nbsp; d9Jb5uYpLeRWDKT8qrgBkGV56561ySeAY1QBtRsyQMElQM/hur6P8c+K7TVtWjnt4J7e6S1kWO8S
&lt;br&gt;&amp;nbsp; 1PO/CmMr0z8vauLi8FQSxq0uja+7MASwRsMfUfNXXg/3EXy2VzmcdfdK/gXVZtFutWl1a4W3bUrT
&lt;br&gt;&amp;nbsp; y4XAWVYH3rgYJ4zjJI5Fen+BdJ8R2d9caJojadqltfzC6ivTCkCoqqxZZQp3gYYHheay/EejPZar
&lt;br&gt;&amp;nbsp; ey+DrWDxnaLZmWS70/S3sWhAUHdlVdAVxhuAM5Ga6vwzZ33hPWo5/FPhfXEuJkhlgJ2XQjfAKq7x
&lt;br&gt;&amp;nbsp; nONpPyla8TEVIOpaLVu1mka0pKWjRp/C7U9P13xTqY2WsuoWxdfMtXaC3iMYxja4yS2M4HHvXofh
&lt;br&gt;&amp;nbsp; PSjqUjPrA8uGzLN5nzMGXIwcIGbqcdP0rDe80rxf4jurrSnsrc3bhWtg6xTRyDhhtcBmJPt2q9pf
&lt;br&gt;&amp;nbsp; ht9BjDRwuswO5/Mj8tjzx169MVz1KkIrVHo4atCK+Iwfjto9z4wsnsLGT7VbRuJAsS7to+Q9Rg/w
&lt;br&gt;&amp;nbsp; 4JIwMVsfsO+BdW8I/sZeNZtBR1mk8ZSRycgkIlrEQMj3ZvyNQ+IY0ubS8j1ECUTxIgT+5g52tnHG
&lt;br&gt;&amp;nbsp; OR1r6g/4JsS6XZfCXxtp2txWVzBaait5LBcIGTZPCiI4z3VomGfpSpypyhPlfRfgz3MvxCjW0d0Y
&lt;br&gt;&amp;nbsp; f/BOj4JO3jbXPGniyTeLeD7FAh5zLKec/RFP419MeAfFKpoKQSyLvikkjwvU7WPGD0z6e9cP8OdK
&lt;br&gt;&amp;nbsp; g+FU+twaXqWmXsGsXCTW8MUoMkTKfm3AdAQQPwNWPAd4th4k1CKXb/x+sy9MEFicAfiP0qva3Xu7
&lt;br&gt;&amp;nbsp; WR7GPs5p30sdp4osIfF+sxQSybpIoTGCfuoB6/QdT3rwj4lfDzSvhB431U6i5i8I+JroahDqUjYh
&lt;br&gt;&amp;nbsp; 0/UGRUmjuMD93FKUV0kOFVyysRkZ9mizc61J9mkG+7ba2DzsBHB/KtPUtPs7awkW+iinV0I2SAOj
&lt;br&gt;&amp;nbsp; L33Ke3TjvWlGPJr0Z5ahzWsfLXiH4ZaTBFumiFwsiDYUO5ZB6gjhuxyM15H4g+Dul634ieSztYll
&lt;br&gt;&amp;nbsp; 2sm5+qZPTPTH61718Qfhv4c0KWWXwUdQ8NTM27GlXZhgJ558ht0PfsgryLxZqTaDG2/xfeSdsSaf
&lt;br&gt;&amp;nbsp; bSMCMfxBV5OeeO1dcaqSvFkSwyerWpn+HfgzpWhgoima4lYKoX5gn0/xrP8Ajz8LYPjYtn4K0pYr
&lt;br&gt;&amp;nbsp; iKWcf2nOiB47BcAqgOMeec/KoyVGXbAxmbQdb0zX9WEerar4h1qVmGbeCZLKNl/2vIQOR7bhmvef
&lt;br&gt;&amp;nbsp; hT4PhtZLY2trbadZwZWK1hhEccZbkkD16Ek5J75rR1JaSbuXHARrLlktD1f4C/D3S/hD8E7TSPDK
&lt;br&gt;&amp;nbsp; eVb6ZarBCnGdwxlsj6fjXxp/wWK8DJ8bPhsNLaRBeQf6TE4X50kQ5A9Tkfzr7q8OaHPb+GZWmZHj
&lt;br&gt;&amp;nbsp; BJBbgDJ4GT9fzr4v/bI8E6zrGoz3kyytCGbaUIIHoSf0qYuU58y3OjFYWEovTQ+E/B3huz1fwrpz
&lt;br&gt;&amp;nbsp; aiotHSIQP8oJV0+Ugjr2z9CPWptZ/Zpv9RYTeHCsxB+VozsbnrXcaXpMOgRyXpVFvI22XFvck+Rd
&lt;br&gt;&amp;nbsp; hSQMlclHAPDAHIABBHTvvh18RfDF3ckXNpqmm3HAysDXERPTh4s/qorVzd7HnRpyi7xZ4hoH7Mfi
&lt;br&gt;&amp;nbsp; u9vB52oXYjDYdd2ePQ9a9P0P4a3/AMJbG3nudJVIUJ826DFjGCepPYccjoc8ivedI8T+HbaJjFex
&lt;br&gt;&amp;nbsp; 5HJP2abL8Z6iOn3OvXevAQ+FdHvdV8xWUtdQmys06/6x5QCwI/uKxNFSz0UbBJyluzyPR/BUPxO1
&lt;br&gt;&amp;nbsp; rWdHurKxiu7TQb65SMRDc8k0flxbT0w2S4HUFWwOK+MofBUmqa3HbvbrEs9lHPuC5ZA5Oce42n8s
&lt;br&gt;&amp;nbsp; V+iPwn8NRfD7UJ0Z1uNRsLozXUo3hGjdSqxorMSqIjFFB54JJJJr5h8GfD+51PwDa6xpkUq3TzyW
&lt;br&gt;&amp;nbsp; qOq4KRpI7qQfX94B+HtXPVSULX0Jo1YYNVMQ1fTbzb0M3wHexeDmsLfw8Zba8kljjaRlBaMkjDrg
&lt;br&gt;&amp;nbsp; fKQaPj/fDTfFOtQ3Ma6lcWFw0P2iY7ftEqkZOAMNnqfpWxa/DjWIPFWmXkOn3W/z4mLRnpzySB2P
&lt;br&gt;&amp;nbsp; f6U349+FNQ8SfEjxl9p0TULyzN2SskMTHd93BRtuOox6YFerQ9j7FSi0++p8Xi686lR82+p4NFrd
&lt;br&gt;&amp;nbsp; /qOv6RNPMwura8VgxOwx7WLDB9ADxX1t8Oby+j8OSyR+fJJjzpdjcjrgn6Z/WvlzTfC1/aapZ2+q
&lt;br&gt;&amp;nbsp; 2F5aWjXqTK88DRtsHJyWAJGB29K+kfDfi1ZdLul0CQXEhAXauGDDOef51lirSgoxZ14NpL3nqXNV
&lt;br&gt;&amp;nbsp; WTUy7TAYyZHXOP8A62fpV+H4k6raRLFbttjiARR1wBwOc1lWujeINTheVdLvQNwD5j2A5PGN5GR9
&lt;br&gt;&amp;nbsp; K34vhHcTRK91rFvbysAXidzuiPdTgEZHTgkVgoOWiZ081tLHl+rW994g8G3eqfEnWb60vxA8XlyQ
&lt;br&gt;&amp;nbsp; fYoVjIHATCKoPTHrnrV74b+D4H0L7No1/rMtrJMxmmeEeVKrAcoVY5xg989Kmu9Y1PWvCkmmaTqY
&lt;br&gt;&amp;nbsp; u5HyskIiLbt20bMEe/Y16F4c1Lwz4h0u3/4SibVfDOqW+6GS802KOG4gYYUMj/xHqeeOa44YmlUj
&lt;br&gt;&amp;nbsp; aatr/XQ4lU1syl4S+EWjjQIi97qepgOJojLbrECwkbgJlgCOeeprd8XG6+HltD/wiE3iC1UKsqo2
&lt;br&gt;&amp;nbsp; XgckhSrKVZDuJAwasLqdxdTS2XhbxtfanaBmZE1O0iWaYEcAurK2evO/HtWZ4v1zVLK/tbHWbK6W
&lt;br&gt;&amp;nbsp; FHjEt3FcGVXIYMoCscBmZQAN2Olbwpxk+aE7+R1wrRnG1jQ1PxjeSeH7STWNF1De7bGNtZySsoBz
&lt;br&gt;&amp;nbsp; mQLhVHPp0ruv2ePjJY/CTxdjWItYj0PWE8m+LKpVYeGWQc7htZR1B4ryeHxDoej6SLeyvNaie9iV
&lt;br&gt;&amp;nbsp; bgXoNpI5G7qXyrjBPCsfrW9pWjR3Pg6OXddyMspKxiMK3lluMkZyD9axqUFGd3E7MJVVOamuh9w6
&lt;br&gt;&amp;nbsp; V4D8N6fqlvqnh68huPtAWSNopP8AWKcEd8EEc9K0bqRYtTna1Y/K5kMijscZ5/Ac1+cfxP8AiV4p
&lt;br&gt;&amp;nbsp; 8FxI/gbXry0gsHjmWF5MFQDwvpgng1+gvg7xdF4++G2m67bhQuq6fDe4UAhC6AkEjj724celc/s5
&lt;br&gt;&amp;nbsp; QV3tsfSyxSxMU0dN4W8RSRRv5ku51JEbEAmPPXqPSs74gfEwRW0y20oXYoVN3JBHqfrWNpTy6Xp7
&lt;br&gt;&amp;nbsp; y3BVUBZyc4YcfzJrzDx14pFyl1JI7eTFknnJ6/8A66iKtK19DONRbvoUviV8URDbyS3Myg4y+Twf
&lt;br&gt;&amp;nbsp; p7V8w+MPiWPGfiprPTpXYqcMV+oycj64rlP2hf2gLnxV4zn0bwfJKdjbZWXkIOgUCuy/Z3+FFw2L
&lt;br&gt;&amp;nbsp; rUo1Ms6g5ZuR/UGt4UZztZaFurd37n0X+y/4attM1iyXWbeGy065I3TZU9uGdjyOlfXVpp/hqCwR
&lt;br&gt;&amp;nbsp; UurILGdzMJAMfTFfJbaDPo3h42rp5YZc7Ad27PGTXi3jPxN4q8D+IHk0TxLqcForj/RpJhJESewB
&lt;br&gt;&amp;nbsp; GRwexrrnQk4e67HTHExhHlmfop8SvjpoPgnwsLb7ZbGMIf3aBeSxPOQf0xXjXjj4reDPE3hePT5m
&lt;br&gt;&amp;nbsp; DSXUTGSVj/Ec9APwr4f+I/7TDah4WkivJ44b9T8odyy9eSDXi/j/APaS1O0tLaPQrySeaGMLuQnb
&lt;br&gt;&amp;nbsp; nGPxFckZSi9XqbRtVVj6p/ag+H/hnw98M7zUvDk0Ed7FEWKK2RJgdMZ618p+A/Hx0/UIwzNAp4x/
&lt;br&gt;&amp;nbsp; dyc1ymk/EzxF4uBXxHeyzxsTtjHCimalqiWc+NrbmPPHQ1pWlNrXoZKMYN+Z9XeC/jBqmm2UXlaj
&lt;br&gt;&amp;nbsp; IYxgqN3GPYV2GnfGO5utSR533PkZbrxz1FfJ3w5+J7Ss1jNJGXyfKYr8zADkfgBXa+B/GbXmvJCW
&lt;br&gt;&amp;nbsp; OXJwM/MMDkVjCtJ25jKpR0dj6N1rWo5fET3timZNY0e5t3QHBkljUsnPY/NgVgReHdP07QdFtNIs
&lt;br&gt;&amp;nbsp; FhtILCJZY3Zwxdcqck4DZZWORyQelcjLd3HiG08uzmW3nhtZirbsFc7e/qc4zXUSahe29rpUcF/f
&lt;br&gt;&amp;nbsp; 2jBFicx3DL5o2McMoIB59QarGcrhyN7ny2cVFTpKN/ebVjR8MeGoS80ulC7dLWTEgyfLRyc7QSMM
&lt;br&gt;&amp;nbsp; AQeB0pL60ebUrh9MkmcSSM03kliqHP8AFkYB5PH5VnyW91ql9HbatcQXSQhXVp4vLEWGGWLRFD14
&lt;br&gt;&amp;nbsp; JJ5ya1dV8bajfapPD4g+1XggkMSNHdlz5angJHNjACngb+9c6p0ZYV8ndb7bM+TqVYyjpe/mQS2K
&lt;br&gt;&amp;nbsp; X9uptgElidYz5rLyMnO4gDP45PvVLTdIa2njmsJEgaF8PsA2yJyMEAd8dfrUv/CT6HDG32+VtPLP
&lt;br&gt;&amp;nbsp; kvd28sTY5ADlA6cnvuHarFrLDvd/DTWd8lu7eaRcJKoUc4Ow579DzXJGlOWyuvLU891q8lf8iMaO
&lt;br&gt;&amp;nbsp; 012zS6jM5OWbzkLCMdW+UHJHoAM1y0Hjr4eCFN/irTYjtGUfRwGT2IY5BHvz612msxSy6tYw+NdN
&lt;br&gt;&amp;nbsp; 0/w3banZzXNteyXct2blVlBWRYWkIhGNyAqA2Bg+9PSvAeh63pdte2Xh+CeG7iWaOQT2C+YrAMGw
&lt;br&gt;&amp;nbsp; 9yGGQc4YA+oB4r06eDdP4dfwPSjGpBK7v8zwbTNcg0mSV7DzopJFCr5kYxEBnOR1GcDtXQeGvE8W
&lt;br&gt;&amp;nbsp; rxXS+GkjYtj7VJD03KSQVJHBx19cVxOmmDXvOk1S48yeBR84Q/N2G/bx0HXtirOmaxLo+pxyS28l
&lt;br&gt;&amp;nbsp; pbzOY45VHmKB2JYDvk9T3ryY05JNnRKjUUk07o3NXeLUreaNruT7XAzBSYckZ6dRg559asaX4y8S
&lt;br&gt;&amp;nbsp; z2VpZeJ9UuLiGwuI7i184BfIZOVO4D5x29s9abbakmlX0MVzczaja3p8xWZEMQH+8OeKgvvDvhzx
&lt;br&gt;&amp;nbsp; Pq00tlHfia2bMU8E7ltvTC4xuGeMFTWtOTTu9yKdCom3fU9Lsfib4hQQNPLbT2rMxnhNsokcrnJy
&lt;br&gt;&amp;nbsp; vPAOM4PTNdNZ6R4e1O4muLDU9Q0PzAGVjcMB9CylSQSe/wCteS6f9msp3htUnWUoVCs5YMFH8RYk
&lt;br&gt;&amp;nbsp; qc9RUWp+PdPsbiOOIyByoZuTsB+mOOPWrhialFO34nTRqTpp3Nn46fD+40bwVfXFvdJqavsdXiAL
&lt;br&gt;&amp;nbsp; ON3fuc5P1NfYP7E2qtefsn+FVuVKtDDNb7emFWeQAHPQ4x+lfGlpey63ZoZrxlhjk3qjSAo2QMAD
&lt;br&gt;&amp;nbsp; POev4V9Tfsa+If7U+C13bSjyZNP1OVQMn5lcBgVz0HByPXNdVHEfWaTXKfR5RiOdOMtz0vxjrph8
&lt;br&gt;&amp;nbsp; Lyi2Y5VWz6g89PpXz38UdZlb4d6ilpIfOkjZwwH4dfrivY/Gtyn9k3G6Qbn7BuDj0/CvKJdFNzZz
&lt;br&gt;&amp;nbsp; W1xGxifcu1hnAPORntzTS6npVNNj4z8ATR+E7T+2tetxc4mkkuv3ZZwVc5wOuMDNfQ3we/b0+Flr
&lt;br&gt;&amp;nbsp; dQ2VrdrfXL4+RIiAc/WmaH8H49J12+s5ogbS6k8xdy5wTwcemfSvLvjn/wAEy7m38U/8Jl8AJo7V
&lt;br&gt;&amp;nbsp; 1ZZbvTnGI3YHLGPAOwkDPpk9q7cLCNT3bmdSbc1K2h9gXf7YHg3UtGBgsZPKckMWYKAMfXivJ/iN
&lt;br&gt;&amp;nbsp; 8RfA/iu2la2hkeZsgSRXWCGx0P0qP4Dafp+u+GLzR/E1s1vrAs2f7NcxhJN6NhsKeqlSpyM+tenf
&lt;br&gt;&amp;nbsp; Ej9lHw/aeJfDiQW9rHFqKBHZUXauYt/GM88Hn1NCqwUuR3TOibpq3O9GfDvj/QdE3ytYXeoMGJ5c
&lt;br&gt;&amp;nbsp; h/y5FedyQacHYyeZMuMgt8ua+y/HH7Iulap46kjs2eOzt7Z5ZPLPCgHHTPGSVrwjx/8As12Wk+JN
&lt;br&gt;&amp;nbsp; RkspNthBbeapfqHycKPUcfrWdaULJo3w2Lw00ouT2OO8PfEjw74YtU3WKuxU5ZiM+9YPir4jaL4n
&lt;br&gt;&amp;nbsp; YnRniSQfewQTx+lcJ8crb+x7a0tdLkWa8ZQWSMZMRb1x7Vz/AMNfhDd3F0J9YZkiOGxggv0P5Vca
&lt;br&gt;&amp;nbsp; aqw9o5G06kIzUaUb93semeHraVNTsrq1J3m7TYo68tg5x14JFeo+GrkR/ECJIHKpHJvkKjOVwcj8
&lt;br&gt;&amp;nbsp; elZHhzRIdLsG1G4ESw6cMRqR1fGB/OpPCwaXUzcTnbPcOS2OwPb8q4k3Ofc0pycoSk+x7/8ACqMX
&lt;br&gt;&amp;nbsp; 2refIgcLC5TdGsgBXHVW4btx710viC8m87TJ7aztZ/OmYyxASRzMQjYZAxdVI542964z4a2er6h4
&lt;br&gt;&amp;nbsp; dlufCllc3T2zDdJFEXEXcA4IA3Fe/BFXIfEXie28UIfGFksU6xrJBHBcfNtZSAFEnbrnnr0q66qK
&lt;br&gt;&amp;nbsp; tG21up8HnMXUxHuvY6tkt9St2tNcj1ayhuVO+C5tlmjfPA3eUxJ6jqoI64zVbQdPj0W0jsrEWrxq
&lt;br&gt;&amp;nbsp; StvDGw8wgHssm2Ru5xjNVNL8UwW1xeRW/wBskMedoBUy7s9WJ2nr6En0Fby63Bd6X5eqRT3RXaqW
&lt;br&gt;&amp;nbsp; 11GXYrz/ABdOa45VHGHs6kNN9DxalGT0WxhfESOfR7Rm1GGe2dpEUF42jGNy/Nz1FXLC/wBV0e5h
&lt;br&gt;&amp;nbsp; l8G+JJrCBHaRIhbxTxO5XG5klRgxIyAeo3HBBpPEraRa6E1rBLfaZKjRMptLpkHmmZc542EbeSGB
&lt;br&gt;&amp;nbsp; HHStaO1u2t2j/tHTb/epw9zpwEz8ZGWhEeOxBx35zSg404KVOXK7vVr/ACON4Zw1i7M5W2hvbWSC
&lt;br&gt;&amp;nbsp; 0GsXNykR4hkk3jbwD+6kLgHnrjmqZ0uBTiTT7LcOv/Evsjz+C10st9clA19olzE8ZyZLWdZQvY5V
&lt;br&gt;&amp;nbsp; 4weOvLUqXenhB541Ivj5iLSLk9/+W9Cq1024zvfz/wAzG9Vfa/H/ADPAV1X+w7h49OjaJIwDuEAb
&lt;br&gt;&amp;nbsp; cW6ggEHg9jmpX8aw3VqIBa6jDeeftl3L5YdiTkjf93j8qoahBb203mrdYkSPCYYKJGJBznPJ4PPa
&lt;br&gt;&amp;nbsp; tfw7cXWs+HrmdJhPYI6i9Cah5X2hs4Cs5GSwwflByfWsHNx1sfRqrK7ikWQ8celQJqdnPbogMp3O
&lt;br&gt;&amp;nbsp; GjC55wyDAb0ODS2OuXGmIsdhqyK07lkW5AdInxlVDJyCQemOa54S2mheKbb7Pf3zeUMqpT9wA3BV
&lt;br&gt;&amp;nbsp; srg+n9a7CHVYLzX3aG0h8orhmWFStuAcqNvXHUjHTNOVVL0M1WUuhqaDqstpATqHl+fMm95wgkV+
&lt;br&gt;&amp;nbsp; SDtzg5z1/CkvbbRb+bzr0x3Mkx2kTQbXjA9ADjGcD1qnYqNRDPeWjtCCUHkyOqbDwScfdJIFXtD0
&lt;br&gt;&amp;nbsp; u20izMNpBNNDcn5GkfzfLOT8pY5PY8msozcd9xe15VoylFHpNl4rt9L+x3se5d1vcJbOyseAVLDP
&lt;br&gt;&amp;nbsp; XOAO/rXvP7MN1N4F8V6hpV/fPOur26sqk/LHLGWYAA9CVZ8/lXmem2726JZfM5uCVhSIMVYjlmJA
&lt;br&gt;&amp;nbsp; +UAHqa5bxL8SW8CeJIY/BdxGdRgfcA0+5gV5xtzwMZz+NejTm7cyR7OXyk5KzPrjxRbyajCRbXD2
&lt;br&gt;&amp;nbsp; 8sEm7hQRIoOSMHtiqeh51ZwyJsOcvnGQDnAx+Vea+Evj7D8QfC1pqUUcsRvmePeoPlGWPiSNGIAb
&lt;br&gt;&amp;nbsp; aSvTPBHtnv8A4eeKLedsyuRJKAXzjg9BnHfFdLhNdD1lPmdmaXiTw1HDbpc+QQ8R2khRlh1FdF4P
&lt;br&gt;&amp;nbsp; gVreRQuI3APlsOSMDj860xZrqGl4ZwRgbST1/wAai8PaYzK5IIKjHfnnHB9sdaIS5DvjCL0sYHiz
&lt;br&gt;&amp;nbsp; wZpGqFrjUrNJAitGJYVEc0YIwQHGDz9a8M8ceGBpHiLSrrwp468ZafDo5Y2trc3Au7WMkFeUcZIw
&lt;br&gt;&amp;nbsp; xGCa+hPF2kXC2kgjDoTwOeor5w+M+l62kN0IbUtHj5SoJz7Y/GuxT517243UtpON0cDrnijxrPr9
&lt;br&gt;&amp;nbsp; 2E+I9jaRNC6MsWmKqzRkg/OCTzlR0ryjxJpMlzfXEvjbxjq+rtcpseGzK2kLKCSBgDP8R54Naviy
&lt;br&gt;&amp;nbsp; XVVbyxaZQZDEDrz0rmX8P6lqc5mS0MKnJOBgkjvWU5qNvdO2hDDrW34Ij/4QnRxm5gs4xI5Byfnk
&lt;br&gt;&amp;nbsp; fjjcx61ag8ItLsjhDb3P8OMAf5/Kuk8K+CJ7u3DOrssYLOx6E+n4U/xgBo1qzW4UTohZFX36VlOq
&lt;br&gt;&amp;nbsp; 57mVScXNJHJeKLzzb9NPtWxZad971ll/DsKt+Gl2SK0Tbyz/AHiOVz2xXLNP9nwVHU5K/wB4k/41
&lt;br&gt;&amp;nbsp; 1fwsiW88UW0FxsHmNlvmClsAnaCe/FZ4WnJuyLrTVGld7I90+FX7XT/s3aHBpd54btdYttUuVklY
&lt;br&gt;&amp;nbsp; TPFdKSNuQTlCoGeCB1PNer6f+1d8JPi/A0GvB9NkhDZk1KMRxrjrieMtu/Svn3xz8NJfGOuaXcWo
&lt;br&gt;&amp;nbsp; hkjjmE8dvG6+Z5Kj5k+ZgWCtjJA7dK4m6+BOv6PoF7BNaXIedFSOVCGBdsE9DkcLjn1r04ycou7P
&lt;br&gt;&amp;nbsp; z/ETdWpKfc+vda+D3hvxWlve/DfWbS+jLKAjagkiuAd2EdcMpPHY1ynifwVrPhSTzPGlvrOm28KZ
&lt;br&gt;&amp;nbsp; MxU3Fsq9GIk4yOeAcHFfPurWlxovhDR5pC7C4kn85pgFZGGNoIPbAbnnGRUmh/FTxr8NfCd5qPw9
&lt;br&gt;&amp;nbsp; 1fVdMuWvIbfbHdu8Up2PI6hc7V4C9vWs54OlX3un5HNOHMj2jX7vw5cWQTwzfTancebG+9IsKmCG
&lt;br&gt;&amp;nbsp; IPUc+lVL6y1O5/494VuJCrFm+VFTcevyEEkDj+led/Dz9srxP4w8RXNn480HQNcSKCS5uW1DSYB8
&lt;br&gt;&amp;nbsp; qqTxNGivnI7nvXZaX8eNH8QwSza14DmtTcurTT6Lrk9psztUERSCWN8HA/hHHauOWWtx5actPM5l
&lt;br&gt;&amp;nbsp; RqR15r+qNq6muLHULGW41u30y1bEMlsMSNdSHhEVSw25x6E0p+IQiJX+1ofl45sTmoH1rwTd38ln
&lt;br&gt;&amp;nbsp; Y694usJoCwZ9R0iC6gGDwZJIpFb0H3TWv/YWziLx74KKjhS2mzgke/NcryyrF7XF7HnXvo+YrWWy
&lt;br&gt;&amp;nbsp; 8PX+pW2t3CXL6dcG3jKTRGCTaSrAHJDcgYIJz6mrljY+GfFl41vfXkujnb9oEsMTSmLA4KKOp/xN
&lt;br&gt;&amp;nbsp; cb4H8feI/Ddm1noHhqx0ZrsSSDUjAsplBIIjVJcogyMbkUNyQCBXWaRrw0W8+3avJpdrdp8s9vao
&lt;br&gt;&amp;nbsp; h2kjkDHA5YfMvvXfiMPCGqfU9WMYzhys6m61DT/D3h6CGOyudQnaJo/tc/zRSM38TjHBxzjFVLLW
&lt;br&gt;&amp;nbsp; J2s4o9Ni0Py9rB2eXbcpjqgwRkdTg9M1Vg1n+1daiQWkupxToU8qOAu/TnYwOCenbNbN5b6J4b8H
&lt;br&gt;&amp;nbsp; y694ut7rw/Bp8bj7U8bLzxwY5Mhj8wx65rlq0IuPMovmvpYc6CjFtPZGno99HFBHJfW+nWUdtGZW
&lt;br&gt;&amp;nbsp; 3XoEcIzyzFuoxjqTXjfxa/b10PwRfXVh8PNMsvEsyABJpy0djFIGzuCqQ02Pqo+teA/Hz9oC4+JW
&lt;br&gt;&amp;nbsp; ryxaDJdw6MGxGkrDzJwOjSAce4AAArzOKN7mXOdxPPFenh8lpxlzVbvy6HByR6Hrvj79tDx98Sbl
&lt;br&gt;&amp;nbsp; v7Z16SCAgIttZxi3giX+6qJ1HuxYn1qx4K8dTW+lv+/2S3isGkK/NyeQvoWrySPR2zvnZQuRxnJr
&lt;br&gt;&amp;nbsp; Zs5xEI/KkYFW45JxXqToU3FRUbeh0UazpvyP1q/4JveFdM+JP7A0Ft4mga7Sy8Sag4P3ZIWKREFW
&lt;br&gt;&amp;nbsp; XkNgnml1lNU+C+vMitPqWjuwMcxUCaJewkx17/MMfSpv+CNF1Jd/sX6rJcx8DxLKxGc8NbQdR+Rr
&lt;br&gt;&amp;nbsp; 2Dx74Zg1YSr5aFVz94c4zzXkYhSpV5rzPq5pSoQqR3aMn4e/G631/TfLt3jkG0KxJG6I8n1/Su98
&lt;br&gt;&amp;nbsp; M63b3TM5uMIArNhuhyOv+HtXyl4j8E3nhXXXutAmNsc4+To/sfUcVueH/jPc+EpJE1RCrShSzg5T
&lt;br&gt;&amp;nbsp; J6/QjrisuRXbMoYlxdj62g1m31S323OwNvIHv6HBrkfHulaJ9jkEyICikkkggk9/avGNR+PQmhWS
&lt;br&gt;&amp;nbsp; xnm2quMIcg55yeK868ZftCzzs4N0yRgksM/eHoR604pQeh6CrxlG3U7rxD8P/D15qcjy3CkTNnbn
&lt;br&gt;&amp;nbsp; G30GT06HiszV9B8OWsYit4LEhvm+9nPUcnNeI3vxje8YtNMzFeQQcA1xfiD47v8AaD5DkGMEBs5G
&lt;br&gt;&amp;nbsp; R3/nTddQdghGVXRHt/j670/QrE2mklYhH8zFDx9K8X8aa8Jg0gZevbnj3rA1j40yalaAGUsWHzEn
&lt;br&gt;&amp;nbsp; G49xxVTwxv8AFniCOTVCWgiYMI+isePvY61F76mqpunuch8SfiDaeA0juNTjnH2wN9mAQ4m2kBiC
&lt;br&gt;&amp;nbsp; eMAkc+9c38Of2w5fCPiOL+1NKs57FZhLllJlXnqGz1wT0ra/4KIKJ/EHhOGEhVi02aQKOigyjj/x
&lt;br&gt;&amp;nbsp; 2vnC3cNLhzkGvWweHpwSmo6s+YzbH1a1R0W/dR+ofwR8d+Gfix4Q0/U/Dd9uk0+Z2MUMge4G9iWW
&lt;br&gt;&amp;nbsp; RWOcZOfTp6V22v6XFMNTurfUrhYy+5I/sw3PxwMqQB39a/KXwn4u1r4catDq3hS8mtXt2BV4mOUP
&lt;br&gt;&amp;nbsp; bI7jjoa+1v2av289H+KqWGifEVbfSdeZwv2lsR2N7jgBs/6pj7/KfajEYWycofcedTqczPorVtNt
&lt;br&gt;&amp;nbsp; JvANjavFEbzV4orh5Xt1ZYIgWGz94rZ3Y5xjiqPh7wHp1p4I13w9eNGmjas0ckqRWKGRJk+5LExb
&lt;br&gt;&amp;nbsp; IYZIrpdb8L3moCzYyWMSRxkNvmWOOMZOMt0xjuPWptC05nkeC0vtMuSp5jjuA0hPTIHXHWuCNTkT
&lt;br&gt;&amp;nbsp; s7HTJKbvY4vSvgJpeg2V6fCV/dzfaozbTPeQxKfnHQMg4GAeoz71zvh34A3mk+L4Y9KuoFsop1mM
&lt;br&gt;&amp;nbsp; cxZVm/jbL5YdVyM8enWvXfG+nNd+CwIkghv5L5NwSfehVcHBIA+YnkVDaWC38kk1xdRW6qhM29gZ
&lt;br&gt;&amp;nbsp; CoU4VFXGSTxngDOc1DqTi730EoQlozxKH4cap40luNLh8Q+HNVsLjVGnli0+4U3bQlwWhYOFfhsg
&lt;br&gt;&amp;nbsp; kA8DitbVtC8V2mq3MWk+Fb6a1ilZIZBNFiRASFbk9xg1V0TQNf8ABuuSarr8ukxaNctMIntIJGkj
&lt;br&gt;&amp;nbsp; lzuAZhkBir8nOOKuDUJJBuEmtuG53C1f5vfrW6cumpz8qWljzi6+HN7FbW0viPWDq+wZ/wBNtVZb
&lt;br&gt;&amp;nbsp; fB5wI+PpnNWpdFtNQZ9Sto/tE3mBEfySoIUk/I3p7e/SvePDf7Nlrpmj3L6+YppbyRkiG9vLQg5Z
&lt;br&gt;&amp;nbsp; 0jU/M/Q8gL6A0+H4AzwaJqH2rVNNhs7MrclpBFb4TdzJNMygxqijOMZPrXHPD8yfva/5nUozg9Nf
&lt;br&gt;&amp;nbsp; M8O8VaI/gnR38QeIUjtdFt0/0kG5HBPO4LhT8w4xnOSK+Rv2i/jpf/GDV9tqsun6Bati1szKXZ8c
&lt;br&gt;&amp;nbsp; CWUnlmI7dF4xXo37SHxfuvinrLW2jz+f4U0y4kazRF2peuCQJ2A/h67Aeg56nj508X6sZ7t44hgh
&lt;br&gt;&amp;nbsp; iPc16mDy76r78/i/T/M4K9b2srIzktzdTgL0HU0++uVtQYrfAK/ePpTTMLe3QL94jkgdas6PoL6k
&lt;br&gt;&amp;nbsp; Q0hZVPzHK5r0Uuxi9VYpQtO+WTJA65rb8CadJ4g8RxQy5EMfzyEH+FecVPrMK29vttwMnAwFxmum
&lt;br&gt;&amp;nbsp; +Dfh7yLHVLyQEsFVFPpnOf0xXdgML9Zrxp+r+4yqT9nByR+on/BFu8W8/ZL8UyyEFpPFMsYQfwBb
&lt;br&gt;&amp;nbsp; WDOB7/0r37xdaPaKJN6MhB2g4PX1NfPn/BFd4ov2QdVit2Xz38TXcky5Gf8AVxBc9+in86+lvFUC
&lt;br&gt;&amp;nbsp; 3do8U6LwvJIB57Gvl8y/3uo/M+0oP9xBeS/I8T8Saabi5aG5QP3OV5HHauN8U6csVhLEYyAy8qyd
&lt;br&gt;&amp;nbsp; RmvYYvDztqiLOqyfMW3YP+fSk8Z+AYhZSEZDqvKlOTWKtHoc8oPVo+JPGceoaXfySeH5rm3TPCbj
&lt;br&gt;&amp;nbsp; tz24Neb654n1C3kIvt0jyH7v+FfVfjvwTDFFcSyDyoxwNy4/HBr5k1jTP7T8WTvOV2xvgfLj9O1R
&lt;br&gt;&amp;nbsp; USRth/edn0OZutbvDbsTEyM3fP3a5jUr2a6dgWOR1xz1r0DxpaGLTmZECJgDPrXCpahWIAJPr61j
&lt;br&gt;&amp;nbsp; bm2PWwsdOZjbO0KNGzfPtA7dya9M+Hqi2uFRlOOMZ79OlcDpkJ3Iwb3Neg+FZCQJJOduOAetVFvX
&lt;br&gt;&amp;nbsp; qbyS3POf25JjP488HyMuUkspYhnuBLz/ADr5y1SzOnavcwAZ8qRlXB7Zr3n9r7Xh4h+JugW6niwt
&lt;br&gt;&amp;nbsp; mU4/hJYH+WK8Z+IVqqeJZniGN2Mj04r6PA03LCKXW58BmFRfWpL+tCDw5cgXuyfLRSAowz2NM1bT
&lt;br&gt;&amp;nbsp; 5vDOpfu24Yb42HdTUGmcSDkjnrXazaIPFnhtEB/0q2XMbHnI7g1tE49tT2v9jr9u2TwRJb+FfjO9
&lt;br&gt;&amp;nbsp; xqvhKcpGkhc/aNJOcb4mzyvPKMCCOmK+5bPwzeXF+zeBbiHXtDmtWlguLHMkzIw3fOmORjkFSehr
&lt;br&gt;&amp;nbsp; 8eQklnOQAUYHnjpivrD9gP8Aaobw/r8HhfxteTR2crK2n3e4n7DL02NzzG2enbtUSwtLEX93XyNo
&lt;br&gt;&amp;nbsp; 1pJaM+kfEnxHgg1G0MD3rx+Zh5II3AhK/wALgDnJ7Dpitnw34tHiTU4Ev58+a2NoYBmGeCQeT1r0
&lt;br&gt;&amp;nbsp; a5kHj3wlqMGhPFa60uxwkzloZWyxBR8blDDAJGcHrXE+HPBjQa2yeJbRba/CbthCyAHqCrrww46g
&lt;br&gt;&amp;nbsp; 15OKwcqF29jqpVlNtPcseJL2507w/fw+HtOk1eGCTD28Kku/ynGNoJ3cHtXj83jbx/PKz2nw91aO
&lt;br&gt;&amp;nbsp; JyWRJJlDqp6BhkYOOvArr/GHxZPg5Li00G+ey1OSFgGtpAhVhwN/oMliBXjr/tYa3E5VtfuGKnBP
&lt;br&gt;&amp;nbsp; k5z78tWcIO10RVlFv3T7W8Ra9q2pxxzWb+ctqQFdrdXbgdA7YPQdQPxrwT9sv4qWl9HbeE7FdT/s
&lt;br&gt;&amp;nbsp; 64j8/wARxwXBiEpHzLAJBnYSMOwHbaO5r6d8ZStajTVtmaNXliRgpwGXd0OO3tXwB+09eTS3OsvL
&lt;br&gt;&amp;nbsp; LIzSXdzvJYkt+9YcnvwAKnI8PzV5Tb2RhiZuMVZ7nzh8VfG1mDPD4fhNvEzny1EhbYueOe5x3rzT
&lt;br&gt;&amp;nbsp; a08pdslic5q54nJOpSAnPzUzSAH8ncAcnv8AWvoZyc5amEHZF/Q/C8+oTK0yMIyOv+FdWbJLCFY4
&lt;br&gt;&amp;nbsp; Ae2S3U1p6coS0AQAAelU9T/4+Ix22V0xprlYN9TD1K3824LjG0Dt3rv/AIW223wJdOcb5pXKgd8Z
&lt;br&gt;&amp;nbsp; A/lXB3gxGxHXFek/CjnwGM9kJ/8AIj162SRTruXVJnLipuNP7j6o/wCCOPx0Twxr/iLwlqUpSG+m
&lt;br&gt;&amp;nbsp; F1CC3HmYCnjtX6G6nFb3qqybkxkgg5BBr8cv2KbiS2/aMiNu7xkuMlWIzX61+DpGk8MWpkZmOOpO
&lt;br&gt;&amp;nbsp; a+Mzaio4icutz63AVXOjBPsbMFnBaXHmNzuIzx8wqv4utI7zSJASGZgWz1HrmnuxFu+CeFXHtWbq
&lt;br&gt;&amp;nbsp; bmXT18wlsoOvNeeux1N+7Y8J+NtlE2lus2fNYNHtzwQR0+mK+WbXRG1DW7toldl81sso5OP6cV9V
&lt;br&gt;&amp;nbsp; /Gcf6BKfSV8e3NeDeE41E12Qq5EjY46c0TjfQdKXKzzL4h6ekMZRGY7udrDjH0ripNOW1UlCST0D
&lt;br&gt;&amp;nbsp; DivQPiic6oc/7Ved6hIxuRlj+fvXI5crSPYw79wS3RYDltoDdP8AZq9/wlSaVYFoyNyDnnqKxrw4
&lt;br&gt;&amp;nbsp; jOOyZHtWFrzkWUuCfz9q6qNNTZxYzFShCSRxfijUX8ReOZLuYsRD93nI69K5Pxk/2m+leQYJb8q6
&lt;br&gt;&amp;nbsp; OD78p7knPvXMa6M+YT/eNfX0aSo4WMF1PhKknKrzPcz7AZ/1e7P867fwdeGDycswPTHtXGaHzMM+
&lt;br&gt;&amp;nbsp; v9a6rQz+/wDoa5aau9Sy74t8Fecr3NqpAY5OOnNc1o0U2nXhO8wMjA5zzxXqMyj+xgMDHl5ribmN
&lt;br&gt;&amp;nbsp; WmUsqk5PUV0QSkrkJ2PtH9lz9rhtR8C2dv4lt7e/vNOmVZi4xKV27QyuOcMFBOehHGM19VeE/iF4
&lt;br&gt;&amp;nbsp; R8W2kU5aK11CRCpS7iSRFDDBdWJBU9sjrX5ufs8IF8ewIoARojlccHj0r6u0VRbWFm9uBG7NgsvB
&lt;br&gt;&amp;nbsp; PzeorbljNNSVzVtqzR6F8V/B6aZ4akkOn6St156+ZcWSf65OcEF9xDcdq8tT4S+H50Dvo8TlxuLP
&lt;br&gt;&amp;nbsp; MdzZ7njrT9N1a6u/ibfWt3c3Etqu8iF5C0Y5PRScVtknPWvnMRTjQqNRW5tC89Wz/9k=
&lt;br&gt;X-ABUID:92572CE0-933D-4A89-B681-AB2B8815ECE3\:ABPerson
&lt;br&gt;END:VCARD
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;PGP.sig&lt;/strong&gt; (210 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/25888894/0/PGP.sig&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ISWC-Tutorial%3A-Working-with-Explanations-of-OWL-Entailments-tp25888894p25888894.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25884260</id>
	<title>CFP: Visual Communications and Image Processing 2010</title>
	<published>2009-10-13T19:03:02Z</published>
	<updated>2009-10-13T19:03:02Z</updated>
	<author>
		<name>Dacheng Tao</name>
	</author>
	<content type="html">================================================================&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;* We apologize if you receive this CFP more than once.&lt;br&gt;* PLEASE CIRCULATE this CFP among your colleagues and students. Many thanks!&lt;br&gt;

================================================================&lt;br&gt;
&lt;br&gt;Call for Papers&lt;br&gt;Visual Communications and Image Processing 2010&lt;br&gt;&lt;br&gt;11-14 July 2010, Huang Shan, China&lt;br&gt;Web: &lt;a href=&quot;http://vcip2010.ustc.edu.cn&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://vcip2010.ustc.edu.cn&lt;/a&gt;&lt;br&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25884260&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vcip2010@...&lt;/a&gt;&lt;br&gt;


&lt;br&gt;Hosted by: University of Science and Technology of China&lt;br&gt;Co-hosted by: Microsoft Research Asia&lt;br&gt;&lt;br&gt;Visual communication has become an important engineering area that attracts interdisciplinary research interest &lt;br&gt;


&lt;br&gt;and has lead to significant developments in technology and science. This conference is designed as a forum for &lt;br&gt;&lt;br&gt;presenting important research results. Original and unpublished material of novel techniques and new developments &lt;br&gt;


&lt;br&gt;are solicited on the following and related topics:&lt;br&gt;&lt;br&gt;1. Image and Video Coding&lt;br&gt;1.1. image/video coding algorithms&lt;br&gt;1.2. perceptual image/video coding&lt;br&gt;1.3. content-based coding&lt;br&gt;1.4. error-resilient image/video coding&lt;br&gt;


1.5. scalable/layered coding&lt;br&gt;1.6. distributed/multi-view coding&lt;br&gt;2. Visual Communication Techniques&lt;br&gt;2.1. video transmission techniques&lt;br&gt;2.2. QoS issue&lt;br&gt;2.3. wireless video&lt;br&gt;2.4. Internet video&lt;br&gt;2.5. interactive/broadband video&lt;br&gt;


3. Image and Video Analysis&lt;br&gt;3.1. image analysis&lt;br&gt;3.2. image sequence analysis&lt;br&gt;3.3. web-based image and video analysis&lt;br&gt;3.4. object segmentation and tracking&lt;br&gt;3.5. statistical models&lt;br&gt;4. Image and Video Processing&lt;br&gt;


4.1. multi-resolution processing&lt;br&gt;4.2. multi-modal media processing&lt;br&gt;4.3. web-based image and video processing&lt;br&gt;4.4. restoration, enhancement, and noise reduction&lt;br&gt;4.5. sparse-based processing&lt;br&gt;4.6. adaptation/transcoding&lt;br&gt;


5. Image and Video Synthesis and Rendering&lt;br&gt;5.1. stereo, multiview, and 3D (virtual reality)&lt;br&gt;5.2. synthetic image/video representations&lt;br&gt;5.3. graphics techniques in image/video representations&lt;br&gt;5.4. audio/video integration&lt;br&gt;


5.5. image/video conversion&lt;br&gt;6. Implementation and Applications&lt;br&gt;6.1. VLSI implementation&lt;br&gt;6.2. system architecture&lt;br&gt;6.3. soft radio technologies&lt;br&gt;6.4. video and home networking&lt;br&gt;6.5. video and e-commerce/m-commerce&lt;br&gt;


&lt;br&gt;For paper submission, please go to VCIP’2010 Web, &lt;a href=&quot;http://vcip2010.ustc.edu.cn/submission.htm&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://vcip2010.ustc.edu.cn/submission.htm&lt;/a&gt; and submit up to 3000 &lt;br&gt;&lt;br&gt;words or four pages papers in PDF format by Dec. 6, 2009.&lt;br&gt;


&lt;br&gt;Proposal for Tutorials, Special Sessions, Panels and Exhibitions VCIP’2010 will include a number of special &lt;br&gt;&lt;br&gt;sessions. Proposals for special sessions should be made according to the guidelines in the VCIP’2010 Call for &lt;br&gt;


&lt;br&gt;Special Sessions (&lt;a href=&quot;http://vcip2010.ustc.edu.cn/special_sessions.htm&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://vcip2010.ustc.edu.cn/special_sessions.htm&lt;/a&gt;) and submitted by Nov. 7, 2009. All papers for&lt;br&gt;special sessions are submitted as regular papers for review by Dec. 6. 2009.&lt;br&gt;


Tutorials will be held on July 11, 2010. Proposals for tutorials should include a title, an outline of the &lt;br&gt;&lt;br&gt;tutorial and its motivation, contact and bio information for the presenter(s), and a short description of the &lt;br&gt;


&lt;br&gt;material to be covered. Proposals for Panel sessions should include the title and panel list. Proposals for &lt;br&gt;&lt;br&gt;tutorials and panels should be submitted by Jan. 25, 2010.&lt;br&gt;VCIP’2010 will also feature a demo session. Proposals of technical demonstrations should be made according to the &lt;br&gt;


&lt;br&gt;guidelines in VCIP’2010 Call for Demos (&lt;a href=&quot;http://vcip2010.ustc.edu.cn/demos.htm&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://vcip2010.ustc.edu.cn/demos.htm&lt;/a&gt;) and submitted by Jan. 25, 2010.&lt;br&gt;&lt;br&gt;&lt;br&gt;Important Deadlines:&lt;br&gt;Proposals for Special Sessions Due Date:                 Nov. 7, 2009&lt;br&gt;


Regular and Special Session papers Submission (3000 words): Due Date:     Dec. 6, 2009&lt;br&gt;Proposals for Tutorials, Panels and Exhibitions: Due Date:         Jan. 25, 2010&lt;br&gt;Author notification: Due Date:                         Feb. 14, 2010&lt;br&gt;


Final manuscript (8-12 pages) and summary (200 words): Due Date:     Mar. 14, 2010&lt;br&gt;&lt;br&gt;&lt;br&gt;Best Paper Award&lt;br&gt;One award will be given for the best paper. A photocopy of the researcher&amp;#39;s most current diploma and a letter from &lt;br&gt;


&lt;br&gt;the researcher requesting that his/her paper be considered must be submitted with the final manuscript.&lt;br&gt;&lt;br&gt;&lt;br&gt;Organizing Committee&lt;br&gt;Conference Advisors:&lt;br&gt;Chang Wen Chen, University at Buffalo (USA)&lt;br&gt;Hsiao-Wuen Hon, Microsoft Corporation (China)&lt;br&gt;


&lt;br&gt;General Co-Chairs:&lt;br&gt;Shipeng Li, Microsoft Research Asia (China)&lt;br&gt;Bernd Girod, Stanford University (USA)&lt;br&gt;Guo Wei, Univ. of Sci. and Tech. of China (China)&lt;br&gt;&lt;br&gt;Program Co-Chairs:&lt;br&gt;Pascal Frossard, Swiss Federal Inst. of Tech. (Switzerland)&lt;br&gt;


Houqiang Li, Univ. of Sci. and Tech. of China (China)&lt;br&gt;Feng Wu, Microsoft Research Asia (China)&lt;br&gt;&lt;br&gt;Local Arrangement Co-Chairs:&lt;br&gt;Yan Lu, Microsoft Research Asia (China)&lt;br&gt;Nenghai Yu, Univ. of Sci. and Tech. of China (China)&lt;br&gt;


&lt;br&gt;Financial Chairs:&lt;br&gt;Xing Xie, Microsoft Research Asia (China)&lt;br&gt;Bin Li, Univ. of Sci. and Tech. of China (China)&lt;br&gt;&lt;br&gt;Tutorial &amp;amp; Panel Co-Chairs:&lt;br&gt;Qi Tian, Microsoft Research Asia (China)&lt;br&gt;Béatrice Pesquet-Popescu, ENST (France)&lt;br&gt;


&lt;br&gt;Special Session Co-Chairs:&lt;br&gt;Kevin Yang, National Cheng Kung University (Taiwan)&lt;br&gt;Eckehard Steinbach, Technische Universitaet Muenchen (Germany)&lt;br&gt;&lt;br&gt;Demo Co-Chairs:&lt;br&gt;Shaoyi Chien, National Taiwan University (Taiwan)&lt;br&gt;


Ye-Kui Wang, Huawei Technologies (USA)&lt;br&gt;&lt;br&gt;Publicity Co-Chair&lt;br&gt;Dacheng Tao, Nanyang Technological University (Singapore)&lt;br&gt;Ebroul Izquierdo, University of London (United Kingdom)&lt;br&gt;Dan Schonfeld, University of Illinois at Chicago (USA)&lt;br&gt;


&lt;br&gt;International Liaison Chair&lt;br&gt;Zhihai He, University of Missouri (USA)&lt;br&gt;&lt;br&gt;European Liaison Chair:&lt;br&gt;Fernando Perrira, Instituto Superior Técnico (Portugal)&lt;br&gt;&lt;br&gt;Asia-Pacific Liaison Chair:&lt;br&gt;Jian Zhang, University of New South Wales (Australia)&lt;br&gt;


&lt;br&gt;&lt;/div&gt;-- &lt;br&gt;Dacheng TAO&lt;br&gt;School of Computer Engineering&lt;br&gt;Nanyang Technological University&lt;br&gt;Singapore 639798.&lt;br&gt;Office: Blk N4,02b-67&lt;br&gt;Phone: +65 6790 6250&lt;br&gt;Fax: +65 6792 6559&lt;br&gt;URL: &lt;a href=&quot;http://www.ntu.edu.sg/home/dctao&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.ntu.edu.sg/home/dctao&lt;/a&gt;&lt;br&gt;


</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CFP%3A-Visual-Communications-and-Image-Processing-2010-tp25884260p25884260.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25877403</id>
	<title>Re: OWL 2 is now a W3C Proposed Recommendation</title>
	<published>2009-10-13T10:34:41Z</published>
	<updated>2009-10-13T10:34:41Z</updated>
	<author>
		<name>Bijan Parsia-3</name>
	</author>
	<content type="html">On 13 Oct 2009, at 13:20, Bene Rodriguez-Castro wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thank you all for your comments.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Please note that the file you were using (owl.owl) is in the &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; process of
&lt;br&gt;&amp;gt;&amp;gt; being updated. Once that is complete and published you should be &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; able to
&lt;br&gt;&amp;gt;&amp;gt; load it in the editor of your choice and have the same experience &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; you did
&lt;br&gt;&amp;gt;&amp;gt; with the OWL 1 owl.owl file.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I was a bit puzzled not being able to find an OWL 2 specific file/URI
&lt;br&gt;&amp;gt; in the OWL 2 related documentation but not any more :)
&lt;/div&gt;&lt;br&gt;OWL 2 is *not quite done*. Yet :)
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; There are some people (myself included) who think this is not a &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; good way to
&lt;br&gt;&amp;gt;&amp;gt; learn or explore OWL (1 or 2). There was quite a debate about it &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; between me
&lt;br&gt;&amp;gt;&amp;gt; (anti) and Holger Knublauch (pro) recently which you might find &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; interesting:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.w3.org/mid/B6D22E33-5332-4CF3-8582-F6A033BE4C7B@topquadrant.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/mid/B6D22E33-5332-4CF3-8582-F6A033BE4C7B@...&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for the interesting thread. As an OWL user, my idea was not to
&lt;br&gt;&amp;gt; use the owl.owl file as a starting point for new ontology models.
&lt;br&gt;&amp;gt; However, I find it useful when it is open on an ontology editor as a
&lt;br&gt;&amp;gt; separate &amp;quot;quick look-up kind-of reference card&amp;quot; of the OWL modelling
&lt;br&gt;&amp;gt; elements (specially for those less frequently used).
&lt;/div&gt;&lt;br&gt;You might try:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.w3.org/TR/2009/PR-owl2-quick-reference-20090922/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/2009/PR-owl2-quick-reference-20090922/&lt;/a&gt;&lt;br&gt;as well.
&lt;br&gt;&lt;br&gt;I tend to think, perhaps wrongly, that such use is in the minority &amp;nbsp;
&lt;br&gt;(although people in that minority seem to like it :)). In Swoop, we &amp;nbsp;
&lt;br&gt;used to follow links to things like rdf:type to the owl.owl file (or &amp;nbsp;
&lt;br&gt;rdf.rdf file), but that process of loading the file cluttered the &amp;nbsp;
&lt;br&gt;interface and was confusing (since it wasn't clear if the rdf.rdf was &amp;nbsp;
&lt;br&gt;*part* of the model, or not). We switched to special casing those &amp;nbsp;
&lt;br&gt;links to pop up documentation derived from the OWL 1 reference.
&lt;br&gt;&lt;br&gt;In the end, I don't think these *.* files are the best documentation, &amp;nbsp;
&lt;br&gt;even as QRG, though they certainly can serve such a role in a pinch.
&lt;br&gt;&lt;br&gt;I think it could be interesting to have a version of the spec that &amp;nbsp;
&lt;br&gt;was, er, &amp;quot;inverted&amp;quot; from a narrative structure to a term oriented &amp;nbsp;
&lt;br&gt;structure. That structure would make sense as an RDF file. If one had &amp;nbsp;
&lt;br&gt;a good viewer, it might work ok.
&lt;br&gt;&lt;br&gt;And there's nothing stopping you from producing one! :)
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Bijan.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWL-2-is-now-a-W3C-Proposed-Recommendation-tp25566014p25877403.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25877210</id>
	<title>Re: OWL 2 is now a W3C Proposed Recommendation</title>
	<published>2009-10-13T10:20:24Z</published>
	<updated>2009-10-13T10:20:24Z</updated>
	<author>
		<name>Bene-3</name>
	</author>
	<content type="html">Thank you all for your comments.
&lt;br&gt;&lt;br&gt;&amp;gt; Please note that the file you were using (owl.owl) is in the process of
&lt;br&gt;&amp;gt; being updated. Once that is complete and published you should be able to
&lt;br&gt;&amp;gt; load it in the editor of your choice and have the same experience you did
&lt;br&gt;&amp;gt; with the OWL 1 owl.owl file.
&lt;br&gt;&lt;br&gt;I was a bit puzzled not being able to find an OWL 2 specific file/URI
&lt;br&gt;in the OWL 2 related documentation but not any more :)
&lt;br&gt;&lt;br&gt;&amp;gt; There are some people (myself included) who think this is not a good way to
&lt;br&gt;&amp;gt; learn or explore OWL (1 or 2). There was quite a debate about it between me
&lt;br&gt;&amp;gt; (anti) and Holger Knublauch (pro) recently which you might find interesting:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  &amp;lt;&lt;a href=&quot;http://www.w3.org/mid/B6D22E33-5332-4CF3-8582-F6A033BE4C7B@topquadrant.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/mid/B6D22E33-5332-4CF3-8582-F6A033BE4C7B@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Thanks for the interesting thread. As an OWL user, my idea was not to
&lt;br&gt;use the owl.owl file as a starting point for new ontology models.
&lt;br&gt;However, I find it useful when it is open on an ontology editor as a
&lt;br&gt;separate &amp;quot;quick look-up kind-of reference card&amp;quot; of the OWL modelling
&lt;br&gt;elements (specially for those less frequently used).
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Bene Rodriguez
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWL-2-is-now-a-W3C-Proposed-Recommendation-tp25566014p25877210.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25860309</id>
	<title>Re: OWL 2 is now a W3C Proposed Recommendation</title>
	<published>2009-10-12T10:49:59Z</published>
	<updated>2009-10-12T10:49:59Z</updated>
	<author>
		<name>Bijan Parsia-3</name>
	</author>
	<content type="html">On 12 Oct 2009, at 07:09, Ivan Herman wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Bene,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; OWL 2 reuses the same URI used by OWL 1. As OWL 2 is an extension to &amp;nbsp;
&lt;br&gt;&amp;gt; OWL
&lt;br&gt;&amp;gt; 1, this makes sense.
&lt;br&gt;&lt;br&gt;Please note that the file you were using (owl.owl) is in the process &amp;nbsp;
&lt;br&gt;of being updated. Once that is complete and published you should be &amp;nbsp;
&lt;br&gt;able to load it in the editor of your choice and have the same &amp;nbsp;
&lt;br&gt;experience you did with the OWL 1 owl.owl file.
&lt;br&gt;&lt;br&gt;There are some people (myself included) who think this is not a good &amp;nbsp;
&lt;br&gt;way to learn or explore OWL (1 or 2). There was quite a debate about &amp;nbsp;
&lt;br&gt;it between me (anti) and Holger Knublauch (pro) recently which you &amp;nbsp;
&lt;br&gt;might find interesting:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.w3.org/mid/B6D22E33-5332-4CF3-8582-F6A033BE4C7B@topquadrant.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/mid/B6D22E33-5332-4CF3-8582-F6A033BE4C7B@...&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&lt;br&gt;Of course the emphasis in that debate is somewhat different. I &amp;nbsp;
&lt;br&gt;personally think that owl.owl is *worse* from a pedegogical &amp;nbsp;
&lt;br&gt;perspective (though, of course, people differ and we have to consider &amp;nbsp;
&lt;br&gt;what outcomes we're interested in and what other material we're using, &amp;nbsp;
&lt;br&gt;etc.)
&lt;br&gt;&lt;br&gt;OWL 2 has a lot of excellent, IMHO, learning material including the &amp;nbsp;
&lt;br&gt;basic language specification itself. For an overview, the Quick &amp;nbsp;
&lt;br&gt;Reference Guide is quite reasonable.
&lt;br&gt;&lt;br&gt;&amp;gt; I cannot comment on the plans of the different editors regarding the
&lt;br&gt;&amp;gt; additional OWL 2 features although, AFAIK, Protege does cover part of
&lt;br&gt;&amp;gt; OWL 2 already.
&lt;br&gt;&lt;br&gt;Swoop is moribund and will not, unless someone takes up the code (its &amp;nbsp;
&lt;br&gt;open source), be updated. Frankly, I wouldn't recommend taking up the &amp;nbsp;
&lt;br&gt;code as it's based on an older version of the OWL API and is generally &amp;nbsp;
&lt;br&gt;messy. It's not that hard to skin Protege4 to a more Swoopy interface &amp;nbsp;
&lt;br&gt;(it's gotten reasonably close) and focus on adding the remaining &amp;nbsp;
&lt;br&gt;missing features.
&lt;br&gt;&lt;br&gt;Protege4 supports, afaik, all of OWL 2 (in a development release).
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Bijan.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWL-2-is-now-a-W3C-Proposed-Recommendation-tp25566014p25860309.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25854987</id>
	<title>Call for Papers/Workshop Proposals (GPC-10, UIC-10, MTPP-10, ICA3PP-10, FC-10, SMPE-10, FutureTech-10, BodyNets-10)</title>
	<published>2009-10-12T05:31:30Z</published>
	<updated>2009-10-12T05:31:30Z</updated>
	<author>
		<name>Robert C. Hsu</name>
	</author>
	<content type="html">&lt;br /&gt;
====================================================================&lt;br /&gt;
** Apologies if you receive multiple copies of this announcement. **&lt;br /&gt;
&lt;br /&gt;
Please disseminate this message in your networks / subscribed lists.&lt;br /&gt;
We also take this chance to invite you contribute a paper / proposal &lt;br /&gt;
to these events.  Thanks in advance.&lt;br /&gt;
====================================================================&lt;br /&gt;
&lt;br /&gt;
Call for Workshop Proposals&lt;br /&gt;
&lt;br /&gt;
1. Conference: GPC 2010 (The 5th International Conference on Grid and Pervasive Computing)&lt;br /&gt;
   Web: http://gpc2010.ndhu.edu.tw/&lt;br /&gt;
   Place/Date: Hualien, Taiwan / May 10-14, 2010&lt;br /&gt;
   Publication: LNCS, Springer&lt;br /&gt;
   Proposal Due: 10 December, 2010&lt;br /&gt;
   Contact: Prof. Shi-Jim Yen (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25854987&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sjyen@...&lt;/a&gt; ); Prof. Robert C. Hsu (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25854987&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chh@...&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
2. Conference: UIC 2010 (The 6th International Conference on Ubiquitous Inte)&lt;br /&gt;
   Place/Date: Xian, China / October 26-29, 2010&lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Proposal Due: January 31, 2010&lt;br /&gt;
   Contact: Prof. Robert C. Hsu (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25854987&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chh@...&lt;/a&gt;); Prof. Mieso Denko (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25854987&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;denko@...&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
Call for Research Papers&lt;br /&gt;
&lt;br /&gt;
3. Conference: MTPP 2010 (The 2nd Russia-Taiwan Symposium on Methods and Tools of Parallel Programming Multicomputers)&lt;br /&gt;
   Web: http://grid.chu.edu.tw/mtpp2010/&lt;br /&gt;
   Place/Date: Vladivostok, Russia / May 17-19, 2010&lt;br /&gt;
   Publication: LNCS, Springer (EI Indexed, DBLP)&lt;br /&gt;
   Submission Due: January 10, 2010&lt;br /&gt;
&lt;br /&gt;
4. Conference: ICA3PP 2010 (The 10th International Conference on Algorithms and Architecture for Parallel Processing)&lt;br /&gt;
   Web: http://cse.stfx.ca/~ica3pp2010/&lt;br /&gt;
   Place/Date:  Busan, Korea / May 21-23, 2010&lt;br /&gt;
   Publication: LNCS, Springer (EI Indexed, DBLP)&lt;br /&gt;
   Submission Due: November 30, 2009&lt;br /&gt;
&lt;br /&gt;
5. Conference: IET FC 2010 (The IET International Conference on Frontier Computing)&lt;br /&gt;
   Web: http://fc2010.cs.pu.edu.tw/&lt;br /&gt;
   Place/Date: Taichung, Taiwan / July 19-21, 2010&lt;br /&gt;
   Publication: IET Press (EI Indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: December 25, 2009&lt;br /&gt;
&lt;br /&gt;
6. Conference: SMPE 2010 (The Fourth International Symposium on Security and Multimodality in Pervasive Environments)&lt;br /&gt;
   Web: http://www.ftrg.org/smpe2010/&lt;br /&gt;
   Place/Date: Perth, Australia / April 20-23, 2010 &lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: November 1, 2009&lt;br /&gt;
&lt;br /&gt;
7. Conference: FutureTech 2010 (The 5th International Cnoference on Future Information Technology)&lt;br /&gt;
   Web: http://www.ftrg.org/futuretech2010/&lt;br /&gt;
   Place/Date: Busan, Korea / May 21-23, 2010&lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: November 30, 2009&lt;br /&gt;
&lt;br /&gt;
8. Conference: BodyNets 2010 (The Fifth International Conference on Body Area Networks)&lt;br /&gt;
   Web: http://www.bodynets.org/&lt;br /&gt;
   Place/Date: Corfu Island, Greece / Spetember 10-12, 2010&lt;br /&gt;
   Publication: LNICST (EI indexed, DBLP)&lt;br /&gt;
   Submission Due: March 22, 2010&lt;br /&gt;


</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Call-for-Papers-Workshop-Proposals-%28GPC-10%2C-UIC-10%2C-MTPP-10%2C-ICA3PP-10%2C-FC-10%2C-SMPE-10%2C-FutureTech-10%2C-BodyNets-10%29-tp25854987p25854987.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25854004</id>
	<title>Re: OWL 2 is now a W3C Proposed Recommendation</title>
	<published>2009-10-12T04:09:16Z</published>
	<updated>2009-10-12T04:09:16Z</updated>
	<author>
		<name>Ivan Herman-2</name>
	</author>
	<content type="html">Bene,
&lt;br&gt;&lt;br&gt;OWL 2 reuses the same URI used by OWL 1. As OWL 2 is an extension to OWL
&lt;br&gt;1, this makes sense.
&lt;br&gt;&lt;br&gt;I cannot comment on the plans of the different editors regarding the
&lt;br&gt;additional OWL 2 features although, AFAIK, Protege does cover part of
&lt;br&gt;OWL 2 already.
&lt;br&gt;&lt;br&gt;Ivan
&lt;br&gt;&lt;br&gt;Bene Rodriguez-Castro wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is there a specific prefix or base URI designated for OWL 2?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; OWL 1 provides the URI &amp;lt;&lt;a href=&quot;http://www.w3.org/2002/07/owl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Loading this URI in SWOOP, Protege 4.x or TopBraid Composer gives a
&lt;br&gt;&amp;gt; neat ontology representation of the different modelling elements
&lt;br&gt;&amp;gt; available in OWL 1.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I was looking at the documents listed in the previous email (and
&lt;br&gt;&amp;gt; different references in them) for a corresponding URI in the context
&lt;br&gt;&amp;gt; of OWL 2 that I could load in any of these editors, but these
&lt;br&gt;&amp;gt; documents still refer to the OWL 1 URI &amp;lt;&lt;a href=&quot;http://www.w3.org/2002/07/owl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks in advance for any comments you may have.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Bene Rodriguez
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Postgraduate Student | Intelligence, Agents and Multimedia Group |
&lt;br&gt;&amp;gt; School of Electronics and Computer Science | University of Southampton
&lt;br&gt;&amp;gt; | Southampton SO17 1BJ | United Kingdom
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Tue, Sep 22, 2009 at 8:30 PM, Sandro Hawke &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25854004&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sandro@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Following a successful Candidate Recommendation phase, during which we
&lt;br&gt;&amp;gt;&amp;gt; received reports of more than a dozen implementations [1], OWL 2 has
&lt;br&gt;&amp;gt;&amp;gt; advanced to Proposed Recommendation. &amp;nbsp;During this four-week phase, W3C
&lt;br&gt;&amp;gt;&amp;gt; member organizations [2] have a chance decide whether OWL 2 should be
&lt;br&gt;&amp;gt;&amp;gt; published as a W3C Recommendation.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; We have published new versions of the documents [3], but the changes
&lt;br&gt;&amp;gt;&amp;gt; since Candidate Recommendation are all minor and editorial. &amp;nbsp;(The
&lt;br&gt;&amp;gt;&amp;gt; changes are detailed in a changelog in each document.) &amp;nbsp;No changes to
&lt;br&gt;&amp;gt;&amp;gt; software or ontologies should be required.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The new publications are linked from our documentation roadmap:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://www.w3.org/TR/2009/PR-owl2-overview-20090922/#Documentation_Roadmap&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/2009/PR-owl2-overview-20090922/#Documentation_Roadmap&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Comments are best sent to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25854004&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-comments@...&lt;/a&gt;. &amp;nbsp;General
&lt;br&gt;&amp;gt;&amp;gt; discussion of OWL 2 is probably best done on &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25854004&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-dev@...&lt;/a&gt; [4].
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;-- Sandro &amp;nbsp; (W3C Staff Contact, OWL WG)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; [1] &lt;a href=&quot;http://www.w3.org/2007/OWL/wiki/Implementations&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2007/OWL/wiki/Implementations&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; [2] &lt;a href=&quot;http://www.w3.org/Consortium/Member/List&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/Consortium/Member/List&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; [3] &lt;a href=&quot;http://www.w3.org/News/2009#item166&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/News/2009#item166&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; [4] &lt;a href=&quot;http://lists.w3.org/Archives/Public/public-owl-dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-owl-dev/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;/div&gt;-- 
&lt;br&gt;&lt;br&gt;Ivan Herman, W3C Semantic Web Activity Lead
&lt;br&gt;Home: &lt;a href=&quot;http://www.w3.org/People/Ivan/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/People/Ivan/&lt;/a&gt;&lt;br&gt;mobile: +31-641044153
&lt;br&gt;PGP Key: &lt;a href=&quot;http://www.ivan-herman.net/pgpkey.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ivan-herman.net/pgpkey.html&lt;/a&gt;&lt;br&gt;FOAF: &lt;a href=&quot;http://www.ivan-herman.net/foaf.rdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ivan-herman.net/foaf.rdf&lt;/a&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (4K) &lt;a href=&quot;http://old.nabble.com/attachment/25854004/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWL-2-is-now-a-W3C-Proposed-Recommendation-tp25566014p25854004.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25845808</id>
	<title>Call for Papers - 4th Int. Workshop on Modular Ontologies</title>
	<published>2009-10-11T10:44:50Z</published>
	<updated>2009-10-11T10:44:50Z</updated>
	<author>
		<name>Jie Bao-6</name>
	</author>
	<content type="html">( WE APOLOGIZE IF YOU RECEIVE MULTIPLE COPIES OF THIS MESSAGE )
&lt;br&gt;&lt;br&gt;=========================================================
&lt;br&gt;&amp;nbsp; &amp;nbsp; 4th Int. Workshop on Modular Ontologies (WoMO)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Toronto, Canada, May 11, 2010
&lt;br&gt;&amp;nbsp; &amp;nbsp; co-located with FOIS, KR, AAMAS, ICAPS, NMR, and DL
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;--- 1st Call for Papers ---
&lt;br&gt;=========================================================
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.informatik.uni-bremen.de/~okutz/womo4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.informatik.uni-bremen.de/~okutz/womo4&lt;/a&gt;&lt;br&gt;&lt;br&gt;MODULARITY, as studied for many years in software engineering, allows
&lt;br&gt;mechanisms for easy and flexible reuse, generalization, structuring,
&lt;br&gt;maintenance, design patterns, and comprehension. Applied to ontology
&lt;br&gt;engineering, modularity is central not only to reduce the complexity
&lt;br&gt;of understanding ontologies, but also to facilitate ontology
&lt;br&gt;maintenance and ontology reasoning.
&lt;br&gt;&lt;br&gt;Recent research on ontology modularity shows substantial progress in
&lt;br&gt;foundations of modularity, techniques of modularization and modular
&lt;br&gt;development, distributed reasoning and empirical evaluation. These
&lt;br&gt;results provide a foundation for further research and development.
&lt;br&gt;&lt;br&gt;The workshop follows a series of successful events that have been an
&lt;br&gt;excellent venue for practitioners and researchers to discuss latest
&lt;br&gt;work and current problems, and is this time organised as a satellite
&lt;br&gt;workshop of FOIS 2010, as well as being co-located with several other
&lt;br&gt;relevant events, namely KR, AAMAS, ICAPS, NMR, and DL.
&lt;br&gt;&lt;br&gt;TOPICS include, but are not limited to:
&lt;br&gt;&lt;br&gt;- What is Modularity: Kinds of modules and their properties; modules
&lt;br&gt;vs. contexts; design patterns; granularity of representation;
&lt;br&gt;&lt;br&gt;- Logical/Foundational Studies: Conservativity; modular ontology
&lt;br&gt;languages (e.g., DDL, E-Connections, P-DL); reconciling
&lt;br&gt;inconsistencies across modules; formal structuring of modules;
&lt;br&gt;heterogeneity;
&lt;br&gt;&lt;br&gt;- Algorithmic Approaches: distributed reasoning; modularization and
&lt;br&gt;module extraction; (selective) sharing and re-using, linking and
&lt;br&gt;importing; hiding and privacy; evaluation of modularization
&lt;br&gt;approaches; complexity of reasoning; reasoners or implemented systems;
&lt;br&gt;&lt;br&gt;- Applications: Semantic Web; Life Sciences; Bio-Ontologies; Natural
&lt;br&gt;Language Processing; ontologies of space and time; Ambient
&lt;br&gt;Intelligence; collaborative ontology development; etc.
&lt;br&gt;&lt;br&gt;IMPORTANT DATES
&lt;br&gt;&lt;br&gt;Paper Submission: January 29, 2010
&lt;br&gt;Notification: &amp;nbsp;March 1, 2010
&lt;br&gt;Camera ready: March 11, 2010
&lt;br&gt;Workshop day: May 11, 2010
&lt;br&gt;&lt;br&gt;SUBMISSION GUIDELINES:
&lt;br&gt;&lt;br&gt;The workshop welcomes submission of high quality original and
&lt;br&gt;previously unpublished papers.
&lt;br&gt;&lt;br&gt;Contributions should not exceed 13 pages in length and must be
&lt;br&gt;formatted according to IOS Press style (see
&lt;br&gt;&lt;a href=&quot;http://www.iospress.nl/authco/instruction_crc.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.iospress.nl/authco/instruction_crc.html&lt;/a&gt;&amp;nbsp;).
&lt;br&gt;Contributions should be prepared in PDF format and submitted not later
&lt;br&gt;than January 29 2010 through the EasyChair Submission System (see
&lt;br&gt;&lt;a href=&quot;http://www.informatik.uni-bremen.de/~okutz/womo4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.informatik.uni-bremen.de/~okutz/womo4&lt;/a&gt;&amp;nbsp;).
&lt;br&gt;&lt;br&gt;Submitted papers will be peer-reviewed by members of the program
&lt;br&gt;committee. Accepted papers may be extended up to 16 pages and will be
&lt;br&gt;published as chapters in an IOS Press book in the series 'Frontiers in
&lt;br&gt;Artificial Intelligence and Applications'.
&lt;br&gt;&lt;br&gt;The authors of accepted papers are also welcome to submit
&lt;br&gt;substantially extended versions to a planned special issue on
&lt;br&gt;'Modularity in Ontologies' of the international journal 'Applied
&lt;br&gt;Ontology' (IOS Press).
&lt;br&gt;&lt;br&gt;WORKSHOP CO-CHAIRS:
&lt;br&gt;&lt;br&gt;Oliver Kutz (Research Center on Spatial Cognition (SFB/TR 8), Bremen, Germany)
&lt;br&gt;Joana Hois (Research Center on Spatial Cognition (SFB/TR 8), Bremen, Germany)
&lt;br&gt;Jie Bao (Tetherless World Constellation &amp; Department of Computer
&lt;br&gt;Science, Rensselaer Polytechnic Institute, USA)
&lt;br&gt;Bernardo Cuenca Grau (University of Oxford, UK)
&lt;br&gt;&lt;br&gt;PROGRAM COMMITTEE
&lt;br&gt;&lt;br&gt;Mathieu d'Aquin (Knowledge Media Institute, Open University of Milton
&lt;br&gt;Keynes, UK)
&lt;br&gt;Alex Borgida (Department of Computer Science, Rutgers University, USA)
&lt;br&gt;Stefano Borgo (Laboratory for Applied Ontology, CNR, Trento, Italy)
&lt;br&gt;Martin Dzbor (Knowledge Media Institute, Open University of Milton Keynes, UK)
&lt;br&gt;Fred Freitas (Universidade Federal de Pernambuco, Caixa Postal, Brazil)
&lt;br&gt;Silvio Ghilardi (Department of Computer Science, University of Milan, Italy)
&lt;br&gt;John Goodwin (Ordnance Survey, Southampton, UK)
&lt;br&gt;Peter Haase (fluid Operations GmbH, Germany)
&lt;br&gt;Heinrich Herre (Institute for Medical Informatics, Statistics and
&lt;br&gt;Epidemiology, University of Leipzig, Germany)
&lt;br&gt;Pascal Hitzler (Kno.e.sis Center, Wright State University, USA)
&lt;br&gt;Vasant Honovar (Artificial Intelligence Research Laboratory, Iowa
&lt;br&gt;State University, USA)
&lt;br&gt;Roman Kontchakov (School of Computer Science and Information Systems,
&lt;br&gt;Birkbeck College, London, UK)
&lt;br&gt;Carsten Lutz (Department of Computer Science, University of Bremen, Germany)
&lt;br&gt;Till Mossakowski (German Research Center for Artificial Intelligence,
&lt;br&gt;Lab Bremen, Germany)
&lt;br&gt;Alan Rector (University of Manchester, UK)
&lt;br&gt;Anne Schlicht (KR &amp; KM Research Group, University of Mannheim, Germany)
&lt;br&gt;Thomas Schneider (Department of Computer Science, University of Manchester, UK)
&lt;br&gt;Luciano Serafini (Centro Per la Ricerca Scientifica e Tecnologica,
&lt;br&gt;Trento, Italy)
&lt;br&gt;Stefano Spaccapietra (School of Computer and Communication Sciences,
&lt;br&gt;Lausanne, Switzerland)
&lt;br&gt;Heiner Stuckenschmidt (KR &amp; KM Research Group, University of Mannheim, Germany)
&lt;br&gt;Andrei Tamilin (Fondazione Bruno Kessler - IRST, Italy)
&lt;br&gt;Dirk Walther (Department of Computer Science, Universidad Politecnica
&lt;br&gt;de Madrid, Spain)
&lt;br&gt;Frank Wolter (Department of Computer Science, University of Liverpool, UK)
&lt;br&gt;Michael Zakharyaschev (School of Computer Science and Information
&lt;br&gt;Systems, Birkbeck College, London, UK)
&lt;br&gt;Antoine Zimmermann (DERI, National University of Ireland, Galway, Ireland)
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Call-for-Papers---4th-Int.-Workshop-on-Modular-Ontologies-tp25845808p25845808.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25828019</id>
	<title>Re: OWL 2 is now a W3C Proposed Recommendation</title>
	<published>2009-10-09T13:01:12Z</published>
	<updated>2009-10-09T13:01:12Z</updated>
	<author>
		<name>Bene-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Is there a specific prefix or base URI designated for OWL 2?
&lt;br&gt;&lt;br&gt;OWL 1 provides the URI &amp;lt;&lt;a href=&quot;http://www.w3.org/2002/07/owl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl&lt;/a&gt;&amp;gt;
&lt;br&gt;Loading this URI in SWOOP, Protege 4.x or TopBraid Composer gives a
&lt;br&gt;neat ontology representation of the different modelling elements
&lt;br&gt;available in OWL 1.
&lt;br&gt;&lt;br&gt;I was looking at the documents listed in the previous email (and
&lt;br&gt;different references in them) for a corresponding URI in the context
&lt;br&gt;of OWL 2 that I could load in any of these editors, but these
&lt;br&gt;documents still refer to the OWL 1 URI &amp;lt;&lt;a href=&quot;http://www.w3.org/2002/07/owl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2002/07/owl&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Thanks in advance for any comments you may have.
&lt;br&gt;&lt;br&gt;Bene Rodriguez
&lt;br&gt;&lt;br&gt;Postgraduate Student | Intelligence, Agents and Multimedia Group |
&lt;br&gt;School of Electronics and Computer Science | University of Southampton
&lt;br&gt;| Southampton SO17 1BJ | United Kingdom
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, Sep 22, 2009 at 8:30 PM, Sandro Hawke &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25828019&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sandro@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Following a successful Candidate Recommendation phase, during which we
&lt;br&gt;&amp;gt; received reports of more than a dozen implementations [1], OWL 2 has
&lt;br&gt;&amp;gt; advanced to Proposed Recommendation.  During this four-week phase, W3C
&lt;br&gt;&amp;gt; member organizations [2] have a chance decide whether OWL 2 should be
&lt;br&gt;&amp;gt; published as a W3C Recommendation.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; We have published new versions of the documents [3], but the changes
&lt;br&gt;&amp;gt; since Candidate Recommendation are all minor and editorial.  (The
&lt;br&gt;&amp;gt; changes are detailed in a changelog in each document.)  No changes to
&lt;br&gt;&amp;gt; software or ontologies should be required.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The new publications are linked from our documentation roadmap:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;   &lt;a href=&quot;http://www.w3.org/TR/2009/PR-owl2-overview-20090922/#Documentation_Roadmap&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/2009/PR-owl2-overview-20090922/#Documentation_Roadmap&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Comments are best sent to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25828019&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-comments@...&lt;/a&gt;.  General
&lt;br&gt;&amp;gt; discussion of OWL 2 is probably best done on &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25828019&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-dev@...&lt;/a&gt; [4].
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    -- Sandro   (W3C Staff Contact, OWL WG)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [1] &lt;a href=&quot;http://www.w3.org/2007/OWL/wiki/Implementations&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2007/OWL/wiki/Implementations&lt;/a&gt;&lt;br&gt;&amp;gt; [2] &lt;a href=&quot;http://www.w3.org/Consortium/Member/List&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/Consortium/Member/List&lt;/a&gt;&lt;br&gt;&amp;gt; [3] &lt;a href=&quot;http://www.w3.org/News/2009#item166&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/News/2009#item166&lt;/a&gt;&lt;br&gt;&amp;gt; [4] &lt;a href=&quot;http://lists.w3.org/Archives/Public/public-owl-dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-owl-dev/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWL-2-is-now-a-W3C-Proposed-Recommendation-tp25566014p25828019.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25740354</id>
	<title>1st CFP: Workshop on Matching and Meaning: Automated development,  evolution and interpretation of ontologies.</title>
	<published>2009-10-04T10:47:19Z</published>
	<updated>2009-10-04T10:47:19Z</updated>
	<author>
		<name>Michael Chan-7</name>
	</author>
	<content type="html">Apologies for cross-postings
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CALL FOR PAPERS
&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Workshop on Matching and Meaning:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Automated development, evolution and interpretation of ontologies
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://dream.inf.ed.ac.uk/events/wmm-2010&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dream.inf.ed.ac.uk/events/wmm-2010&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 31st March 2010, part of AISB'10 Convention, Leicester, UK
&lt;br&gt;&lt;br&gt;&lt;br&gt;OVERVIEW
&lt;br&gt;&lt;br&gt;The problem of semantic misalignment - of two (or more) systems failing 
&lt;br&gt;to understand one another when their semantic representation is not
&lt;br&gt;identical - occurs in a huge variety of areas: the Semantic Web,
&lt;br&gt;databases, natural language processing; anywhere, indeed, where
&lt;br&gt;semantics are necessary but centralised control is undesirable or
&lt;br&gt;impractical. &amp;nbsp;In highly dynamic domains, where interactions are between
&lt;br&gt;a large, diverse and evolving community, there is a need for the
&lt;br&gt;resolving of these misalignments - through developing and evolving
&lt;br&gt;existing ontologies or interpreting unknown ontologies in terms of
&lt;br&gt;known ones - to be done automatically and on-the-fly.
&lt;br&gt;&lt;br&gt;The aim of this workshop is to bring together researchers interested in
&lt;br&gt;the problems of automated development, evolution and interpretation of
&lt;br&gt;ontologies in the many different domains in which it occurs. We are
&lt;br&gt;primarily interested in the exchange of ideas and the stimulation of
&lt;br&gt;debate, and the workshop is intended to be a forum for researchers to
&lt;br&gt;present ongoing work and ideas and to engage in discussion with other
&lt;br&gt;researchers from the field. We are particularly interested in novel
&lt;br&gt;ideas and innovative research, which may be in its early stages, and
&lt;br&gt;encourage reports on work in progress.
&lt;br&gt;&lt;br&gt;Topics of interest include:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Ontology evolution
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Ontology matching and alignment
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Ontology versioning
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Representational or structural change
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Formal aspects of ontology dynamics
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Formalisation of and reasoning with contexts
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Foundational issues
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Social and collaborative matching
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Background knowledge in matching
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Extensions to ontology languages to better support change
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Non-monotonic reasoning for ontologies and the Semantic Web
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Inconsistency handling in evolving ontologies
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Uncertainty in matching
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Change propagation in ontologies and metadata
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Ontologies for dynamic environments
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Dynamic knowledge construction and exploitation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Matching for dynamic applictions (e.g., p2p, agents, web-services)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Case studies, software tools, use cases, applications
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Open problems
&lt;br&gt;&lt;br&gt;&lt;br&gt;SUBMISSION GUIDELINES
&lt;br&gt;&lt;br&gt;We encourage the submission of extended abstracts of 2-5 pages that
&lt;br&gt;discuss ongoing research, problem descriptions and overviews of the
&lt;br&gt;domain. Accepted papers will be included in the AISB 2010 proceedings
&lt;br&gt;unless the authors prefer them not to be (for example, if the work is
&lt;br&gt;very similar to work presented elsewhere which they nevertheless feel
&lt;br&gt;it would be valuable to present in this context, or if the work is at
&lt;br&gt;a stage where discussion would be valuable but publication would be
&lt;br&gt;premature). Authors wishing their submissions to be included in the
&lt;br&gt;convention proceedings must follow the style guide on the convention
&lt;br&gt;website.
&lt;br&gt;&lt;br&gt;Submissions will be subject to light reviewing, mainly intended to
&lt;br&gt;check fit to workshop.
&lt;br&gt;&lt;br&gt;Abstracts should be submitted electronically in pdf format to
&lt;br&gt;mchan-at-ed.ac.uk by 18th December 2009. Notification of acceptance
&lt;br&gt;will be sent to the submitting author on 15th February 2010.
&lt;br&gt;&lt;br&gt;&lt;br&gt;VENUE
&lt;br&gt;&lt;br&gt;The workshop will take place at De Montfort University in Leicester,
&lt;br&gt;as part of the AISB 2010 Convention
&lt;br&gt;(&lt;a href=&quot;http://www.aisb.org.uk/convention/aisb10/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aisb.org.uk/convention/aisb10/&lt;/a&gt;), from March 31st to 1st
&lt;br&gt;April, 2010. All workshop participants must be registered for the AISB
&lt;br&gt;2010 Convention. Registration for this workshop is included in the
&lt;br&gt;convention registration fee.
&lt;br&gt;&lt;br&gt;&lt;br&gt;IMPORTANT DATES
&lt;br&gt;&lt;br&gt;Submission: Friday, 18th December 2009
&lt;br&gt;Notification: Monday, 15th February 2010
&lt;br&gt;Workshop: 31st March - 1st April 2010
&lt;br&gt;AISB10 Convention: 29th March - 1st April 2010
&lt;br&gt;&lt;br&gt;&lt;br&gt;PROGRAMME
&lt;br&gt;&lt;br&gt;Presentations: Authors of accepted abstracts will give presentations of
&lt;br&gt;their work; exact times to be decided.
&lt;br&gt;&lt;br&gt;Posters: If it is not possible to fit in presentations for all accepted
&lt;br&gt;authors, some may be asked to present posters instead. There will be a
&lt;br&gt;session of 5 minute poster talks.
&lt;br&gt;&lt;br&gt;Panel: The technical programme will end with a 90 minute panel
&lt;br&gt;discussion on a topic of mutual interest to be decided. Three speakers
&lt;br&gt;will speak for 10 minutes each with a brief to stimulate debate during
&lt;br&gt;the remaining 60 minutes. Discussion amongst all participants, rather
&lt;br&gt;than question-and-answering for the panel, will be strongly encouraged.
&lt;br&gt;&lt;br&gt;&lt;br&gt;ORGANISERS
&lt;br&gt;&lt;br&gt;Fiona McNeill, University of Edinburgh, UK
&lt;br&gt;Michael Chan, University of Edinburgh, UK
&lt;br&gt;&lt;br&gt;&lt;br&gt;PROGRAMMING COMMITTEE
&lt;br&gt;&lt;br&gt;Manuel Atencia Arcas, IIIA-CSIC, Spain
&lt;br&gt;Paolo Besana, University of Edinburgh, UK
&lt;br&gt;Alan Bundy, University of Edinburgh, UK
&lt;br&gt;Jerome Euzenat, INRIA Grenoble Rhone-Alpes, France
&lt;br&gt;Fausto Giunchiglia, University of Trento, Italy
&lt;br&gt;Adam Pease, Articulate Software, USA
&lt;br&gt;Pavel Shvaiko, TasLab, Informatica Trentina, Italy
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;The University of Edinburgh is a charitable body, registered in
&lt;br&gt;Scotland, with registration number SC005336.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/1st-CFP%3A-Workshop-on-Matching-and-Meaning%3A-Automated-development%2C--evolution-and-interpretation-of-ontologies.-tp25740354p25740354.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25659964</id>
	<title>Re: Modeling a specific construct - please help</title>
	<published>2009-09-29T02:45:51Z</published>
	<updated>2009-09-29T02:45:51Z</updated>
	<author>
		<name>Alan Rector</name>
	</author>
	<content type="html">Chimezie, All
&lt;br&gt;&lt;br&gt;The question of how best to handle reasoning with clinical data &amp;nbsp;
&lt;br&gt;remains an open one,
&lt;br&gt;as far as I know. &amp;nbsp;In general, we make do with approximations designed &amp;nbsp;
&lt;br&gt;to fit specific
&lt;br&gt;circumstances.
&lt;br&gt;&lt;br&gt;We still do not have a good theoretical description of the relation &amp;nbsp;
&lt;br&gt;between the &amp;quot;data&amp;quot; in the record, the
&lt;br&gt;clinicians' beliefs at any given time (which may conflict both over &amp;nbsp;
&lt;br&gt;time and between clinicians),
&lt;br&gt;some sort of consensus &amp;quot;best model&amp;quot; of the patient, (and ultimately &amp;nbsp;
&lt;br&gt;&amp;quot;reality&amp;quot;).
&lt;br&gt;We still do not have a good account of how to handle &amp;quot;not known&amp;quot;, &amp;nbsp;
&lt;br&gt;&amp;quot;known not&amp;quot;, &amp;quot;unsure&amp;quot;, &amp;quot;missing&amp;quot;,
&lt;br&gt;&amp;quot;invalid&amp;quot;, etc. &amp;nbsp;We still don't have a good handle on when we should &amp;nbsp;
&lt;br&gt;regard the clinical
&lt;br&gt;data as &amp;quot;open&amp;quot; and when as &amp;quot;closed&amp;quot;. &amp;nbsp;I don't think we have a good &amp;nbsp;
&lt;br&gt;practical account of how to
&lt;br&gt;mix different sorts of data even in the knowledge based once we get &amp;nbsp;
&lt;br&gt;beyond the
&lt;br&gt;&amp;quot;ontological&amp;quot; reasoning about terminologies etc, which are clearly &amp;nbsp; 
&lt;br&gt;&amp;quot;open world&amp;quot; and things like
&lt;br&gt;the FDA licensing database which is clearly &amp;quot;closed world&amp;quot;.
&lt;br&gt;&lt;br&gt;The one thing I am confident of is that there is unlikely to be a &amp;nbsp;
&lt;br&gt;simple, single layer, first order theory
&lt;br&gt;to deal with all these issues.
&lt;br&gt;&lt;br&gt;The one practical bit of advice on this, is that it is often possible &amp;nbsp;
&lt;br&gt;to close small, localisable problem spaces.
&lt;br&gt;It is much harder to close large problem spaces.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;&lt;br&gt;Alan
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 16 Sep 2009, at 15:50, Chimezie Ogbuji wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Tue, Sep 15, 2009 at 4:24 AM, Alan Rector &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25659964&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rector@...&lt;/a&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Well, no, you cannot (validly) conclude this. This is a non-monotonic
&lt;br&gt;&amp;gt;&amp;gt; inference, which is not supported by the OWL semantics. While it &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; may work in
&lt;br&gt;&amp;gt;&amp;gt; particular cases where you know that your data is complete in the &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; required
&lt;br&gt;&amp;gt;&amp;gt; sense, it is not good practice to use such inference patterns in &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; OWL, as
&lt;br&gt;&amp;gt;&amp;gt; they will (not may, but WILL) break in some cases. Think building a &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; glass
&lt;br&gt;&amp;gt;&amp;gt; building over a known seismic fault.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Pat Hayes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The difficulty with such reasoning patterns is that they only work &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; when you
&lt;br&gt;&amp;gt;&amp;gt; can
&lt;br&gt;&amp;gt;&amp;gt; complete the knowledge base so that it is fully constrained.
&lt;br&gt;&amp;gt;&amp;gt; In most of our biomedical models, we can rarely be certain enough
&lt;br&gt;&amp;gt;&amp;gt; that all possibilities have been covered to reason that the only
&lt;br&gt;&amp;gt;&amp;gt; possibilities left over are true, only that they might be and may
&lt;br&gt;&amp;gt;&amp;gt; ]be worth further investigation.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; True, but I've found (in practice) that non-monotonic reasoning
&lt;br&gt;&amp;gt; matches well with the intuition behind clinical medicine and the way
&lt;br&gt;&amp;gt; electronic patient data can be recorded as RDF (mostly using strict
&lt;br&gt;&amp;gt; data entry controls where it is important to assume at least a portion
&lt;br&gt;&amp;gt; of the data is complete in order to make reasonable inferences from
&lt;br&gt;&amp;gt; it)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Although we have sometimes used this kind of reasoning on very &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; restricted
&lt;br&gt;&amp;gt;&amp;gt; data entry problems with multiple constraints where we can be sure &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; that they
&lt;br&gt;&amp;gt;&amp;gt; can all be covered. &amp;nbsp;In those cases the non-monotonicity is an &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; advantage,
&lt;br&gt;&amp;gt;&amp;gt; although I would try to confine it to increasingly large queries &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; rather than
&lt;br&gt;&amp;gt;&amp;gt; the KB itself. As we learn more, we add it to the query, so that &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; query gets
&lt;br&gt;&amp;gt;&amp;gt; larger and the number of
&lt;br&gt;&amp;gt;&amp;gt; possible answers to the remaining questions gets fewer.
&lt;br&gt;&amp;gt;&amp;gt; This sort of reasoning used to be supported in the Protege Query &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; tab, but is
&lt;br&gt;&amp;gt;&amp;gt; no longer.
&lt;br&gt;&amp;gt;&amp;gt; Regards
&lt;br&gt;&amp;gt;&amp;gt; Alan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- Chimezie
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;-----------------------
&lt;br&gt;Alan Rector
&lt;br&gt;Professor of Medical Informatics
&lt;br&gt;School of Computer Science
&lt;br&gt;University of Manchester
&lt;br&gt;Manchester M13 9PL, UK
&lt;br&gt;TEL +44 (0) 161 275 6149/6188
&lt;br&gt;FAX +44 (0) 161 275 6204
&lt;br&gt;www.cs.man.ac.uk/mig
&lt;br&gt;www.co-ode.org
&lt;br&gt;&lt;a href=&quot;http://clahrc-gm.nihr.ac.uk/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clahrc-gm.nihr.ac.uk/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Modeling-a-specific-construct---please-help-tp25400372p25659964.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25655437</id>
	<title>ISWC Tutorial: Working with Explanations of OWL Entailments</title>
	<published>2009-09-28T18:09:53Z</published>
	<updated>2009-09-28T18:09:53Z</updated>
	<author>
		<name>Bijan Parsia-3</name>
	</author>
	<content type="html">Do you ever lie there in the middle of the night wondering, &amp;quot;Why are we
&lt;br&gt;here? Why do we die? Why is that class in my ontology unsatisfiable?&amp;quot;
&lt;br&gt;&lt;br&gt;We've all been there, ...restless...sweaty...tormented...asking
&lt;br&gt;ourselves, &amp;quot;Why? WHY!?!? Does God hate me? Was I a mass murderer in a &amp;nbsp;
&lt;br&gt;past life?
&lt;br&gt;Did Jerome make all those classes disjoint AGAIN!?! I bet it was Jerome!
&lt;br&gt;Why did I hire someone named Jerome!??!?!!&amp;quot;
&lt;br&gt;&lt;br&gt;You want answers. More, you want *explanations*.
&lt;br&gt;&lt;br&gt;Thankfully there's a place you can go for explanations of the deep
&lt;br&gt;mysteries of life (if the deep mysteries of life that you are interested
&lt;br&gt;in happen to be entailments in OWL ontologies). A place where it will
&lt;br&gt;all make sense, and there are people who care enough to help you find
&lt;br&gt;your way. And you don't need to wear saffron robes, or bathe nude in the
&lt;br&gt;thundering snowmelt-fed waterfalls on sacred mountains, or sign over all
&lt;br&gt;your worldly possessions (although, if you'd like to dump your more
&lt;br&gt;liquid assets, we *can* help!). No, all you need to do is sign up for a
&lt;br&gt;little half day ISWC tutorial, &amp;quot;Working with Explanations of OWL
&lt;br&gt;Entailments&amp;quot;, pay the quite reasonable fee, and buy a copy of my book,
&lt;br&gt;&amp;quot;10 easy ways to write seemingly inappropriate email&amp;quot; for the low low
&lt;br&gt;price of $39.95.
&lt;br&gt;&lt;br&gt;We at the University of Manchester want to help you understand the world
&lt;br&gt;*so much* that we put up a website:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://owl.cs.manchester.ac.uk/2009/iswc-exptut/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://owl.cs.manchester.ac.uk/2009/iswc-exptut/&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Under the gentle guidance of our crack team of explanation gurus, you'll
&lt;br&gt;move from being a mere explanandum**, to a full fledged explanans**!
&lt;br&gt;This tutorial is so hands on that you have to use your feet as well!
&lt;br&gt;&lt;br&gt;After this day, you'll be able to say that if it follows from your
&lt;br&gt;ontology, you know why!
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Bijan &amp;quot;Just because! *That's* why!&amp;quot; Parsia.
&lt;br&gt;&lt;br&gt;*Nothing personal, Jerome. It was just your turn.
&lt;br&gt;**Look 'em up on Wikipedia. What, I have to explain *everything*?!?!
&lt;br&gt;&lt;br&gt;------------------
&lt;br&gt;Testimonials:
&lt;br&gt;&lt;br&gt;&amp;quot;It's like being hit with the cluestick of happiness.&amp;quot; -- A Bijan
&lt;br&gt;Student Hoping For Some Brownie Points
&lt;br&gt;&lt;br&gt;&amp;quot;It changed my life...in a way. I'm not saying if it was a *good* way.&amp;quot;
&lt;br&gt;-- An Unduly Honest Bijan Student Nevertheless Hoping to Avoid Penalty
&lt;br&gt;Points
&lt;br&gt;&lt;br&gt;&amp;quot;Just go to the after party&amp;quot; -- Bijan's Favorite After Party Organizer
&lt;br&gt;&lt;br&gt;&amp;quot;My god, it's full of justifications!&amp;quot; -- Dr. David Bowman
&lt;br&gt;&lt;br&gt;&amp;quot;Go to hell, Parsia&amp;quot; -- Jerome
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ISWC-Tutorial%3A-Working-with-Explanations-of-OWL-Entailments-tp25655437p25655437.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25566014</id>
	<title>OWL 2 is now a W3C Proposed Recommendation</title>
	<published>2009-09-22T12:30:36Z</published>
	<updated>2009-09-22T12:30:36Z</updated>
	<author>
		<name>Sandro Hawke</name>
	</author>
	<content type="html">Following a successful Candidate Recommendation phase, during which we
&lt;br&gt;received reports of more than a dozen implementations [1], OWL 2 has
&lt;br&gt;advanced to Proposed Recommendation. &amp;nbsp;During this four-week phase, W3C
&lt;br&gt;member organizations [2] have a chance decide whether OWL 2 should be
&lt;br&gt;published as a W3C Recommendation.
&lt;br&gt;&lt;br&gt;We have published new versions of the documents [3], but the changes
&lt;br&gt;since Candidate Recommendation are all minor and editorial. &amp;nbsp;(The
&lt;br&gt;changes are detailed in a changelog in each document.) &amp;nbsp;No changes to
&lt;br&gt;software or ontologies should be required.
&lt;br&gt;&lt;br&gt;The new publications are linked from our documentation roadmap:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.w3.org/TR/2009/PR-owl2-overview-20090922/#Documentation_Roadmap&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/2009/PR-owl2-overview-20090922/#Documentation_Roadmap&lt;/a&gt;&lt;br&gt;&lt;br&gt;Comments are best sent to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25566014&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-comments@...&lt;/a&gt;. &amp;nbsp;General
&lt;br&gt;discussion of OWL 2 is probably best done on &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25566014&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;public-owl-dev@...&lt;/a&gt; [4].
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; -- Sandro &amp;nbsp; (W3C Staff Contact, OWL WG)
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://www.w3.org/2007/OWL/wiki/Implementations&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2007/OWL/wiki/Implementations&lt;/a&gt;&lt;br&gt;[2] &lt;a href=&quot;http://www.w3.org/Consortium/Member/List&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/Consortium/Member/List&lt;/a&gt;&lt;br&gt;[3] &lt;a href=&quot;http://www.w3.org/News/2009#item166&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/News/2009#item166&lt;/a&gt;&lt;br&gt;[4] &lt;a href=&quot;http://lists.w3.org/Archives/Public/public-owl-dev/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-owl-dev/&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OWL-2-is-now-a-W3C-Proposed-Recommendation-tp25566014p25566014.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25526263</id>
	<title>Last CFP  SWAT4LS - Semantic Web Applications and Tools for Life Sciences</title>
	<published>2009-09-19T15:43:52Z</published>
	<updated>2009-09-19T15:43:52Z</updated>
	<author>
		<name>Adrian Paschke</name>
	</author>
	<content type="html">&lt;br&gt;SWAT4LS Semantic Web Applications and Tools for Life Sciences
&lt;br&gt;&lt;br&gt;*** apologies for multiple postings ***
&lt;br&gt;&lt;br&gt;--- updates ---
&lt;br&gt;&lt;br&gt;We are glad to announce that there will be a special issue of the BMC &amp;nbsp;
&lt;br&gt;Journal of Biomedical Semantics dedicated to the SWAT4LS workshop. &amp;nbsp;
&lt;br&gt;This is a new open access journal published by BMC and we are &amp;nbsp;
&lt;br&gt;confident that the supplement will benefit from the additional &amp;nbsp;
&lt;br&gt;exposure and promotion associated with its launch (more information on &amp;nbsp;
&lt;br&gt;this journal can be found at &lt;a href=&quot;http://www.jbiomedsem.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.jbiomedsem.com/&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;The call for this special issue will be open to all the contributors &amp;nbsp;
&lt;br&gt;to the SWAT4LS workshop (accepted papers, posters and demos). Authors &amp;nbsp;
&lt;br&gt;will be invited to submit an extended version of their work, &amp;nbsp;
&lt;br&gt;elaborated in the light of the discussion held at the workshop. &amp;nbsp;
&lt;br&gt;Workshop proceedings will be published on CEUR.
&lt;br&gt;&lt;br&gt;In order to facilitate submissions, we have extended submission &amp;nbsp;
&lt;br&gt;deadlines as follows:
&lt;br&gt;&lt;br&gt;intention to submit (abstract only): &amp;nbsp; &amp;nbsp; October 5th
&lt;br&gt;submission of papers: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;October 12
&lt;br&gt;submission of posters and demos: &amp;nbsp; &amp;nbsp; &amp;nbsp;October 15
&lt;br&gt;communication of acceptance: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;October 28
&lt;br&gt;camera ready: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; November 13
&lt;br&gt;&lt;br&gt;Due to the limited time for reviews, we would ask you to submit an &amp;nbsp;
&lt;br&gt;abstract of your paper by October 5th, in order to facilitate &amp;nbsp;
&lt;br&gt;assignment of reviews.
&lt;br&gt;&lt;br&gt;The lenght of contributions to the workshop as been revised to offer &amp;nbsp;
&lt;br&gt;more flexibility:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Submissions for Oral communications should be between 8 and 15 &amp;nbsp;
&lt;br&gt;pages.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Posters submissions should be between 2 and 4 pages.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Software demo proposals should also be between 2 and 4 pages.
&lt;br&gt;&lt;br&gt;Finally, we would like to announce that the special issue BMC &amp;nbsp;
&lt;br&gt;Bioinformatics dedicated to SWAT4LS-2008 will be published on October &amp;nbsp;
&lt;br&gt;1st (BMC Bioinformatics, Vol 10, Supp 10)
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- call for papers ---
&lt;br&gt;&lt;br&gt;***Location and date
&lt;br&gt;Amsterdam, Science Park, November 20th 2009
&lt;br&gt;(&lt;a href=&quot;http://swat4ls.org/2009/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://swat4ls.org/2009/&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;&lt;br&gt;***Rationale
&lt;br&gt;&lt;br&gt;The adoption of semantic-enabled applications and collaborative social &amp;nbsp;
&lt;br&gt;environments is ever more common in the Life Sciences. The Semantic &amp;nbsp;
&lt;br&gt;Web provides a set of technologies and standards that are key to &amp;nbsp;
&lt;br&gt;support semantic markup, ontology development, distributed information &amp;nbsp;
&lt;br&gt;resources and collaborative social environments. Altogether the &amp;nbsp;
&lt;br&gt;adoption of the Semantic Web in the Life Sciences has potential impact &amp;nbsp;
&lt;br&gt;on the future of publishing, biological research and medecine. This &amp;nbsp;
&lt;br&gt;workshop will provide a venue to present and discuss benefits and &amp;nbsp;
&lt;br&gt;limits of the adoption of these technologies and tools in biomedical &amp;nbsp;
&lt;br&gt;informatics and computational biology. It will showcase experiences, &amp;nbsp;
&lt;br&gt;information resources, tools development and applications. It will &amp;nbsp;
&lt;br&gt;bring together researchers, both developers and users, from the &amp;nbsp;
&lt;br&gt;various fields of Biology, Bioinformatics and Computer Science, to &amp;nbsp;
&lt;br&gt;discuss goals, current limits and some real use cases for Semantic Web &amp;nbsp;
&lt;br&gt;technologies in Life Sciences.
&lt;br&gt;&lt;br&gt;&lt;br&gt;***Topics
&lt;br&gt;&lt;br&gt;Topics of interest include, but are not limited to:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Standards, Technologies, Tools for the Semantic Web
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Semantic Web standards and new proposals (RDF, OWL, &amp;nbsp;
&lt;br&gt;SKOS,... )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Biomedical Ontologies and related tools
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Formal approaches to large biomedical knowledge bases
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Systems for a Semantic Web for Bioinformatics
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o RDF stores, Reasoners, query and visualization systems &amp;nbsp;
&lt;br&gt;for life sciences
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Semantic biomedical Web Services
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Semantics aware Biological Data Integration Systems
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Existing and prospective applications of the Semantic Web for &amp;nbsp;
&lt;br&gt;Bioinformatics
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Semantics aware application tools
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Semantic collaborative research environments
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Case studies, use cases, and scenarios
&lt;br&gt;&lt;br&gt;***Scientific Program
&lt;br&gt;&lt;br&gt;The workshop will be interactive and include keynotes, oral &amp;nbsp;
&lt;br&gt;presentations, panel discussion and a poster and demo session.
&lt;br&gt;&lt;br&gt;The keynote speakers of this edition will be:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;* Barend Mons
&lt;br&gt;(&lt;a href=&quot;http://www.biosemantics.org/index.php?page=barend-mons&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.biosemantics.org/index.php?page=barend-mons&lt;/a&gt;&lt;br&gt;&lt;br&gt;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;* Michael Schroeder (&lt;a href=&quot;http://www.biotec.tu-dresden.de/schroeder&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.biotec.tu-dresden.de/schroeder&lt;/a&gt;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;* Alan Ruttenberg
&lt;br&gt;(&lt;a href=&quot;http://sciencecommons.org/about/whoweare/ruttenberg/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sciencecommons.org/about/whoweare/ruttenberg/&lt;/a&gt;&amp;nbsp;
&lt;br&gt;)
&lt;br&gt;&lt;br&gt;***Scientific Committee (committed so far:)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Christopher J. O. Baker, Department of Computer Science and &amp;nbsp;
&lt;br&gt;Applied Statistics, University of Brunswick, Canada
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Pedro Barahona, Department of Informatics, New University of &amp;nbsp;
&lt;br&gt;Lisboa, Lisboa, Portugal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Liliana Barrio-Alvers, Transinsight GmbH, Dresden, Germany
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Olivier Bodenreider, National Library of Medicine, Bethesda, &amp;nbsp;
&lt;br&gt;MD, United States of America
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Matt-Mouley Bouamrane, School of Computer Science, University &amp;nbsp;
&lt;br&gt;of Machester, manchester, United Kingdom
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Werner Ceusters, NY CoE in Bioinformatics and Life Sciences, &amp;nbsp;
&lt;br&gt;University at Buffalo, Buffalo, NY, United States of America
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Kei Cheung, Center for Medical Informatics, Yale University &amp;nbsp;
&lt;br&gt;School of Medicine, New Haven, United States of America
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Tim Clark, Massachusetts General Hospital and Harvard Medical &amp;nbsp;
&lt;br&gt;School, Boston MA, United States of America
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Marie-Dominique Devignes, LORIA, Vandoeuvre les Nancy, France
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Olivier Dameron, INSERM U936, University of Rennes 1, France
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Michel Dumontier, Carleton University, Ottawa, Ontario, Canada
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Huajun Chen, Zhejiang University, China
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Duncan Hull, School of Chemistry, University of Manchester, UK
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * C. Maria Keet, Faculty of Computer Science, Free University of &amp;nbsp;
&lt;br&gt;Bozen-Bolzano, Bolzano, Italy
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Graham Kemp, Chalmers University of Technology, Sweden
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Jacob Tilman Koehler, Department of Molecular Biotechnology, &amp;nbsp;
&lt;br&gt;Institute of Medical Biology, University of Tromsö, Tromsö, Norway
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Michael Krauthammer, Department of Pathology, Yale University &amp;nbsp;
&lt;br&gt;School of Medicine, United States of America
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Martin Kuiper, Department of Pathology, Systems Biology group, &amp;nbsp;
&lt;br&gt;Department of Biology, Norwegian University of Science and Technology, &amp;nbsp;
&lt;br&gt;Trondheim, Norway
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Patrick Lambrix, Department of Computer and Information &amp;nbsp;
&lt;br&gt;Science, Linköping University, Linköping, Sweden
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Phillip Lord, School of Computing Science, Newcastle &amp;nbsp;
&lt;br&gt;University, Newcastle-upon-Tyne, United Kingdom
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * M. Scott Marshall, Leiden University Medical Center / &amp;nbsp;
&lt;br&gt;University of Amsterdam, The Netherlands
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Chris Mungall, Lawrence Berkeley National Laboratories, United &amp;nbsp;
&lt;br&gt;States of America
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Stephan Philippi, Institute for Software Technology, &amp;nbsp;
&lt;br&gt;University of Koblenz-Landau, Koblenz, Germany
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Marco Roos, Instituut voor Informatica, University of &amp;nbsp;
&lt;br&gt;Amsterdam, Netherlands
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Alan Ruttenberg, Science Commons, Cambridge, MA, United States &amp;nbsp;
&lt;br&gt;of America
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Matthias Samwald, DERI, Galway, Ireland, and Konrad Lorenz &amp;nbsp;
&lt;br&gt;Institute for Evolution and Cognition Research, Altenberg, Austria
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Nigam Shah, Center for Biomedical Informatics Research, &amp;nbsp;
&lt;br&gt;Stanford, United States of America
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Michael Schröder, Biotechnology Centre, TU Dresden, Dresden, &amp;nbsp;
&lt;br&gt;Germany
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Robert Stevens, School of Computer Science, University of &amp;nbsp;
&lt;br&gt;Manchester, Manchester, United Kingdom
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Tetsuro Toyoda, Genomic Sciences Center, RIKEN, Yokohama, Japan
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Mark D. Wilkinson, iCAPTURE Center, St. Paul Hospital, &amp;nbsp;
&lt;br&gt;Vancouver, Canada
&lt;br&gt;&lt;br&gt;and the organizers
&lt;br&gt;&lt;br&gt;&lt;br&gt;***Type of contributions
&lt;br&gt;&lt;br&gt;The following possible contributions are sought:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Oral communications (regular papers)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Posters
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Software demos
&lt;br&gt;&lt;br&gt;&lt;br&gt;***Proceedings
&lt;br&gt;&lt;br&gt;All accepted oral communications and posters will be published with &amp;nbsp;
&lt;br&gt;the CEUR-WS.org Workshop Proceedings service (see &lt;a href=&quot;http://ceur-ws.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ceur-ws.org/&lt;/a&gt;).
&lt;br&gt;We are finalizing the agreement to have a dedicated special issue on &amp;nbsp;
&lt;br&gt;the 2009 edition of swat4ls in an international scientific journal of &amp;nbsp;
&lt;br&gt;the BMC group (open access, pubmed indexed).
&lt;br&gt;To this end, a special Call will be launched shortly after the &amp;nbsp;
&lt;br&gt;workshop, for extended and revised versions of contributions submitted &amp;nbsp;
&lt;br&gt;to the workshop and accepted either as oral communication or poster.
&lt;br&gt;&lt;br&gt;&lt;br&gt;***New Deadlines
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Intention to submit (abstract only): &amp;nbsp; &amp;nbsp; October 5th
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Submission of papers: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;October 12
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Submission of posters and demos: &amp;nbsp; &amp;nbsp; &amp;nbsp;October 15
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Communication of acceptance: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;October 28
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Camera ready: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; November 13
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;***Instructions
&lt;br&gt;&lt;br&gt;All papers and posters must be in English and must be submitted &amp;nbsp;
&lt;br&gt;through the EasyChair review system at
&lt;br&gt;&lt;a href=&quot;http://www.easychair.org/conferences/?conf=swat4ls-09&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.easychair.org/conferences/?conf=swat4ls-09&lt;/a&gt;&amp;nbsp;.
&lt;br&gt;Please upload all submissions as PDF files in LNCS format
&lt;br&gt;(&lt;a href=&quot;http://www.springer.de/comp/lncs/authors.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springer.de/comp/lncs/authors.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;).
&lt;br&gt;To ensure high quality, submitted papers will be carefully peer- 
&lt;br&gt;reviewed by at least three members of the Scientific Committee.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Submissions for Oral communications should be between 8 and 15 &amp;nbsp;
&lt;br&gt;pages.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Posters submissions should be between 2 and 4 pages.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * Software demo proposals should also be between 2 and 4 pages.
&lt;br&gt;&lt;br&gt;&lt;br&gt;***Organization
&lt;br&gt;&lt;br&gt;* M. Scott Marshall, Leiden University Medical Center / &amp;nbsp;
&lt;br&gt;University of Amsterdam, The Netherlands
&lt;br&gt;&lt;br&gt;* Albert Burger, School of Mathematical and Computer Sciences, &amp;nbsp;
&lt;br&gt;Heriot-Watt University, and Human Genetics Unit, Medical Research &amp;nbsp;
&lt;br&gt;Council, Edinburgh, Scotland, United Kingdom
&lt;br&gt;&lt;br&gt;* Adrian Paschke, Corporate Semantic Web, Freie Universitaet &amp;nbsp;
&lt;br&gt;Berlin, Germany
&lt;br&gt;&lt;br&gt;* Paolo Romano, Bioinformatics, National Cancer Research &amp;nbsp;
&lt;br&gt;Institute, Genova, Italy
&lt;br&gt;&lt;br&gt;* Andrea Splendiani, Biomathematics and Bioinformatics dept., &amp;nbsp;
&lt;br&gt;Rothamsted Research, UK
&lt;br&gt;&lt;br&gt;***More information
&lt;br&gt;&amp;nbsp; &amp;nbsp; * &lt;a href=&quot;http://www.swat4ls.org/2009/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.swat4ls.org/2009/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; * &lt;a href=&quot;http://swat4ls.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://swat4ls.blogspot.com&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; * &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25526263&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Last-CFP--SWAT4LS---Semantic-Web-Applications-and-Tools-for-Life-Sciences-tp25526263p25526263.html" />
</entry>

</feed>
