Merge updates prov-aq
authorGraham Klyne
Thu, 29 Mar 2012 18:47:22 +0100
changeset 2103 21659aade24e
parent 2102 e55ca744d14e (current diff)
parent 2101 7a52f79f5f93 (diff)
child 2105 fe4da78d81bc
Merge updates prov-aq
model/images/collections.png.tmp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-20-collections-exercise/document/homepage	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,2 @@
+http://www.w3.org/2011/prov/wiki/Eg-20-collections-exercise
+http://dvcs.w3.org/hg/prov/file/tip/examples/eg-20-collections-exercise
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,254 @@
+@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:     <http://www.w3.org/2002/07/owl#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix sd:      <http://www.w3.org/ns/sparql-service-description#> .
+@prefix dcat:    <http://www.w3.org/ns/dcat#> .
+@prefix void:    <http://rdfs.org/ns/void#> .
+@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
+@prefix prov:    <http://www.w3.org/ns/prov#> .
+@prefix :        <http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#> .
+
+### already in prov, added to test OWL profile ###
+
+prov:Entity a owl:Class .
+
+### classes ###
+
+prov:Collection a owl:Class ;
+   rdfs:subClassOf prov:Entity .
+
+prov:EmptyCollection a owl:Class ;
+   rdfs:subClassOf prov:Collection .
+
+# could be a subClassOf prov:Derivation
+prov:DerivationByInsertion a owl:Class .
+
+# could be a subClassOf prov:Derivation
+prov:DerivationByRemoval a owl:Class .
+
+prov:Membership a owl:Class .
+
+prov:KeyEntityPair a owl:Class .
+
+# OWL DL replacements for rdf:Bag
+prov:ObjectSet a owl:Class .
+prov:LiteralSet a owl:Class .
+
+prov:KeyEntitySet a owl:Class ;
+   rdfs:subClassOf prov:ObjectSet .
+
+prov:KeySet a owl:Class ;
+   rdfs:subClassOf prov:LiteralSet .
+
+### object properties ###
+
+prov:derivedByRemoval a owl:ObjectProperty ;
+   rdfs:domain prov:Collection ;
+   rdfs:range prov:DerivationByRemoval .
+
+prov:derivedByInsertion a owl:ObjectProperty ;
+   rdfs:domain prov:Collection ;
+   rdfs:range prov:DerivationByInsertion .
+
+prov:knownMembership a owl:ObjectProperty ;
+   rdfs:domain prov:Collection ;
+   rdfs:range prov:Membership .
+
+# change to previousState? previousCollection?
+prov:beforeDerivation a owl:ObjectProperty ;
+   rdfs:range prov:Collection .
+
+# not needed; could be inferred
+prov:afterDerivation a owl:ObjectProperty ;
+   rdfs:range prov:Collection .
+
+prov:hasKeyEntitySet a owl:ObjectProperty ;
+   rdfs:range prov:KeyEntitySet .
+
+prov:hasKeySet a owl:ObjectProperty ;
+   rdfs:range prov:KeySet .
+
+prov:value a owl:ObjectProperty .
+
+prov:objectMember a owl:ObjectProperty ;
+   rdfs:comment "used with prov:ObjectSet"^^xsd:string .
+
+### datatype properties ###
+
+prov:key a owl:DatatypeProperty .
+
+prov:literalMember a owl:DatatypeProperty ;
+   rdfs:comment "used with prov:LiteralSet"^^xsd:string .
+
+### examples ###
+
+### Insertion ###
+
+#entity(c, [prov:type="EmptyCollection"])
+:c a prov:EmptyCollection .
+
+#entity(e1)
+:e1 a prov:Entity .
+
+#entity(e2)
+:e2 a prov:Entity .
+
+#entity(e3)
+:e3 a prov:Entity .
+
+#entity(c1, [prov:type="Collection"])
+:c1 a prov:Collection .
+
+#entity(c2, [prov:type="Collection"])
+:c2 a prov:Collection .
+  
+#derivedByInsertionFrom(c1, c,  {("k1", e1), ("k2", e2)})
+:c1 prov:derivedByInsertion
+   [ a prov:DerivationByInsertion ;
+     prov:beforeDerivation :c ;
+     prov:hasKeyEntitySet 
+      [ a prov:KeyEntitySet ;
+        prov:objectMember
+         [ a prov:KeyEntityPair ;
+           prov:key "k1"^^xsd:string ;
+           prov:value :e1 ;
+         ] ;
+        prov:objectMember
+         [ a prov:KeyEntityPair ;
+           prov:key "k2"^^xsd:string ;
+           prov:value :e2 ;
+         ]
+      ]
+   ].
+   
+#derivedByInsertionFrom(c2, c1, {("k3", e3)})
+:c2 prov:derivedByInsertion
+   [ a prov:DerivationByInsertion ;
+     prov:beforeDerivation :c1 ;
+     prov:hasKeyEntitySet
+      [ a prov:KeyEntitySet ;
+        prov:objectMember
+         [ a prov:KeyEntityPair ;
+           prov:key "k3"^^xsd:string ;
+           prov:value :e3
+         ]
+      ]
+   ] .
+
+### Removal ###
+
+#entity(c, [prov:type="EmptyCollection"])
+:c a prov:EmptyCollection .
+
+#entity(e1)
+:e1 a prov:Entity .
+
+#entity(e2)
+:e2 a prov:Entity .
+
+#entity(e3)
+:e3 a prov:Entity .
+
+#entity(c1, [prov:type="Collection"])
+:c1 a prov:Collection .
+
+#entity(c2, [prov:type="Collection"])
+:c2 a prov:Collection .
+
+#derivedByInsertionFrom(c1, c, {("k1", e1), ("k2",e2)})
+:c1 prov:derivedByInsertion
+   [ a prov:DerivationByInsertion ;
+     prov:beforeDerivation :c ;
+     prov:hasKeyEntitySet 
+      [ a prov:KeyEntitySet ;
+        prov:objectMember
+         [ a prov:KeyEntityPair ;
+           prov:key "k1"^^xsd:string ;
+           prov:value :e1 ;
+         ] ;
+        prov:objectMember
+         [ a prov:KeyEntityPair ;
+           prov:key "k2"^^xsd:string ;
+           prov:value :e2 ;
+         ]
+      ]
+   ].
+
+#derivedByInsertionFrom(c2, c1, {("k3", e3)})
+:c2 prov:derivedByInsertion
+   [ a prov:DerivationByInsertion ;
+     prov:beforeDerivation :c1 ;
+     prov:hasKeyEntitySet
+      [ a prov:KeyEntitySet ;
+        prov:objectMember
+         [ a prov:KeyEntityPair ;
+           prov:key "k3"^^xsd:string ;
+           prov:value :e3
+         ]
+      ]
+   ] .
+
+#entity(c3, [prov:type="Collection"])
+:c3 a prov:Collection .
+
+#derivedByRemovalFrom(c3, c2, {k1, k3})
+:c3 prov:derivedByRemoval
+   [ a prov:DerivationByRemoval ;
+     prov:beforeDerivation :c2 ;
+     prov:hasKeySet
+      [ a prov:KeySet ;
+        rdf:literalMember "k1"^^xsd:string ;
+        rdf:literalMember "k3"^^xsd:string
+      ]
+   ].
+
+### Membership ###
+
+# entity(c, [prov:type="Collection"])
+:c a prov:Collection .
+
+# entity(e1)
+:e1 a prov:Entity .
+
+# entity(e2)
+:e2 a prov:Entity .
+
+# memberOf(c, {("k1", e1), ("k2", e2)} )  
+:c prov:knownMembership 
+   [ a prov:Membership ;
+     prov:hasKeyEntitySet 
+      [ a prov:KeyEntitySet ;
+        prov:objectMember
+         [ a prov:KeyEntityPair ;
+           prov:key "k1"^^xsd:string ;
+           prov:value :e1
+         ] ;
+        prov:objectMember
+         [ a prov:KeyEntityPair ;
+            prov:key "k2"^^xsd:string ;
+            prov:value :e2
+         ]
+      ]
+   ] .
+
+# entity(e3)
+:e3 a prov:Entity .
+
+# entity(c1, [prov:type="Collection"])
+:c1 a prov:Collection .
+
+# derivedByInsertionFrom(c1, c, {("k3", e3)}) 
+:c1 prov:derivedByInsertion 
+   [ a prov:DerivationByInsertion ;
+     prov:beforeDerivation :c ;
+     prov:hasKeyEntitySet 
+      [ a prov:KeyEntitySet ;
+        prov:objectMember 
+         [ a prov:KeyEntityPair ;
+           prov:key "k3"^^xsd:string ;
+           prov:value :e3
+         ]
+      ] 
+   ] .
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl.sd_name	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,1 @@
+http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-20-collections-exercise/rdf/illustrate/eg-20-collections-exercise.ttl.rdf.graffle	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,15310 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>ActiveLayerIndex</key>
+	<integer>0</integer>
+	<key>ApplicationVersion</key>
+	<array>
+		<string>com.omnigroup.OmniGrafflePro</string>
+		<string>138.33.0.157554</string>
+	</array>
+	<key>AutoAdjust</key>
+	<true/>
+	<key>BackgroundGraphic</key>
+	<dict>
+		<key>Bounds</key>
+		<string>{{0, 0}, {2304, 1466}}</string>
+		<key>Class</key>
+		<string>SolidGraphic</string>
+		<key>ID</key>
+		<integer>2</integer>
+		<key>Style</key>
+		<dict>
+			<key>shadow</key>
+			<dict>
+				<key>Draws</key>
+				<string>NO</string>
+			</dict>
+			<key>stroke</key>
+			<dict>
+				<key>Draws</key>
+				<string>NO</string>
+			</dict>
+		</dict>
+	</dict>
+	<key>CanvasOrigin</key>
+	<string>{0, 0}</string>
+	<key>ColumnAlign</key>
+	<integer>1</integer>
+	<key>ColumnSpacing</key>
+	<real>36</real>
+	<key>CreationDate</key>
+	<string>2008-06-25 22:23:07 +0000</string>
+	<key>Creator</key>
+	<string>lebot</string>
+	<key>DisplayScale</key>
+	<string>1 0/72 in = 1.0000 in</string>
+	<key>FileType</key>
+	<string>flat</string>
+	<key>GraphDocumentVersion</key>
+	<integer>8</integer>
+	<key>GraphicsList</key>
+	<array>
+		<dict>
+			<key>Bounds</key>
+			<string>{{505.14111, 395.75461}, {69, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1058</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1057</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:domain}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{718.16888, 214.97063}, {59, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1060</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1059</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:range}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{516.48944, 583.30981}, {69, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1062</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1061</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:domain}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{715.99249, 559.63672}, {59, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1064</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1063</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:range}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{523.53186, 547.43658}, {69, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1066</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1065</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:domain}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{733.21185, 506.19391}, {59, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1068</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1067</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:range}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{208.00938, 627.36218}, {59, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1070</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1069</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:range}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{205.17163, 603.59229}, {59, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1072</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1071</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:range}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{253.33612, 340.05481}, {59, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1074</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1073</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:range}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{253.90619, 250.59677}, {59, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1076</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1075</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:range}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{241.71503, 162}, {79, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1079</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1077</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:comment}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{241.3638, 90}, {79, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1083</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1081</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:comment}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{764.83215, 409.04962}, {89, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1086</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1085</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:subClassOf}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{241.74063, 365.20813}, {89, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1088</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1087</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:subClassOf}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{252.81006, 275.57257}, {89, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1090</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1089</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:subClassOf}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{194.4561, 804.77411}, {89, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1092</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1091</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdfs:subClassOf}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1023.7007, 769.50012}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1094</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1093</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1023.7007, 769.49988}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1096</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1095</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1023.7007, 769.50012}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1098</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1097</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1023.7029, 937.42218}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1100</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1099</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1023.7029, 937.42218}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1102</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1101</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1023.7029, 937.42218}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1104</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1103</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{924.65594, 831.05048}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1106</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1105</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{924.65594, 831.05042}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1108</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1107</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{924.65594, 831.05035}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1110</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1109</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1361.8959, 252.32315}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1112</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1111</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1361.8959, 252.32315}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1114</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1113</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{920.57733, 481.85101}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1116</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1115</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1586.3855, 346.03546}, {133, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1118</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1117</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:knownMembership}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{829.75549, 565.047}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1120</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1119</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1340.7012, 505}, {131, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1122</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1121</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:derivedByInsertion}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{829.75549, 565.047}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1124</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1123</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1339.1874, 486.59344}, {131, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1126</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1125</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:derivedByInsertion}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{829.75549, 565.047}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1128</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1127</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1339.1874, 523.40753}, {131, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1130</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1129</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:derivedByInsertion}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{727.68359, 615.43042}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1132</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1131</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1078.3176, 611.46356}, {131, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1134</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1133</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:derivedByInsertion}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{727.68359, 615.43042}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1136</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1135</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1076.8038, 592.18677}, {131, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1138</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1137</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:derivedByInsertion}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{538.45709, 495.45837}, {46, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1140</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1139</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:type}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{689.36853, 426}, {128, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1142</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1141</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:derivedByRemoval}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1787.5078, 367}, {116, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1144</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1143</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:hasKeyEntitySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1339.4329, 669.29004}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1146</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1145</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1335.9329, 585.38165}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1148</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1147</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1667.5493, 562.49438}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1150</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1149</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1083.5907, 442.98682}, {97, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1153</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1151</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:literalMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1083.5907, 426.57928}, {97, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1157</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1155</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 rdf:literalMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1907.0493, 527}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1160</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1159</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1906.3676, 715.92719}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1162</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1161</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1905.0631, 463.57114}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1164</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1163</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1905.0631, 480.76266}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1166</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1165</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1903.5493, 365.67679}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1168</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1167</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1903.5493, 382.87042}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1170</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1169</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2054.0493, 526.16058}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1173</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1171</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2049.7048, 566.52307}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1175</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1174</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2054.0493, 953.02563}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1178</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1176</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2047.5354, 976.07629}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1181</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1180</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1550.4604, 703}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1184</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1182</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1646.0208, 726.81586}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1186</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1185</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2054.0493, 412.50494}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1189</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1187</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2051.4929, 521.33777}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1191</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1190</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2054.0493, 467.89059}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1194</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1192</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2050.9248, 706.96112}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1196</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1195</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1548.4742, 591}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1199</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1197</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1644.0345, 662.45703}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1201</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1200</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2052.063, 333.3241}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1204</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1202</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2049.2524, 475.93912}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1206</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1205</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2052.063, 372.32074}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1209</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1207</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2048.9062, 661.5625}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1211</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1210</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1819.0907, 572}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1214</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1212</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1816.5485, 654.09546}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1216</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1215</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{908.29504, 504.85541}, {121, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1218</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1217</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:beforeDerivation}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{920.01569, 426.43759}, {86, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1220</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1219</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:hasKeySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1451.3092, 427.63306}, {121, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1222</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1221</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:beforeDerivation}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1616.507, 514.56903}, {116, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1224</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1223</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:hasKeyEntitySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1192.7532, 567.20801}, {121, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1226</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1225</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:beforeDerivation}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1191.0493, 626.78595}, {116, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1228</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1227</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:hasKeyEntitySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1449.4427, 405.50125}, {121, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1230</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1229</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:beforeDerivation}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1613.007, 471.65442}, {116, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1232</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1231</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:hasKeyEntitySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1188.0769, 546.33978}, {121, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1234</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1233</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:beforeDerivation}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1187.5493, 577.64508}, {116, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1236</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1235</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:hasKeyEntitySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1449.2877, 449.76489}, {121, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1238</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1237</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:beforeDerivation}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1510.9329, 548.81976}, {116, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>w</key>
+					<string>0</string>
+				</dict>
+				<key>Font</key>
+				<string>Courier</string>
+				<key>Size</key>
+				<real>12</real>
+			</dict>
+			<key>ID</key>
+			<integer>1240</integer>
+			<key>Line</key>
+			<dict>
+				<key>ID</key>
+				<integer>1239</integer>
+				<key>Position</key>
+				<real>0.43251731991767883</real>
+				<key>RotationType</key>
+				<integer>0</integer>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red102\green102\blue102;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2 prov:hasKeyEntitySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{36, 1041.5}, {256, 43}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1001</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>TODO</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 (22)   owl:   http://www.w3.org/2002/07/owl#\
+(93)   prov:   http://www.w3.org/ns/prov#\
+}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>prefix mappings for</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1001</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1001</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>--PREFIX MAPPINGS USED--</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1001</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{137, 1006}, {54, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1002</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2002/07/owl#Class</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 owl:Class}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/2002/07/owl#Class</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1002</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1002</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/2002/07/owl#Class</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1002</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{111.00001, 970}, {106, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1003</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2002/07/owl#ObjectProperty</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 owl:ObjectProperty}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/2002/07/owl#ObjectProperty</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1003</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1003</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/2002/07/owl#ObjectProperty</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1003</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{104.5, 934}, {119, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1004</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2002/07/owl#DatatypeProperty</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 owl:DatatypeProperty}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/2002/07/owl#DatatypeProperty</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1004</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1004</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/2002/07/owl#DatatypeProperty</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1004</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{585, 216}, {128, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1005</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#derivedByRemoval</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:derivedByRemoval}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#derivedByRemoval</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1005</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1005</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#derivedByRemoval</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1005</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{583.5, 558}, {131, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1006</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#derivedByInsertion</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:derivedByInsertion}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#derivedByInsertion</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1006</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1006</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#derivedByInsertion</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1006</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{582.5, 504}, {133, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1007</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#knownMembership</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:knownMembership}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#knownMembership</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1007</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1007</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#knownMembership</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1007</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{67.999992, 630.96356}, {121, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1008</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:beforeDerivation}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1008</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1008</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1008</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{73, 591.96356}, {111, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1009</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#afterDerivation</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:afterDerivation}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#afterDerivation</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1009</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1009</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#afterDerivation</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1009</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{105.99999, 337}, {116, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1010</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeyEntitySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1010</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1010</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1010</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{120.99999, 234}, {86, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1011</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeySet</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#hasKeySet</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1011</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1011</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#hasKeySet</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1011</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{134, 198}, {60, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1012</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1012</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1012</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1012</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{110, 162}, {108, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1013</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 used with prov:ObjectSet}</string>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.87</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:ObjectProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1013</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1013</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1013</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{139, 125.99999}, {50, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1014</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>1</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>0.89</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:DatatypeProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1014</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1014</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1014</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{110.99999, 90}, {106, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1015</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#literalMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 used with prov:LiteralSet}</string>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>1</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>0.89</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.6</string>
+						<key>g</key>
+						<string>0.6</string>
+						<key>r</key>
+						<string>0.6</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:literalMember}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:DatatypeProperty, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#literalMember</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1015</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1015</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#literalMember</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1015</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1160.5493, 172}, {170, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1016</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#EmptyCollection</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:EmptyCollection}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#EmptyCollection</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1016</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1016</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#EmptyCollection</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1016</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{786, 554}, {212, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1017</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#DerivationByInsertion</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:DerivationByInsertion}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#DerivationByInsertion</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1017</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1017</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#DerivationByInsertion</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1017</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{793, 204}, {198, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1018</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#DerivationByRemoval</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:DerivationByRemoval}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#DerivationByRemoval</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1018</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1018</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#DerivationByRemoval</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1018</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{824.5, 500}, {135, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1019</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#Membership</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:Membership}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#Membership</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1019</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1019</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#Membership</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1019</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{86.000008, 36}, {156, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1020</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#KeyEntityPair</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:KeyEntityPair}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#KeyEntityPair</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1020</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1020</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#KeyEntityPair</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1020</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{362.5, 335}, {149, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1021</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#KeyEntitySet</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:KeyEntitySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#KeyEntitySet</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1021</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1021</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#KeyEntitySet</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1021</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{383.5, 263}, {107, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1022</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#KeySet</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:KeySet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#KeySet</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1022</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1022</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#KeySet</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1022</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{110.49999, 880}, {107, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1023</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#Entity</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:Entity}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#Entity</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1023</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1023</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#Entity</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1023</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{301, 535}, {202, 192}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1024</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#Collection</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:Collection}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#Collection</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1024</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1024</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#Collection</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1024</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{99.999992, 373}, {128, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1025</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#ObjectSet</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:ObjectSet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#ObjectSet</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1025</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1025</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#ObjectSet</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1025</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{96.5, 270}, {135, 36}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>Clip</string>
+			<key>Flow</key>
+			<string>Clip</string>
+			<key>ID</key>
+			<integer>1026</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#LiteralSet</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.952941</string>
+						<key>g</key>
+						<string>1</string>
+						<key>r</key>
+						<string>1</string>
+					</dict>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.69</string>
+						<key>g</key>
+						<string>0.69</string>
+						<key>r</key>
+						<string>0.69</string>
+					</dict>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:LiteralSet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>TextPlacement</key>
+			<integer>0</integer>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>owl:Class, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://www.w3.org/ns/prov#LiteralSet</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1026</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1026</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#LiteralSet</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1026</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2134, 620}, {34, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1027</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e1</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 eg:e1}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:Entity, prov:Entity, prov:Entity, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e1</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1027</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1027</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e1</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1027</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2134, 998}, {34, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1028</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e2</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 eg:e2}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:Entity, prov:Entity, prov:Entity, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e2</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1028</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1028</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e2</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1028</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1905, 759}, {34, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1029</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e3</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 eg:e3}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:Entity, prov:Entity, prov:Entity, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e3</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1029</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1029</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#e3</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1029</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1521, 328.93253}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1030</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 eg:c}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:EmptyCollection, prov:EmptyCollection, prov:Collection, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1030</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1030</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1030</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1311, 505.00003}, {34, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1031</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c1</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 eg:c1}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:Collection, prov:Collection, prov:Collection, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c1</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1031</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1031</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c1</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1031</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1075, 609}, {34, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1032</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c2</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 eg:c2}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:Collection, prov:Collection, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c2</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1032</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1032</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c2</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1032</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{632, 426}, {34, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1033</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c3</string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 eg:c3}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:Collection, </string>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c3</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1033</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1033</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-20-collections-exercise/rdf/eg-20-collections-exercise.ttl#c3</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1033</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1790.5, 367}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1034</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:Membership, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid20</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1034</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1034</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid20</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1034</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1307.5, 643}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1035</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntitySet, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid6</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1035</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1035</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid6</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1035</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1304, 581}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1036</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntitySet, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid13</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1036</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1036</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid13</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1036</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1662, 555}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1037</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntitySet, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid22</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1037</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1037</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid22</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1037</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1068, 427}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1038</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeySet, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid15</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1038</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1038</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid15</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1038</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1901.5, 527}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1039</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntitySet, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid3</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1039</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1039</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid3</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1039</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1898, 479}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1040</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntitySet, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid10</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1040</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1040</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid10</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1040</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1898, 367}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1041</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntitySet, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid19</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1041</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1041</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid19</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1041</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2019.5, 527}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1042</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid1</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1042</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1042</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid1</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1042</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2019.5, 961}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1043</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid2</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1043</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1043</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid2</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1043</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1486.5, 703}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1044</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid5</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1044</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1044</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid5</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1044</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2019.5, 444}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1045</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid8</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1045</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1045</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid8</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1045</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2019.5, 483}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1046</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid9</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1046</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1046</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid9</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1046</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1483, 591}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1047</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid12</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1047</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1047</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid12</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1047</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2016, 364}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1048</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid17</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1048</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1048</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid17</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1048</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2016, 403}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1049</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid18</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1049</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1049</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid18</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1049</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1780, 572}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1050</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:KeyEntityPair, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid21</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1050</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1050</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid21</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1050</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{868, 426}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1051</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:DerivationByRemoval, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid16</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1051</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1051</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid16</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1051</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1486.5, 505.00003}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1052</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:DerivationByInsertion, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid4</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1052</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1052</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid4</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1052</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1189.5, 614}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1053</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:DerivationByInsertion, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid7</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1053</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1053</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid7</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1053</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1483, 466}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1054</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:DerivationByInsertion, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid11</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1054</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1054</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid11</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1054</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1186, 575}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1055</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:DerivationByInsertion, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid14</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1055</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1055</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid14</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1055</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1483, 544}, {15, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>ID</key>
+			<integer>1056</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string></string>
+			</dict>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Pad</key>
+				<integer>2</integer>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 [ ]}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/curieTypeList</key>
+				<string>prov:DerivationByInsertion, </string>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>genid23</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1056</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1056</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid23</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1056</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1005</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1057</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#domain</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:domain}</string>
+			<key>Points</key>
+			<array>
+				<string>{460.66348, 534.57281}</string>
+				<string>{643.26337, 234.42714}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1018</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1059</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#range</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:range}</string>
+			<key>Points</key>
+			<array>
+				<string>{713.5, 224.3271}</string>
+				<string>{792.50006, 223.50293}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1005</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1006</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1061</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#domain</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:domain}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.48398, 604.64624}</string>
+				<string>{613.31879, 576.12384}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1017</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1063</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#range</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:range}</string>
+			<key>Points</key>
+			<array>
+				<string>{714.99994, 568.11951}</string>
+				<string>{785.50018, 569.31537}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1006</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1007</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1065</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#domain</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:domain}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.45111, 582.51929}</string>
+				<string>{629.64435, 522.2149}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1019</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1067</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#range</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:range}</string>
+			<key>Points</key>
+			<array>
+				<string>{715.99988, 514.29266}</string>
+				<string>{824.00012, 516.37634}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1007</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1069</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#range</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:range}</string>
+			<key>Points</key>
+			<array>
+				<string>{189.49973, 637.9483}</string>
+				<string>{300.50027, 634.28113}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1008</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1071</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#range</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:range}</string>
+			<key>Points</key>
+			<array>
+				<string>{184.49704, 607.0968}</string>
+				<string>{300.50302, 619.80267}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1009</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1021</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1073</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#range</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:range}</string>
+			<key>Points</key>
+			<array>
+				<string>{222.49982, 347.50381}</string>
+				<string>{362.00015, 351.08981}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1010</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1022</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1075</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#range</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:range}</string>
+			<key>Points</key>
+			<array>
+				<string>{207.49524, 249.04559}</string>
+				<string>{383.00482, 273.44043}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1011</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1078</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1077</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#comment</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:comment}</string>
+			<key>Points</key>
+			<array>
+				<string>{218.5, 171}</string>
+				<string>{363.5, 171}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1013</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{363.5, 162}, {147, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>1</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1078</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  used with prov:ObjectSet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>"used with prov:ObjectSet"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1080</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1080</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#objectMember_http://www.w3.org/2000/01/rdf-schema#comment_used with prov:ObjectSet_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1080</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1082</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1081</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#comment</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:comment}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.5, 99}</string>
+				<string>{364, 99}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1015</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{364, 90}, {146, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>1</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1082</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>fill</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  used with prov:LiteralSet}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depicts</key>
+				<string>"used with prov:LiteralSet"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1084</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1084</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>http://www.w3.org/ns/prov#literalMember_http://www.w3.org/2000/01/rdf-schema#comment_used with prov:LiteralSet_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1084</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1016</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1085</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#subClassOf</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:subClassOf}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.44312, 577.96625}</string>
+				<string>{1210.6726, 208.23163}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1021</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1087</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#subClassOf</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:subClassOf}</string>
+			<key>Points</key>
+			<array>
+				<string>{228.49535, 382.14044}</string>
+				<string>{362.0051, 363.80054}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1025</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1022</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1089</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#subClassOf</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:subClassOf}</string>
+			<key>Points</key>
+			<array>
+				<string>{231.99982, 286.25171}</string>
+				<string>{383.00015, 282.36948}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1026</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1091</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/2000/01/rdf-schema#subClassOf</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdfs:subClassOf}</string>
+			<key>Points</key>
+			<array>
+				<string>{180.35135, 879.62646}</string>
+				<string>{315.84824, 727.37274}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1027</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1093</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99548, 890.69012}</string>
+				<string>{2134, 631.30164}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1027</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1095</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99548, 890.69012}</string>
+				<string>{2134, 631.30115}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1027</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1097</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99548, 890.69012}</string>
+				<string>{2134, 631.3017}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1028</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1099</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99925, 900.96222}</string>
+				<string>{2134.0002, 1006.0677}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1028</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1101</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99925, 900.96222}</string>
+				<string>{2134.0002, 1006.0678}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1028</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1103</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99925, 900.96222}</string>
+				<string>{2134.0002, 1006.0677}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1029</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1105</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99864, 894.00696}</string>
+				<string>{1905, 769.25708}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1029</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1107</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99852, 894.00696}</string>
+				<string>{1905.0001, 769.2569}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1029</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1109</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{217.99852, 894.00696}</string>
+				<string>{1905.0001, 769.25677}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1023</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1030</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1111</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{1281.1616, 208.22783}</string>
+				<string>{1521, 330.98663}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1016</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1030</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1113</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{1281.1616, 208.22783}</string>
+				<string>{1521, 330.98663}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1016</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1030</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1115</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.48407, 604.73804}</string>
+				<string>{1521, 341.42599}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1034</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1117</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#knownMembership</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:knownMembership}</string>
+			<key>Points</key>
+			<array>
+				<string>{1548, 339.88284}</string>
+				<string>{1790.5, 374.91641}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1030</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1031</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1119</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.49606, 618.17596}</string>
+				<string>{1311, 516.14777}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1052</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1121</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#derivedByInsertion</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:derivedByInsertion}</string>
+			<key>Points</key>
+			<array>
+				<string>{1345, 514}</string>
+				<string>{1486.5, 514}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1031</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1031</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1123</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.49606, 618.17596}</string>
+				<string>{1311, 516.14777}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1054</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1125</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#derivedByInsertion</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:derivedByInsertion}</string>
+			<key>Points</key>
+			<array>
+				<string>{1345, 509.91965}</string>
+				<string>{1483, 476.79681}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1031</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1031</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1127</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.49606, 618.17596}</string>
+				<string>{1311, 516.14777}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1056</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1129</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#derivedByInsertion</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:derivedByInsertion}</string>
+			<key>Points</key>
+			<array>
+				<string>{1345, 518.08057}</string>
+				<string>{1483, 551.2052}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1031</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1032</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1131</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.49991, 629.08765}</string>
+				<string>{1075, 618.31995}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1053</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1133</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#derivedByInsertion</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:derivedByInsertion}</string>
+			<key>Points</key>
+			<array>
+				<string>{1109, 618.80823}</string>
+				<string>{1189.5, 622.63538}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1032</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1032</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1135</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.49991, 629.08765}</string>
+				<string>{1075, 618.31995}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1055</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1137</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#derivedByInsertion</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:derivedByInsertion}</string>
+			<key>Points</key>
+			<array>
+				<string>{1109, 612.31805}</string>
+				<string>{1186, 586.58203}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1032</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1033</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1139</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#type</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:type}</string>
+			<key>Points</key>
+			<array>
+				<string>{503.39166, 550.53784}</string>
+				<string>{637.64166, 444}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.68</string>
+						<key>g</key>
+						<string>0.68</string>
+						<key>r</key>
+						<string>0.68</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>0</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>FilledArrow</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1024</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1051</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1141</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#derivedByRemoval</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:derivedByRemoval}</string>
+			<key>Points</key>
+			<array>
+				<string>{666, 435}</string>
+				<string>{868, 435}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1033</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1041</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1143</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeyEntitySet}</string>
+			<key>Points</key>
+			<array>
+				<string>{1805.5, 376}</string>
+				<string>{1898, 376}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1034</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1044</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1145</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1322.5, 654.51392}</string>
+				<string>{1486.5, 709.48535}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1035</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1047</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1147</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1319, 590.41901}</string>
+				<string>{1483, 599.58081}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1036</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1050</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1149</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1677, 565.0799}</string>
+				<string>{1780, 579.91046}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1037</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1152</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1151</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#literalMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:literalMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1083, 438.11874}</string>
+				<string>{1196.5, 470.1824}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1038</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1196.5, 465}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1152</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k1}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k1"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1154</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1154</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid15_http://www.w3.org/1999/02/22-rdf-syntax-ns#literalMember_k1_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1154</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1156</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1155</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/1999/02/22-rdf-syntax-ns#literalMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 rdf:literalMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1083, 435.94424}</string>
+				<string>{1196.5, 435.10046}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1038</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1196.5, 426}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1156</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k3}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k3"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1158</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1158</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid15_http://www.w3.org/1999/02/22-rdf-syntax-ns#literalMember_k3_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1158</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1042</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1159</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1916.5, 536}</string>
+				<string>{2019.5, 536}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1039</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1043</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1161</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1911.447, 545}</string>
+				<string>{2024.5535, 961}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1039</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1045</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1163</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1913, 485.83963}</string>
+				<string>{2019.5, 455.16229}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1040</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1046</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1165</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1913, 488.24683}</string>
+				<string>{2019.5, 491.75153}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1040</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1048</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1167</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1913, 375.80933}</string>
+				<string>{2016, 373.19086}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1041</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1049</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1169</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#objectMember</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:objectMember}</string>
+			<key>Points</key>
+			<array>
+				<string>{1913, 378.28683}</string>
+				<string>{2016, 409.69275}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1041</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1172</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1171</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{2034.5, 535.87903}</string>
+				<string>{2137.5, 534.21796}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1042</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2137.5, 525}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1172</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k1}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k1"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1154</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1154</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid1_http://www.w3.org/ns/prov#key_k1_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1154</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1027</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1174</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{2034.5, 541.62421}</string>
+				<string>{2139.0156, 620}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1042</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1177</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1176</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{2034.5, 968.85095}</string>
+				<string>{2137.5, 953.07043}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1043</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2137.5, 942}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1177</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k2}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k2"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1179</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1179</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid2_http://www.w3.org/ns/prov#key_k2_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1179</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1028</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1180</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{2034.5, 972.23749}</string>
+				<string>{2134, 1001.9214}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1043</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1183</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1182</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{1501.5, 712}</string>
+				<string>{1672.5, 712}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1044</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1672.5, 703}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1183</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k3}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k3"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1158</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1158</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid5_http://www.w3.org/ns/prov#key_k3_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1158</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1029</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1185</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{1501.5, 712.98132}</string>
+				<string>{1905, 765.77576}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1044</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1188</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1187</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{2034.5, 448.46173}</string>
+				<string>{2137.5, 386.13638}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1045</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2137.5, 369}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1188</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k1}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k1"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1154</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1154</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid8_http://www.w3.org/ns/prov#key_k1_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1154</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1027</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1190</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{2033.3416, 462}</string>
+				<string>{2144.6699, 620}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1045</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1193</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1192</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{2034.5, 489.82281}</string>
+				<string>{2137.5, 459.92291}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1046</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2137.5, 447}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1193</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k2}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k2"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1179</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1179</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid9_http://www.w3.org/ns/prov#key_k2_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1179</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1028</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1195</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{2029.167, 501}</string>
+				<string>{2148.8333, 998}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1046</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1198</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1197</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{1498, 600}</string>
+				<string>{1672.5, 600}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1047</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1672.5, 591}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1198</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k3}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k3"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1158</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1158</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid12_http://www.w3.org/ns/prov#key_k3_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1158</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1029</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1200</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{1498, 602.92004}</string>
+				<string>{1905, 761.3808}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1047</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1203</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1202</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{2031, 368.70471}</string>
+				<string>{2137.5, 307.71149}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1048</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2137.5, 291}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1203</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k1}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k1"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1154</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1154</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid17_http://www.w3.org/ns/prov#key_k1_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1154</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1027</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1205</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{2027.9825, 382}</string>
+				<string>{2146.521, 620}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1048</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1208</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1207</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{2031, 407.70422}</string>
+				<string>{2137.5, 346.70441}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1049</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{2137.5, 330}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1208</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k2}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k2"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1179</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1179</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid18_http://www.w3.org/ns/prov#key_k2_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1179</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1028</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1210</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{2025.4286, 421}</string>
+				<string>{2149.0715, 998}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1049</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1213</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1212</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#key</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:key}</string>
+			<key>Points</key>
+			<array>
+				<string>{1795, 581}</string>
+				<string>{1908.5, 581}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>Pattern</key>
+					<integer>2</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1050</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>Bounds</key>
+			<string>{{1908.5, 572}, {27, 18}}</string>
+			<key>Class</key>
+			<string>ShapedGraphic</string>
+			<key>FitText</key>
+			<string>YES</string>
+			<key>Flow</key>
+			<string>Resize</string>
+			<key>FontInfo</key>
+			<dict>
+				<key>Color</key>
+				<dict>
+					<key>b</key>
+					<string>.65</string>
+					<key>g</key>
+					<string>0</string>
+					<key>r</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>ID</key>
+			<integer>1213</integer>
+			<key>Shape</key>
+			<string>Rectangle</string>
+			<key>Style</key>
+			<dict>
+				<key>shadow</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+				<key>stroke</key>
+				<dict>
+					<key>Draws</key>
+					<string>NO</string>
+				</dict>
+			</dict>
+			<key>Text</key>
+			<dict>
+				<key>Text</key>
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;\red0\green0\blue166;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf2  k3}</string>
+				<key>VerticalPad</key>
+				<integer>2</integer>
+			</dict>
+			<key>UserInfo</key>
+			<dict>
+				<key>http://open.vocab.org/terms/depictsBlank</key>
+				<string>"k3"</string>
+				<key>http://open.vocab.org/terms/originatingVisualArtifact</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+				<key>http://open.vocab.org/terms/originatingVisualForm</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms#visual_form_1158</string>
+				<key>http://open.vocab.org/terms/vid</key>
+				<string>1158</string>
+				<key>http://open.vocab.org/terms/vid_given</key>
+				<string>genid21_http://www.w3.org/ns/prov#key_k3_http://www.w3.org/2001/XMLSchema#string_value</string>
+				<key>http://open.vocab.org/terms/vid_local_name</key>
+				<string>#visual_form_1158</string>
+				<key>http://open.vocab.org/terms/visualContext</key>
+				<string>http://logd.tw.rpi.edu/source/lebot-rpi-edu/dataset/visualizations/version/2012-Mar-29_12-45_1333039558107_ms</string>
+			</dict>
+			<key>Wrap</key>
+			<string>NO</string>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1029</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1215</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#value</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:value}</string>
+			<key>Points</key>
+			<array>
+				<string>{1793.9734, 590}</string>
+				<string>{1915.5294, 759}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1050</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1032</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1217</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:beforeDerivation}</string>
+			<key>Points</key>
+			<array>
+				<string>{883, 441.33917}</string>
+				<string>{1081.3621, 609}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1051</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1038</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1219</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeySet</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeySet}</string>
+			<key>Points</key>
+			<array>
+				<string>{883, 435.03751}</string>
+				<string>{1068, 435.96249}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1051</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1030</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1221</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:beforeDerivation}</string>
+			<key>Points</key>
+			<array>
+				<string>{1496.0718, 505}</string>
+				<string>{1532.4575, 346.9325}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1052</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1039</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1223</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeyEntitySet}</string>
+			<key>Points</key>
+			<array>
+				<string>{1501.5, 514.39758}</string>
+				<string>{1901.5, 535.60242}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1052</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1031</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1225</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:beforeDerivation}</string>
+			<key>Points</key>
+			<array>
+				<string>{1204.5, 616.76141}</string>
+				<string>{1317.2197, 523}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1053</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1035</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1227</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeyEntitySet}</string>
+			<key>Points</key>
+			<array>
+				<string>{1204.5, 624.84241}</string>
+				<string>{1307.5, 650.14435}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1053</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1030</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1229</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:beforeDerivation}</string>
+			<key>Points</key>
+			<array>
+				<string>{1493.3923, 466}</string>
+				<string>{1531.6577, 346.9325}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1054</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1040</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1231</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeyEntitySet}</string>
+			<key>Points</key>
+			<array>
+				<string>{1498, 475.23492}</string>
+				<string>{1898, 487.76505}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1054</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1031</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1233</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:beforeDerivation}</string>
+			<key>Points</key>
+			<array>
+				<string>{1201, 580.09723}</string>
+				<string>{1311, 522.85681}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1055</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1036</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1235</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeyEntitySet}</string>
+			<key>Points</key>
+			<array>
+				<string>{1201, 584.38116}</string>
+				<string>{1304, 589.61548}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1055</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1030</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1237</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#beforeDerivation</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:beforeDerivation}</string>
+			<key>Points</key>
+			<array>
+				<string>{1492.342, 544}</string>
+				<string>{1532.6771, 346.9325}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1056</integer>
+			</dict>
+		</dict>
+		<dict>
+			<key>AllowLabelDrop</key>
+			<false/>
+			<key>Class</key>
+			<string>LineGraphic</string>
+			<key>Head</key>
+			<dict>
+				<key>ID</key>
+				<integer>1037</integer>
+			</dict>
+			<key>ID</key>
+			<integer>1239</integer>
+			<key>Link</key>
+			<dict>
+				<key>url</key>
+				<string>http://www.w3.org/ns/prov#hasKeyEntitySet</string>
+			</dict>
+			<key>Notes</key>
+			<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf320
+{\fonttbl\f0\fnil\fcharset0 LucidaGrande;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs22 \cf0 prov:hasKeyEntitySet}</string>
+			<key>Points</key>
+			<array>
+				<string>{1498, 553.46088}</string>
+				<string>{1662, 563.53882}</string>
+			</array>
+			<key>Style</key>
+			<dict>
+				<key>stroke</key>
+				<dict>
+					<key>Color</key>
+					<dict>
+						<key>b</key>
+						<string>0.701961</string>
+						<key>g</key>
+						<string>0.701961</string>
+						<key>r</key>
+						<string>0.701961</string>
+					</dict>
+					<key>HeadArrow</key>
+					<string>FilledArrow</string>
+					<key>LineType</key>
+					<integer>1</integer>
+					<key>TailArrow</key>
+					<string>0</string>
+				</dict>
+			</dict>
+			<key>Tail</key>
+			<dict>
+				<key>ID</key>
+				<integer>1056</integer>
+			</dict>
+		</dict>
+	</array>
+	<key>GridInfo</key>
+	<dict/>
+	<key>GuidesLocked</key>
+	<string>NO</string>
+	<key>GuidesVisible</key>
+	<string>YES</string>
+	<key>HPages</key>
+	<integer>4</integer>
+	<key>ImageCounter</key>
+	<integer>1</integer>
+	<key>KeepToScale</key>
+	<false/>
+	<key>Layers</key>
+	<array>
+		<dict>
+			<key>Lock</key>
+			<string>NO</string>
+			<key>Name</key>
+			<string>Layer 1</string>
+			<key>Print</key>
+			<string>YES</string>
+			<key>View</key>
+			<string>YES</string>
+		</dict>
+	</array>
+	<key>LayoutInfo</key>
+	<dict>
+		<key>Animate</key>
+		<string>NO</string>
+		<key>HierarchicalOrientation</key>
+		<integer>0</integer>
+		<key>circoMinDist</key>
+		<real>18</real>
+		<key>circoSeparation</key>
+		<real>0.0</real>
+		<key>layoutEngine</key>
+		<string>dot</string>
+		<key>neatoSeparation</key>
+		<real>0.0</real>
+		<key>twopiSeparation</key>
+		<real>0.0</real>
+	</dict>
+	<key>LinksVisible</key>
+	<string>NO</string>
+	<key>MagnetsVisible</key>
+	<string>NO</string>
+	<key>MasterSheets</key>
+	<array/>
+	<key>ModificationDate</key>
+	<string>2012-03-29 16:48:23 +0000</string>
+	<key>Modifier</key>
+	<string>lebot</string>
+	<key>NotesVisible</key>
+	<string>NO</string>
+	<key>Orientation</key>
+	<integer>2</integer>
+	<key>OriginVisible</key>
+	<string>NO</string>
+	<key>PageBreaks</key>
+	<string>NO</string>
+	<key>PrintInfo</key>
+	<dict>
+		<key>NSBottomMargin</key>
+		<array>
+			<string>float</string>
+			<string>41</string>
+		</array>
+		<key>NSHorizonalPagination</key>
+		<array>
+			<string>int</string>
+			<string>0</string>
+		</array>
+		<key>NSLeftMargin</key>
+		<array>
+			<string>float</string>
+			<string>18</string>
+		</array>
+		<key>NSPaperSize</key>
+		<array>
+			<string>coded</string>
+			<string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAx7X05TU2l6ZT1mZn2WgWQCgRgDhg==</string>
+		</array>
+		<key>NSPrintReverseOrientation</key>
+		<array>
+			<string>int</string>
+			<string>0</string>
+		</array>
+		<key>NSRightMargin</key>
+		<array>
+			<string>float</string>
+			<string>18</string>
+		</array>
+		<key>NSTopMargin</key>
+		<array>
+			<string>float</string>
+			<string>18</string>
+		</array>
+	</dict>
+	<key>PrintOnePage</key>
+	<false/>
+	<key>ReadOnly</key>
+	<string>NO</string>
+	<key>RowAlign</key>
+	<integer>1</integer>
+	<key>RowSpacing</key>
+	<real>36</real>
+	<key>SheetTitle</key>
+	<string>Canvas 1</string>
+	<key>SmartAlignmentGuidesActive</key>
+	<string>YES</string>
+	<key>SmartDistanceGuidesActive</key>
+	<string>YES</string>
+	<key>UniqueID</key>
+	<integer>1</integer>
+	<key>UseEntirePage</key>
+	<false/>
+	<key>UserInfo</key>
+	<dict>
+		<key>kMDItemAuthors</key>
+		<array>
+			<string>2graffle5.xsl</string>
+		</array>
+	</dict>
+	<key>VPages</key>
+	<integer>2</integer>
+	<key>WindowInfo</key>
+	<dict>
+		<key>CurrentSheet</key>
+		<integer>0</integer>
+		<key>ExpandedCanvases</key>
+		<array>
+			<dict>
+				<key>name</key>
+				<string>Canvas 1</string>
+			</dict>
+		</array>
+		<key>Frame</key>
+		<string>{{0, 52}, {1680, 976}}</string>
+		<key>ListView</key>
+		<true/>
+		<key>OutlineWidth</key>
+		<integer>142</integer>
+		<key>RightSidebar</key>
+		<false/>
+		<key>Sidebar</key>
+		<true/>
+		<key>SidebarWidth</key>
+		<integer>120</integer>
+		<key>VisibleRegion</key>
+		<string>{{74, 56}, {1560, 882}}</string>
+		<key>Zoom</key>
+		<real>1</real>
+		<key>ZoomValues</key>
+		<array>
+			<array>
+				<string>Canvas 1</string>
+				<real>1</real>
+				<real>1</real>
+			</array>
+		</array>
+	</dict>
+	<key>saveQuickLookFiles</key>
+	<string>NO</string>
+</dict>
+</plist>
Binary file model/images/Collections.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/model/images/Collections.svg	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg height="370" version="1.1" width="691" xmlns="http://www.w3.org/2000/svg">
+<rect fill="#ffffff" height="68" stroke="#ffffff" stroke-width="1" width="74" x="342" y="200"/>
+<rect fill="none" height="68" stroke="#000000" stroke-width="1" width="74" x="342" y="200"/>
+<text font-family="Lucida Grande" font-size="13" x="347" y="214">
+Collection</text>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="74" x="342" y="224"/>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="74" x="342" y="245"/>
+<rect fill="#ffffff" height="68" stroke="#ffffff" stroke-width="1" width="66" x="342" y="72"/>
+<rect fill="none" height="68" stroke="#000000" stroke-width="1" width="66" x="342" y="72"/>
+<text font-family="Lucida Grande" font-size="13" x="357" y="86">
+Entity</text>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="66" x="342" y="96"/>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="66" x="342" y="117"/>
+<polyline fill="none" points="382,200 382,140" stroke="#000000" stroke-width="1"/>
+<polygon fill="#ffffff" points="382,140 389,152 375,152" stroke="#ffffff" stroke-width="1"/>
+<polygon fill="none" points="382,140 389,152 375,152" stroke="#000000" stroke-width="1"/>
+<rect fill="#ffffff" height="88" stroke="#ffffff" stroke-width="1" width="67" x="150" y="144"/>
+<rect fill="none" height="88" stroke="#000000" stroke-width="1" width="67" x="150" y="144"/>
+<text font-family="Lucida Grande" font-size="13" x="172" y="158">
+Pair</text>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="67" x="150" y="168"/>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="67" x="150" y="199"/>
+<polyline fill="none" points="342,240 270,240 270,328 366,328 366,268" stroke="#000000" stroke-width="1"/>
+<ellipse cx="271" cy="325" fill="#000000" rx="0.5" ry="0.5" stroke="#000000" stroke-width="1"/>
+<ellipse cx="272" cy="326" fill="#ffffff" rx="-0.5" ry="-0.5" stroke="#ffffff" stroke-width="1"/>
+<rect fill="#ffffff" height="68" stroke="#ffffff" stroke-width="1" width="162" x="78" y="288"/>
+<rect fill="none" height="68" stroke="#000000" stroke-width="1" width="162" x="78" y="288"/>
+<text font-family="Lucida Grande" font-size="13" x="83" y="302">
+Derivation-by-Insertion</text>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="162" x="78" y="312"/>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="162" x="78" y="333"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="271" x2="266" y1="325" y2="325"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="261" x2="256" y1="325" y2="325"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="251" x2="246" y1="325" y2="325"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="241" x2="240" y1="325" y2="325"/>
+<polyline fill="none" points="217,200 342,200" stroke="#000000" stroke-width="1"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="330" x2="342" y1="207" y2="200"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="330" x2="342" y1="193" y2="200"/>
+<text font-family="Lucida Grande" font-size="13" x="252" y="186">
+Membership</text>
+<polyline fill="none" points="182,232 182,288" stroke="#000000" stroke-width="1"/>
+<polyline fill="none" points="190,144 190,96 342,96" stroke="#000000" stroke-width="1"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="330" x2="342" y1="103" y2="96"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="330" x2="342" y1="89" y2="96"/>
+<rect fill="#ffffff" height="68" stroke="#ffffff" stroke-width="1" width="66" x="14" y="80"/>
+<rect fill="none" height="68" stroke="#000000" stroke-width="1" width="66" x="14" y="80"/>
+<text font-family="Lucida Grande" font-size="13" x="36" y="94">
+Key</text>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="66" x="14" y="104"/>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="66" x="14" y="125"/>
+<polyline fill="none" points="158,144 158,96 80,96" stroke="#000000" stroke-width="1"/>
+<polyline fill="none" points="416,264 470,264 470,216 416,216" stroke="#000000" stroke-width="1"/>
+<ellipse cx="468" cy="240" fill="#000000" rx="0.5" ry="0.5" stroke="#000000" stroke-width="1"/>
+<ellipse cx="469" cy="241" fill="#ffffff" rx="-0.5" ry="-0.5" stroke="#ffffff" stroke-width="1"/>
+<rect fill="#ffffff" height="68" stroke="#ffffff" stroke-width="1" width="159" x="518" y="200"/>
+<rect fill="none" height="68" stroke="#000000" stroke-width="1" width="159" x="518" y="200"/>
+<text font-family="Lucida Grande" font-size="13" x="523" y="214">
+Derivation-by-Removal</text>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="159" x="518" y="224"/>
+<rect fill="#000000" height="1" stroke="#000000" stroke-width="1" width="159" x="518" y="245"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="469" x2="474" y1="241" y2="241"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="479" x2="484" y1="241" y2="241"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="489" x2="494" y1="241" y2="241"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="499" x2="504" y1="241" y2="241"/>
+<line fill="#000000" stroke="#000000" stroke-width="1" x1="509" x2="514" y1="241" y2="241"/>
+<polyline fill="none" points="598,200 598,48 54,48 54,80" stroke="#000000" stroke-width="1"/>
+</svg>
Binary file model/images/PROV-modelSketch.zargo has changed
Binary file model/images/collections.png.tmp has changed
--- a/model/prov-dm-constraints.html	Thu Mar 29 18:46:52 2012 +0100
+++ b/model/prov-dm-constraints.html	Thu Mar 29 18:47:22 2012 +0100
@@ -627,30 +627,6 @@
 
 </section> 
 
-<section id="term-Agent">
-<h3>Agent</h3>
-
-
-
-
-<div class='issue'> Shouldn't we allow for entities (not agent) to be associated with an activity?  Should we drop the inference association-agent? <a
-href="http://www.w3.org/2011/prov/track/issues/203">ISSUE-203</a>.
-
-<p>One can assert an agent record or alternatively, one can infer an agent record
-by its association with an activity.  </p>
-
-<div class='inference' id='association-agent'>
-<span class='conditional'>If</span> the records <span class="name">entity(e,attrs)</span>
-and
-<span class="name">wasAssociatedWith(a,e)</span> hold for some identifiers 
-<span class="name">a</span>, <span class="name">e</span>, and attribute-values <span class="name">attrs</span>, then
-the record <span class="name">agent(e,attrs)</span> also holds.
-</div>
-
-</div>
-
-</section>
-
    <section id="term-note"> 
       
 <h4>Note</h4>
@@ -744,25 +720,6 @@
 </div>
 
 
-<div class='issue'> The activity association record does not allow for a plan to be asserted without an agent.
-This seems over-restrictive. Discussed in the context of <a href="http://www.w3.org/2011/prov/track/issues/203">ISSUE-203</a>.</div>
-
-
-<div class='issue'> Agents should not be inferred. WasAssociatedWith should also work with entities.
-This is <a href="http://www.w3.org/2011/prov/track/issues/206">ISSUE-206</a>.</div>
-
-
-</section>
-
-<section id="term-Start-End">
-<h4>Start and Ends</h4>
-
-
-<div class='issue'> 
-Should we define start/end records as representation of activity start/end events.
-Should time be associated with these events rather than with activities. This will be similar to what
-we do for entities. This is issue <a href="http://www.w3.org/2011/prov/track/issues/207">ISSUE-207</a>.</div>
-
 
 </section>
 
@@ -772,15 +729,6 @@
 
 
 
-<section id="term-responsibility">
-
-<h4>Responsibility Chain</h4>
-
-
-Nothing here.
-
-</section>
-
 <section id="Derivation-Relation">
 <h4>Derivation</h4>
 
@@ -822,10 +770,6 @@
 
 
 
-<div class='issue'> Emphasize the notion of 'affected by'   <a href="http://www.w3.org/2011/prov/track/issues/133">ISSUE-133</a>.</div>
-
-
-
 
 </section>
 
--- a/model/prov-dm.html	Thu Mar 29 18:46:52 2012 +0100
+++ b/model/prov-dm.html	Thu Mar 29 18:47:22 2012 +0100
@@ -2,7 +2,7 @@
 >
 
 <html><head> 
-    <title>PROV-DM Part 1: The PROV Data Model</title> 
+    <title>PROV-DM: The PROV Data Model</title> 
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
     <!-- 
       === NOTA BENE ===
@@ -118,7 +118,7 @@
  
           // if your specification has a subtitle that goes below the main
           // formal title, define it here
-          subtitle   :  "Final Phase, before internal review (WD5)",
+          subtitle   :  "WD5 for internal review",
 
  
           // if you wish the publication date to be other than today, set this
@@ -1939,8 +1939,8 @@
 
 <div style="text-align: center;">
 <figure>
-<img src="images/Collections.png" alt="collections"/>
-<figcaption id="figure-component5">Collections Component Overview (TODO)</figcaption>
+<img src="images/Collections-2.png" alt="collections"/>
+<figcaption id="figure-component5">Collections Component Overview</figcaption>
 </figure>
 </div>
 
--- a/model/prov-n.html	Thu Mar 29 18:46:52 2012 +0100
+++ b/model/prov-n.html	Thu Mar 29 18:47:22 2012 +0100
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 
 <html><head> 
-    <title>PROV-DM Part 3: PROV-N: The Provenance Notation</title> 
+    <title>PROV-N: The Provenance Notation</title> 
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
     <!-- 
       === NOTA BENE ===
@@ -117,7 +117,7 @@
           // if your specification has a subtitle that goes below the main
           // formal title, define it here
         //          subtitle   :  "About-to-be-frozen WD4 (for internal release)",
-          subtitle   :  "Final Phase, before internal review (WD5)",
+          subtitle   :  "WD5 for internal review",
 
           // if you wish the publication date to be other than today, set this
           // publishDate:  "2011-10-18",
@@ -455,7 +455,7 @@
 <p>Instances of the PROV-DM data model are expressed as PROV-N <dfn title="expression">expressions</dfn>, which have a text conformant with the toplevel <a>production</a> <span class="nonterminal">expression</span> of the grammar. </p>
 
 <div class='grammar'>
-<table border="" style="background: white;">
+<table style="background: white; border=0; ">
 <tr><td><span class="nonterminal">expression</span> <br/><br/><br/><br/><br/><br/><br/>
 </td><td>&nbsp;::=<br/><br/><br/><br/><br/><br/><br/></td><td>
 <!-- Component 1-->
@@ -1074,7 +1074,6 @@
 <span class="nonterminal">eIdentifier</span>
 <span class="name">,</span>
 <span class="nonterminal">eIdentifier</span>
-<span class="name">,</span>
 <span class="nonterminal">optional-attribute-values</span>
 <span class="name">)</span>
 </div>
@@ -1145,204 +1144,9 @@
 
 <div class="note">Grammar for collections MAY under go minor syntactic changes since it has not been implemented yet.</div>
 
-<section id="expression-collection-insertion">
-<h3>Insertion</h3>
-
-<p>A Derivation-by-Insertion relation's text matches the <span class="nonterminal">derivationByInsertionFromExpression</span> production.</p>
-
-<div class="grammar">
- <span class="nonterminal">derivationByInsertionFromExpression</span>&nbsp;::=  
-<span class="name">derivedByInsertionFrom</span> 
- <span class="name">(</span>
- <span class="optional"><span class="nonterminal">identifier</span>
- <span class="name">,</span></span>
-<span class="nonterminal">afterIdentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">beforeIdentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">keyidentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">validentifier</span>
-<span class="name">,</span>
-<span class="nonterminal">optional-attribute-values</span>
-  <span class="name">)</span>
-  <br>
-</div>
-
-<div class="anexample">
-<pre class="codeexample">
-derivedByInsertionFrom(id, c1, c, "k1", v1)  
-derivedByInsertionFrom(id, c1, c, "k1", v1, [])  
-</pre>
-</div>
-
-
-</section>
-
-<section id="expression-collection-removal">
-<h3>Removal</h3>
-
-<p>A Derivation-by-Removal relation's text matches the <span class="nonterminal">derivationByRemovalFromExpression</span> production.</p>
-
-<div class="grammar">
- <span class="nonterminal">derivationByRemovalFromExpression</span>&nbsp;::=  
-<span class="name">derivedByRemovalFrom</span> 
- <span class="name">(</span>
- <span class="optional"><span class="nonterminal">identifier</span>
- <span class="name">,</span></span>
-<span class="nonterminal">afterIdentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">beforeIdentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">keyidentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">optional-attribute-values</span>
-  <span class="name">)</span>
-  <br>
-</div>
-
-<div class="anexample">
-<pre class="codeexample">
-derivedByRemovalFrom(id, c1, c, "k1")  
-derivedByRemovalFrom(id, c1, c, "k1", [])
-  </pre>
-</div>
-
-</section>
-
-
-<section id="expression-collection-containment">
-<h3>Containment</h3>
-
-<p>A Containment relation's  text matches the <span class="nonterminal">containedExpression</span> production.</p>
+In the productions in this section, nonterminals <span class="nonterminal">keyValuePairs</span> and <span class="nonterminal">keySet</span> are defined as follows.
 
 <div class="grammar">
- <span class="nonterminal">containedExpression</span>&nbsp;::=  
-<span class="name">contained</span> 
- <span class="name">(</span>
- <span class="optional"><span class="nonterminal">identifier</span>
- <span class="name">,</span></span>
-<span class="nonterminal">afterIdentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">keyidentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">validentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">optional-attribute-values</span>
-  <span class="name">)</span>
-  <br>
-</div>
-
-<div class="anexample">
-<pre class="codeexample">
-contained(id, c, "k", v)
-contained(id, c, "k", v,[])  
-</pre>
-</div>
-
-</section>
-
-<section id="expression-bulk-insertion">
-<h3>Bulk Insertion</h3>
-
-<p>A  Derivation-by-Bulk-Insertion relation's  text matches the <span class="nonterminal">derivationByBulkInsertionFromExpression</span> production.</p>
-
-<div class="grammar">
- <span class="nonterminal">derivationByBulkInsertionFromExpression</span>&nbsp;::=  
-<span class="name">derivedByBulkInsertionFrom</span> 
- <span class="name">(</span>
- <span class="optional"><span class="nonterminal">identifier</span>
- <span class="name">,</span></span>
-<span class="nonterminal">afterIdentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">beforeIdentifier</span>
- <span class="name">,</span>
-  <span class="name">{</span>
-  <span class="nonterminal">keyValuePairs</span>
-   <span class="name">}</span>
-<span class="name">,</span>
-<span class="nonterminal">optional-attribute-values</span>
-  <span class="name">)</span>
-</div>
-
-<div class="anexample">
-  <pre class="codeexample">
- derivedByBulkInsertionFrom(c1, c, {("k1", v1), ("k2", v2)})  
- derivedByBulkInsertionFrom(c1, c, {("k1", v1), ("k2", v2)}), []
-</pre>
-</div>
-</section>
-
-<section id="expression-bulk-Removal">
-<h3>Bulk Removal</h3>
-
-
-
-<p> A Derivation-by-Bulk-Removal relation's  text matches the <span class="nonterminal">derivationByBulkRemovalFromExpression</span> production.</p>
-
-  
-<div class="grammar">
- <span class="nonterminal">derivationByBulkRemovalFromExpression</span>&nbsp;::=  
-<span class="name">derivedByRemovalFrom</span> 
- <span class="name">(</span>
- <span class="optional"><span class="nonterminal">identifier</span>
- <span class="name">,</span></span>
-<span class="nonterminal">afterIdentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">beforeIdentifier</span>
- <span class="name">,</span>
-  <span class="name">{</span>
-  <span class="nonterminal">keySet</span>
-   <span class="name">}</span>
- <span class="name">,</span>
-<span class="nonterminal">optional-attribute-values</span>
-  <span class="name">)</span>
-  <br>
-</div>
-
-<div class="anexample">
-<pre class="codeexample">
-   derivedByBulkRemovalFrom(c3, c1, {"k1", "k3"})               
-   derivedByBulkRemovalFrom(c3, c1, {"k1", "k3"}, [])               
-</pre>
-  </div>
-</section>
-
-<section id="expression-bulk-containment">
-<h3>Bulk Containment</h3>
-
-
-<p> A Bulk-Containment relation's  text matches the <span class="nonterminal">containedBulkExpression</span> production.</p>
-
-<div class="grammar">
- <span class="nonterminal">containedBulkExpression</span>&nbsp;::=  
-<span class="name">contained</span> 
- <span class="name">(</span>
- <span class="optional"><span class="nonterminal">identifier</span>
- <span class="name">,</span></span>
-<span class="nonterminal">afterIdentifier</span>
- <span class="name">,</span>
-  <span class="name">{</span>
-  <span class="nonterminal">keyValuePairs</span>
-   <span class="name">}</span>
-<span class="nonterminal">validentifier</span>
- <span class="name">,</span>
-<span class="nonterminal">optional-attribute-values</span>
-  <span class="name">)</span>
-  <br>
-</div>
-
-<div class="anexample">
-  <pre class="codeexample">
-   containedBulk(c3, {("k4", v4), ("k5", v5)})
-   containedBulk(c3, {("k4", v4), ("k5", v5)},[])  
-</pre>
-</div>
-
-  In the productions above, nonterminals <span class="nonterminal">keyValuePairs</span> and <span class="nonterminal">keySet</span> are defined as follows.
-
-
-  <div class="grammar">
 <span class="nonterminal">keyValuePairs</span> &nbsp;::= 
 <span class="name">(</span>
     <span class="nonterminal">keyidentifier</span>
@@ -1369,6 +1173,102 @@
 </div>
 
 
+<section id="expression-collection-insertion">
+<h3>Insertion</h3>
+
+<p>A Derivation-by-Insertion relation's text matches the <span class="nonterminal">derivationByInsertionFromExpression</span> production.</p>
+<div class="grammar">
+ <span class="nonterminal">derivationByInsertionFromExpression</span>&nbsp;::=  
+<span class="name">derivedByInsertionFrom</span> 
+ <span class="name">(</span>
+ <span class="optional"><span class="nonterminal">identifier</span>
+ <span class="name">,</span></span>
+<span class="nonterminal">cIdentifier</span>
+ <span class="name">,</span>
+<span class="nonterminal">cIdentifier</span>
+ <span class="name">,</span>
+  <span class="name">{</span>
+  <span class="nonterminal">keyValuePairs</span>
+   <span class="name">}</span>
+<span class="nonterminal">optional-attribute-values</span>
+  <span class="name">)</span>
+</div>
+
+<div class="anexample">
+  <pre class="codeexample">
+ derivedByInsertionFrom(c1, c, {("k1", v1), ("k2", v2)})  
+ derivedByInsertionFrom(c1, c, {("k1", v1)})  
+ derivedByInsertionFrom(c1, c, {("k1", v1), ("k2", v2)}, [])
+</pre>
+</div>
+
+
+</section>
+
+<section id="expression-collection-removal">
+<h3>Removal</h3>
+
+<p>A Derivation-by-Removal relation's text matches the <span class="nonterminal">derivationByRemovalFromExpression</span> production.</p>
+
+<div class="grammar">
+ <span class="nonterminal">derivationByRemovalFromExpression</span>&nbsp;::=  
+<span class="name">derivedByRemovalFrom</span> 
+ <span class="name">(</span>
+ <span class="optional"><span class="nonterminal">identifier</span>
+ <span class="name">,</span></span>
+<span class="nonterminal">cIdentifier</span>
+ <span class="name">,</span>
+<span class="nonterminal">cIdentifier</span>
+ <span class="name">,</span>
+  <span class="name">{</span>
+  <span class="nonterminal">keySet</span>
+   <span class="name">}</span>
+<span class="nonterminal">optional-attribute-values</span>
+  <span class="name">)</span>
+  <br>
+</div>
+
+<div class="anexample">
+<pre class="codeexample">
+   derivedByRemovalFrom(c3, c1, {"k1", "k3"})               
+   derivedByRemovalFrom(c3, c1, {"k1"})               
+   derivedByRemovalFrom(c3, c1, {"k1", "k3"}, [])               
+</pre>
+  </div>
+
+</section>
+
+<section id="expression-collection-membership">
+<h3>Membership</h3>
+
+<p>A Membership relation's text matches the <span class="nonterminal">membershipExpression</span> production.</p>
+
+<div class="grammar">
+ <span class="nonterminal">membershipExpression</span>&nbsp;::=  
+<span class="name">isMemberOf</span> 
+ <span class="name">(</span>
+ <span class="optional"><span class="nonterminal">identifier</span>
+ <span class="name">,</span></span>
+<span class="nonterminal">cIdentifier</span>
+ <span class="name">,</span>
+  <span class="name">{</span>
+  <span class="nonterminal">keyValuePairs</span>
+   <span class="name">}</span>
+<span class="nonterminal">validentifier</span>
+<span class="nonterminal">optional-attribute-values</span>
+  <span class="name">)</span>
+  <br>
+</div>
+
+
+<div class="anexample">
+  <pre class="codeexample">
+   memberOf(c3, {("k4", v4), ("k5", v5)})
+   memberOf(c3, {("k4", v4)})
+   memberOf(c3, {("k4", v4), ("k5", v5)},[])  
+</pre>
+</div>
+
 </section>
 
 
@@ -1518,6 +1418,7 @@
 <span class="nonterminal">gIdentifier</span>::=  <span class="nonterminal">identifier</span> <em>(intended to denote a generation)</em><br/>
 <span class="nonterminal">uIdentifier</span>::=  <span class="nonterminal">identifier</span> <em>(intended to denote a usage)</em><br/>
 <span class="nonterminal">nIdentifier</span>::=  <span class="nonterminal">identifier</span> <em>(intended to denote a note)</em><br/>
+<span class="nonterminal">cIdentifier</span>::=  <span class="nonterminal">identifier</span> <em>(intended to denote a collection)</em><br/>
 <br/>
 <br/>
 <span class="nonterminal">qualifiedName</span> &nbsp;::= 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/prov-o-html-sections/description-starting-points.inc.html	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,46 @@
+     <section id="description-starting-points">
+	  	<h3>Starting Points</h3>
+      <p> 
+This section presents a diagram illustrating the concepts and properties that compose the ontology, without talking about involvement.  The following example diagram illustrates the level of details we want to present and the exact classes and properties we believe fall into this category. No need to show the “Thing” class in the diagram, as we are doing now. That just makes the diagram more complex. Neither SIOC nor OPMV do that.  The classes and properties to show in this diagram are the following:
+Entity, Agent, Activity, used, wasGeneratedBy, wasDerivedFrom, wasAssociatedWith (wasEndedBy? wasStartedBy??), actedOnBehalfOf, wasInformedBy, wasAttributedTo, “Temporal stuff”
+	  </p>
+
+      <div style="text-align: center;">
+         <figure>
+            <img src="prov-o-diagrams/diagram-simple.png"
+                 style="width: 70%; min-width: 25em; max-width: 60em" 
+                 alt="Class hierarchy of the PROV ontology"/>
+            <figcaption>Figure 1. Simple classes and properties in PROV-O</figcaption>
+         </figure>
+      </div>
+
+        <div class="issue">
+           Luc has general comments in <a href="http://www.w3.org/2011/prov/track/issues/117">ISSUE-117</a>
+        </div>
+        <div class="issue">
+           Vanilla RDF versus OWL <a href="http://www.w3.org/2011/prov/track/issues/119">ISSUE-119</a>
+        </div>
+        <div class="issue">
+           Location concerns <a href="http://www.w3.org/2011/prov/track/issues/128">ISSUE-128</a>
+        </div>
+        <div class="issue">
+           Diagram consistency <a href="http://www.w3.org/2011/prov/track/issues/227">ISSUE-227</a>
+        </div>
+        <div class="issue">
+           Eric's comments <a href="http://www.w3.org/2011/prov/track/issues/250">ISSUE-250</a>
+        </div>
+        <div class="issue">
+           Conforming to W3C Style guides <a href="http://www.w3.org/2011/prov/track/issues/308">ISSUE-308</a>
+        </div>
+
+        <div class="anexample">
+           <div><b>Example</b></div>
+            <p>
+Turtle + Explanation. The example does not have to illustrate all the terms. Instead, it focuses on the main ones. (see eg16-journalism-simple-without-comments.ttl). We chose this example over others because we think it is simple, intuitive. Moreover, it is used in the primer, and therefore people who read the primer before the provo HTML document, will find it easy to follow.
+
+            </p>
+           <div class="exampleOuter">
+              <pre class="example">{% include "includes/eg16-journalism-simple-without-comments.ttl" %}</pre>
+           </div>
+        </div>
+	  </section> <!-- Starting Points  in PROV-O -->
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/prov-o.html	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,4230 @@
+<!DOCTYPE html>
+<html dir="ltr" lang="en"><head>
+    <title>The PROV Ontology: It's not scary.</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+
+    <link href="prov-o_files/owl.html" rel="stylesheet" type="text/css">
+    <link href="prov-o_files/Primer.html" rel="stylesheet" type="text/css">
+    <link href="prov-o_files/rec.html" rel="stylesheet" type="text/css">
+    <link href="prov-o_files/extra.html" rel="stylesheet" type="text/css">
+    <!-- 
+      === NOTA BENE ===
+      For the three scripts below, if your spec resides on dev.w3 you can check them
+      out in the same tree and use relative links so that they'll work offline,
+     -->
+<!-- From DM -->
+	<style type="text/css">
+      .note { font-size:small; margin-left:50px }
+   table { text-align: center; vertical-align: middle }
+     </style>
+	<style type="text/css">
+      table.qualified-forms {
+         width: 75%;
+      }
+      ul.hlist {
+         margin: 20px;
+      }
+      table {
+         margin: 20px; 
+         border:1px solid navy;
+         background-color: #F4FFFF;
+      }
+      table th {
+         background-color: LightGoldenRodYellow;
+      }
+      table tr {
+         padding: 2px;
+         border: 1px solid navy;
+      }
+      table td {
+         text-align: left;
+         padding-top: 5px;
+         padding-bottom: 5px;
+         padding-left: 15px;
+         padding-right: 15px;
+      }
+      table td.prov-attribute {
+         width: 20%
+      }
+      table.prov-detail a:visited {
+          color:black; text-decoration:none; 
+      }
+      table.prov-detail a:link {
+          color:black; text-decoration:none; 
+      }
+     </style>
+
+    
+	
+	
+    
+  <style type="text/css">
+/*****************************************************************
+ * ReSpec CSS
+ * Robin Berjon (robin at berjon dot com)
+ * v0.05 - 2009-07-31
+ *****************************************************************/
+
+
+/* --- INLINES --- */
+em.rfc2119 { 
+    text-transform:     lowercase;
+    font-variant:       small-caps;
+    font-style:         normal;
+    color:              #900;
+}
+
+h1 acronym, h2 acronym, h3 acronym, h4 acronym, h5 acronym, h6 acronym, a acronym,
+h1 abbr, h2 abbr, h3 abbr, h4 abbr, h5 abbr, h6 abbr, a abbr {
+    border: none;
+}
+
+dfn {
+    font-weight:    bold;
+}
+
+a.internalDFN {
+    color:  inherit;
+    border-bottom:  1px solid #99c;
+    text-decoration:    none;
+}
+
+a.externalDFN {
+    color:  inherit;
+    border-bottom:  1px dotted #ccc;
+    text-decoration:    none;
+}
+
+a.bibref {
+    text-decoration:    none;
+}
+
+code {
+    color:  #ff4500;
+}
+
+
+/* --- WEB IDL --- */
+pre.idl {
+    border-top: 1px solid #90b8de;
+    border-bottom: 1px solid #90b8de;
+    padding:    1em;
+    line-height:    120%;
+}
+
+pre.idl::before {
+    content:    "WebIDL";
+    display:    block;
+    width:      150px;
+    background: #90b8de;
+    color:  #fff;
+    font-family:    initial;
+    padding:    3px;
+    font-weight:    bold;
+    margin: -1em 0 1em -1em;
+}
+
+.idlType {
+    color:  #ff4500;
+    font-weight:    bold;
+    text-decoration:    none;
+}
+
+/*.idlModule*/
+/*.idlModuleID*/
+/*.idlInterface*/
+.idlInterfaceID, .idlDictionaryID {
+    font-weight:    bold;
+    color:  #005a9c;
+}
+
+.idlSuperclass {
+    font-style: italic;
+    color:  #005a9c;
+}
+
+/*.idlAttribute*/
+.idlAttrType, .idlFieldType, .idlMemberType {
+    color:  #005a9c;
+}
+.idlAttrName, .idlFieldName, .idlMemberName {
+    color:  #ff4500;
+}
+.idlAttrName a, .idlFieldName a, .idlMemberName a {
+    color:  #ff4500;
+    border-bottom:  1px dotted #ff4500;
+    text-decoration: none;
+}
+
+/*.idlMethod*/
+.idlMethType {
+    color:  #005a9c;
+}
+.idlMethName {
+    color:  #ff4500;
+}
+.idlMethName a {
+    color:  #ff4500;
+    border-bottom:  1px dotted #ff4500;
+    text-decoration: none;
+}
+
+/*.idlParam*/
+.idlParamType {
+    color:  #005a9c;
+}
+.idlParamName {
+    font-style: italic;
+}
+
+.extAttr {
+    color:  #666;
+}
+
+/*.idlConst*/
+.idlConstType {
+    color:  #005a9c;
+}
+.idlConstName {
+    color:  #ff4500;
+}
+.idlConstName a {
+    color:  #ff4500;
+    border-bottom:  1px dotted #ff4500;
+    text-decoration: none;
+}
+
+/*.idlException*/
+.idlExceptionID {
+    font-weight:    bold;
+    color:  #c00;
+}
+
+.idlTypedefID, .idlTypedefType {
+    color:  #005a9c;
+}
+
+.idlRaises, .idlRaises a.idlType, .idlRaises a.idlType code, .excName a, .excName a code {
+    color:  #c00;
+    font-weight:    normal;
+}
+
+.excName a {
+    font-family:    monospace;
+}
+
+.idlRaises a.idlType, .excName a.idlType {
+    border-bottom:  1px dotted #c00;
+}
+
+.excGetSetTrue, .excGetSetFalse, .prmNullTrue, .prmNullFalse, .prmOptTrue, .prmOptFalse {
+    width:  45px;
+    text-align: center;
+}
+.excGetSetTrue, .prmNullTrue, .prmOptTrue { color:  #0c0; }
+.excGetSetFalse, .prmNullFalse, .prmOptFalse { color:  #c00; }
+
+.idlImplements a {
+    font-weight:    bold;
+}
+
+dl.attributes, dl.methods, dl.constants, dl.fields, dl.dictionary-members {
+    margin-left:    2em;
+}
+
+.attributes dt, .methods dt, .constants dt, .fields dt, .dictionary-members dt {
+    font-weight:    normal;
+}
+
+.attributes dt code, .methods dt code, .constants dt code, .fields dt code, .dictionary-members dt code {
+    font-weight:    bold;
+    color:  #000;
+    font-family:    monospace;
+}
+
+.attributes dt code, .fields dt code, .dictionary-members dt code {
+    background:  #ffffd2;
+}
+
+.attributes dt .idlAttrType code, .fields dt .idlFieldType code, .dictionary-members dt .idlMemberType code {
+    color:  #005a9c;
+    background:  transparent;
+    font-family:    inherit;
+    font-weight:    normal;
+    font-style: italic;
+}
+
+.methods dt code {
+    background:  #d9e6f8;
+}
+
+.constants dt code {
+    background:  #ddffd2;
+}
+
+.attributes dd, .methods dd, .constants dd, .fields dd, .dictionary-members dd {
+    margin-bottom:  1em;
+}
+
+table.parameters, table.exceptions {
+    border-spacing: 0;
+    border-collapse:    collapse;
+    margin: 0.5em 0;
+    width:  100%;
+}
+table.parameters { border-bottom:  1px solid #90b8de; }
+table.exceptions { border-bottom:  1px solid #deb890; }
+
+.parameters th, .exceptions th {
+    color:  #fff;
+    padding:    3px 5px;
+    text-align: left;
+    font-family:    initial;
+    font-weight:    normal;
+    text-shadow:    #666 1px 1px 0;
+}
+.parameters th { background: #90b8de; }
+.exceptions th { background: #deb890; }
+
+.parameters td, .exceptions td {
+    padding:    3px 10px;
+    border-top: 1px solid #ddd;
+    vertical-align: top;
+}
+
+.parameters tr:first-child td, .exceptions tr:first-child td {
+    border-top: none;
+}
+
+.parameters td.prmName, .exceptions td.excName, .exceptions td.excCodeName {
+    width:  100px;
+}
+
+.parameters td.prmType {
+    width:  120px;
+}
+
+table.exceptions table {
+    border-spacing: 0;
+    border-collapse:    collapse;
+    width:  100%;
+}
+
+/* --- TOC --- */
+.toc a {
+    text-decoration:    none;
+}
+
+a .secno {
+    color:  #000;
+}
+
+/* --- TABLE --- */
+table.simple {
+    border-spacing: 0;
+    border-collapse:    collapse;
+    border-bottom:  3px solid #005a9c;
+}
+
+.simple th {
+    background: #005a9c;
+    color:  #fff;
+    padding:    3px 5px;
+    text-align: left;
+}
+
+.simple th[scope="row"] {
+    background: inherit;
+    color:  inherit;
+    border-top: 1px solid #ddd;
+}
+
+.simple td {
+    padding:    3px 10px;
+    border-top: 1px solid #ddd;
+}
+
+.simple tr:nth-child(even) {
+    background: #f0f6ff;
+}
+
+/* --- DL --- */
+.section dd > p:first-child {
+    margin-top: 0;
+}
+
+.section dd > p:last-child {
+    margin-bottom: 0;
+}
+
+.section dd {
+    margin-bottom:  1em;
+}
+
+.section dl.attrs dd, .section dl.eldef dd {
+    margin-bottom:  0;
+}
+
+/* --- EXAMPLES --- */
+pre.example {
+    border-top: 1px solid #ff4500;
+    border-bottom: 1px solid #ff4500;
+    padding:    1em;
+    margin-top: 1em;
+}
+
+pre.example::before {
+    content:    "Example";
+    display:    block;
+    width:      150px;
+    background: #ff4500;
+    color:  #fff;
+    font-family:    initial;
+    padding:    3px;
+    font-weight:    bold;
+    margin: -1em 0 1em -1em;
+}
+
+/* --- EDITORIAL NOTES --- */
+.issue {
+    padding:    1em;
+    margin: 1em 0em 0em;
+    border: 1px solid #f00;
+    background: #ffc;
+}
+
+.issue::before {
+    content:    "Issue";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #f00;
+    background: #fff;
+    padding:    3px 1em;
+}
+
+.note {
+    margin: 1em 0em 0em;
+    padding:    1em;
+    border: 2px solid #cff6d9;
+    background: #e2fff0;
+}
+
+.note::before {
+    content:    "Note";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #cff6d9;
+    background: #fff;
+    padding:    3px 1em;
+}
+
+/* --- Best Practices --- */
+div.practice {
+    border: solid #bebebe 1px;
+    margin: 2em 1em 1em 2em;
+}
+
+span.practicelab {
+    margin: 1.5em 0.5em 1em 1em;
+    font-weight: bold;
+    font-style: italic;
+}
+
+span.practicelab   { background: #dfffff; }
+
+span.practicelab {
+    position: relative;
+    padding: 0 0.5em;
+    top: -1.5em;
+}
+
+p.practicedesc {
+    margin: 1.5em 0.5em 1em 1em;
+}
+
+@media screen {
+    p.practicedesc {
+        position: relative;
+        top: -2em;
+        padding: 0;
+        margin: 1.5em 0.5em -1em 1em;
+    }
+}
+
+/* --- SYNTAX HIGHLIGHTING --- */
+pre.sh_sourceCode {
+  background-color: white;
+  color: black;
+  font-style: normal;
+  font-weight: normal;
+}
+
+pre.sh_sourceCode .sh_keyword { color: #005a9c; font-weight: bold; }           /* language keywords */
+pre.sh_sourceCode .sh_type { color: #666; }                            /* basic types */
+pre.sh_sourceCode .sh_usertype { color: teal; }                             /* user defined types */
+pre.sh_sourceCode .sh_string { color: red; font-family: monospace; }        /* strings and chars */
+pre.sh_sourceCode .sh_regexp { color: orange; font-family: monospace; }     /* regular expressions */
+pre.sh_sourceCode .sh_specialchar { color: 	#ffc0cb; font-family: monospace; }  /* e.g., \n, \t, \\ */
+pre.sh_sourceCode .sh_comment { color: #A52A2A; font-style: italic; }         /* comments */
+pre.sh_sourceCode .sh_number { color: purple; }                             /* literal numbers */
+pre.sh_sourceCode .sh_preproc { color: #00008B; font-weight: bold; }       /* e.g., #include, import */
+pre.sh_sourceCode .sh_symbol { color: blue; }                            /* e.g., *, + */
+pre.sh_sourceCode .sh_function { color: black; font-weight: bold; }         /* function calls and declarations */
+pre.sh_sourceCode .sh_cbracket { color: red; }                              /* block brackets (e.g., {, }) */
+pre.sh_sourceCode .sh_todo { font-weight: bold; background-color: #00FFFF; }   /* TODO and FIXME */
+
+/* Predefined variables and functions (for instance glsl) */
+pre.sh_sourceCode .sh_predef_var { color: #00008B; }
+pre.sh_sourceCode .sh_predef_func { color: #00008B; font-weight: bold; }
+
+/* for OOP */
+pre.sh_sourceCode .sh_classname { color: teal; }
+
+/* line numbers (not yet implemented) */
+pre.sh_sourceCode .sh_linenum { display: none; }
+
+/* Internet related */
+pre.sh_sourceCode .sh_url { color: blue; text-decoration: underline; font-family: monospace; }
+
+/* for ChangeLog and Log files */
+pre.sh_sourceCode .sh_date { color: blue; font-weight: bold; }
+pre.sh_sourceCode .sh_time, pre.sh_sourceCode .sh_file { color: #00008B; font-weight: bold; }
+pre.sh_sourceCode .sh_ip, pre.sh_sourceCode .sh_name { color: #006400; }
+
+/* for Prolog, Perl... */
+pre.sh_sourceCode .sh_variable { color: #006400; }
+
+/* for LaTeX */
+pre.sh_sourceCode .sh_italics { color: #006400; font-style: italic; }
+pre.sh_sourceCode .sh_bold { color: #006400; font-weight: bold; }
+pre.sh_sourceCode .sh_underline { color: #006400; text-decoration: underline; }
+pre.sh_sourceCode .sh_fixed { color: green; font-family: monospace; }
+pre.sh_sourceCode .sh_argument { color: #006400; }
+pre.sh_sourceCode .sh_optionalargument { color: purple; }
+pre.sh_sourceCode .sh_math { color: orange; }
+pre.sh_sourceCode .sh_bibtex { color: blue; }
+
+/* for diffs */
+pre.sh_sourceCode .sh_oldfile { color: orange; }
+pre.sh_sourceCode .sh_newfile { color: #006400; }
+pre.sh_sourceCode .sh_difflines { color: blue; }
+
+/* for css */
+pre.sh_sourceCode .sh_selector { color: purple; }
+pre.sh_sourceCode .sh_property { color: blue; }
+pre.sh_sourceCode .sh_value { color: #006400; font-style: italic; }
+
+/* other */
+pre.sh_sourceCode .sh_section { color: black; font-weight: bold; }
+pre.sh_sourceCode .sh_paren { color: red; }
+pre.sh_sourceCode .sh_attribute { color: #006400; }
+
+</style><style type="text/css">
+/* --- EDITORIAL NOTES --- */
+.pending {
+    padding:    1em;
+    margin: 1em 0em 0em;
+    border: 1px solid #f00;
+    background: #BFEFFF;
+}
+
+.pending::before {
+    content:    "Pending Review";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #f00;
+    background: #fff;
+    padding:    3px 1em;
+}
+
+
+.resolved {
+    padding:    1em;
+    margin: 1em 0em 0em;
+    border: 1px solid #f00;
+    background: #9BCD9B;
+}
+
+.resolved::before {
+    content:    "Resolved";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #f00;
+    background: #fff;
+    padding:    3px 1em;
+}
+
+
+.inference {
+    padding:    1em;
+    margin: 1em 0em 0em;
+    border: 1px solid #f00;
+    background: #fff;
+}
+
+.inference::before {
+    content:    "Inference";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #f00;
+    background: #fff;
+    padding:    3px 1em;
+}
+
+.unamedconstraint {
+    padding:    1em;
+    margin: 1em 0em 0em;
+    border: 1px solid #00f;
+    background: #fff;
+}
+
+
+.unamedconstraint::before {
+    content:    "Constraint";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #00f;
+    background: #fff;
+    padding:    3px 1em;
+}
+
+
+
+.constraint {
+    padding:    1em;
+    margin: 1em 0em 0em;
+    border: 1px solid #00f;
+    background: #fff;
+}
+
+.constraint[id]::before {
+    content:    "Constraint: " attr(id);
+    width:  380px;  /* How can we compute the length of "Constraint: " attr(id) */
+}
+
+
+.constraint::before {
+    content:    "Constraint";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #00f;
+    background: #fff;
+    padding:    3px 1em;
+}
+
+
+
+.conditional {
+    color: blue;
+}
+
+.grammar {
+    margin-top: 1ex;
+    margin-bottom: 1ex;
+    padding-left: 1ex;
+    padding-right: 1ex;
+    padding-top: 1ex;
+    padding-bottom: 0.6ex;
+    border: 1px dashed #2f6fab;
+    font-family: monospace;
+}
+.nonterminal {
+    font-weight: bold;
+    font-family: sans-serif;
+    font-size: 95%;
+}
+
+.name {
+    font-family: monospace;
+}
+
+
+.xmpl {
+    padding:    1em;
+    margin: 1em 0em 0em;
+    border: 1px solid #f00;
+    background: #fff;
+}
+
+.xmpl::before {
+    content:    "Example";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #f00;
+    background: #fff;
+    padding:    3px 1em;
+}
+
+/* added prov-wg lebot  */
+
+.hlist {
+    border: 1px solid navy;
+    padding:5px;
+    background-color: #F4FFFF; 
+}
+
+.hlist li {
+    display: inline;
+    display: inline-table;
+    list-style-type: none;
+    padding-right: 20px;
+    
+}
+</style><link charset="utf-8" type="text/css" rel="stylesheet" href="prov-o_files/W3C-ED.css"></head>
+  <body style="display: inherit;"><div class="head"><p><a href="http://www.w3.org/"><img src="prov-o_files/w3c_home.png" alt="W3C" height="48" width="72"></a></p><h1 class="title" id="title">The PROV Ontology: It's not scary.</h1><h2 id="w3c-editor-s-draft-13-march-2012"><acronym title="World Wide Web Consortium">W3C</acronym> Editor's Draft 13 March 2012</h2><dl><dt>This version:</dt><dd><a href="http://dvcs.w3.org/hg/prov/raw-file/default/ontology/ProvenanceFormalModel.html">http://dvcs.w3.org/hg/prov/raw-file/default/ontology/ProvenanceFormalModel.html</a></dd><dt>Latest published version:</dt><dd><a href="http://www.w3.org/TR/prov-o/">http://www.w3.org/TR/prov-o/</a></dd><dt>Latest editor's draft:</dt><dd><a href="http://dvcs.w3.org/hg/prov/raw-file/default/ontology/ProvenanceFormalModel.html">http://dvcs.w3.org/hg/prov/raw-file/default/ontology/ProvenanceFormalModel.html</a></dd><dt>Previous version:</dt><dd><a href="http://www.w3.org/TR/2011/WD-prov-o-20111213/">http://www.w3.org/TR/2011/WD-prov-o-20111213/</a></dd><dt>Editors:</dt><dd><a href="http://tw.rpi.edu/instances/TimLebo">Timothy Lebo</a>, Rensselaer Polytechnic Institute, USA</dd>
+<dd><a href="http://cci.case.edu/cci/index.php/Satya_Sahoo">Satya Sahoo</a>, Case Western Reserve University, USA</dd>
+<dd><a href="http://tw.rpi.edu/instances/Deborah_L_McGuinness">Deborah McGuinness</a>, Rensselaer Polytechnic Institute, USA</dd>
+<dd><span>Mike Lang, Jr.</span>, Revelytix, USA</dd>
+<dt>Authors:</dt><dd><span>(In alphabetical order)</span></dd>
+<dd><a href="http://semanticweb.org/wiki/Khalid_Belhajjame">Khalid Belhajjame</a>, University of Manchester, UK</dd>
+<dd><a href="http://homepages.inf.ed.ac.uk/jcheney/">James Cheney</a>, University of Edinburgh, UK</dd>
+<dd><a href="http://www.oeg-upm.net/index.php/en/phdstudents/28-dgarijo">Daniel Garijo</a>, Universidad Politécnica de Madrid, Spain</dd>
+<dd><a href="http://soiland-reyes.com/stian/">Stian Soiland-Reyes</a>, University of Manchester, UK</dd>
+<dd><a href="http://tw.rpi.edu/web/person/StephanZednik">Stephan Zednik</a>, Rensselaer Polytechnic Institute, USA</dd>
+<dd><a href="http://users.ox.ac.uk/%7Ezool0770/">Jun Zhao</a>, University of Oxford, UK</dd>
+</dl><p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2012 <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.eu/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. <acronym title="World Wide Web Consortium">W3C</acronym> <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p><hr></div>
+
+    <div class="introductory section" id="abstract"><h2>Abstract</h2>
+      <p>
+	  The PROV Ontology (also PROV-O) encodes the PROV Data Model [<cite><a href="#bib-PROV-DM" rel="biblioentry" class="bibref">PROV-DM</a></cite>]
+ in the OWL2 Web Ontology Language (OWL2). The PROV ontology consists of
+ a set of classes, properties, and restrictions that can be used to 
+represent provenance information. The PROV ontology can also be 
+specialized to create new classes and properties for modeling provenance
+ information specific to different domain applications. The PROV 
+ontology supports a set of entailments based on OWL2 formal semantics 
+and provenance specific inference rules. The PROV ontology is available 
+for download as a separate OWL2 document.
+	  </p>
+
+    </div><div id="sotd" class="introductory section"><h2>Status of This Document</h2><p><em>This
+ section describes the status of this document at the time of its 
+publication. Other documents may supersede this document. A list of 
+current <acronym title="World Wide Web Consortium">W3C</acronym> publications and the latest revision of this technical report can be found in the <a href="http://www.w3.org/TR/"><acronym title="World Wide Web Consortium">W3C</acronym> technical reports index</a> at http://www.w3.org/TR/.</em></p>
+	  <p>
+	  This specification defines the PROV Ontology as the normative 
+representation of the PROV Data Model using the Web Ontology Language 
+(OWL2). This document is part of a set of specifications being created 
+to address the issue of provenance interchange in Web applications. This
+ document is accompanied by (1) the PROV Data Model, (2) the PROV Access
+ and Query, and (3) the Primer documents.
+	  </p>	
+    <p>This document was published by the <a href="http://www.w3.org/2011/prov/">Provenance Working Group</a> as an Editor's Draft. If you wish to make comments regarding this document, please send them to <a href="mailto:public-prov-wg@w3.org">public-prov-wg@w3.org</a> (<a href="mailto:public-prov-wg-request@w3.org?subject=subscribe">subscribe</a>, <a href="http://lists.w3.org/Archives/Public/public-prov-wg/">archives</a>). All feedback is welcome.</p><p>Publication as an Editor's Draft does not imply endorsement by the <acronym title="World Wide Web Consortium">W3C</acronym>
+ Membership. This is a draft document and may be updated, replaced or 
+obsoleted by other documents at any time. It is inappropriate to cite 
+this document as other than work in progress.</p><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February 2004 <acronym title="World Wide Web Consortium">W3C</acronym> Patent Policy</a>. <acronym title="World Wide Web Consortium">W3C</acronym> maintains a <a href="http://www.w3.org/2004/01/pp-impl/46974/status" rel="disclosure">public list of any patent disclosures</a>
+ made in connection with the deliverables of the group; that page also 
+includes instructions for disclosing a patent. An individual who has 
+actual knowledge of a patent which the individual believes contains <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section 6 of the <acronym title="World Wide Web Consortium">W3C</acronym> Patent Policy</a>.</p></div><div class="section" id="toc"><h2 class="introductory">Table of Contents</h2><ul class="toc"><li class="tocline"><a class="tocxref" href="#introduction"><span class="secno">1. </span>Introduction</a></li><li class="tocline"><a class="tocxref" href="#prov-o-at-a-glance"><span class="secno">2. </span>PROV-O at a glance</a></li><li class="tocline"><a class="tocxref" href="#ontology-description"><span class="secno">3. </span>The&nbsp;PROV-O&nbsp;Ontology&nbsp;Description</a><ul class="toc"><li class="tocline"><a class="tocxref" href="#description-starting-points"><span class="secno">3.1 </span>Starting Points</a></li><li class="tocline"><a class="tocxref" href="#expanded-terms"><span class="secno">3.2 </span>Expanded Terms</a></li><li class="tocline"><a class="tocxref" href="#qualified-terms-1"><span class="secno">3.3 </span>Qualified Terms</a></li><li class="tocline"><a class="tocxref" href="#description-collections"><span class="secno">3.4 </span>Collections</a></li></ul></li><li class="tocline"><a class="tocxref" href="#specializing-provenance-ontology-for-domain-specific-provenance-applications"><span class="secno">4. </span>Cross reference&nbsp;for&nbsp;PROV-O&nbsp;classes&nbsp;and&nbsp;properties</a><ul class="toc"><li class="tocline"><a class="tocxref" href="#starting-point-terms"><span class="secno">4.1 </span>Starting Point Terms</a></li><li class="tocline"><a class="tocxref" href="#additional-terms"><span class="secno">4.2 </span>Expanded Terms</a></li><li class="tocline"><a class="tocxref" href="#qualified-terms"><span class="secno">4.3 </span>Qualified Terms</a></li></ul></li><li class="tocline"><a class="tocxref" href="#changes-since-first-public-working-draft"><span class="secno">A. </span>Changes Since First Public Working Draft</a></li><li class="tocline"><a class="tocxref" href="#acknowledgements"><span class="secno">B. </span>Acknowledgements</a></li><li class="tocline"><a class="tocxref" href="#references"><span class="secno">C. </span>References</a><ul class="toc"><li class="tocline"><a class="tocxref" href="#normative-references"><span class="secno">C.1 </span>Normative references</a></li><li class="tocline"><a class="tocxref" href="#informative-references"><span class="secno">C.2 </span>Informative references</a></li></ul></li></ul></div>
+   
+    
+
+
+     <div class="section" id="introduction">    
+      <!--OddPage--><h2><span class="secno">1. </span>Introduction</h2>  
+      <p>
+  Talk about prov-dm
+  Say that we are using OWL-RL
+
+      </p>
+      <p>
+        PROV Ontology (also PROV-O) defines the normative modeling of the PROV Data Model [<cite><a href="#bib-PROV-DM" rel="biblioentry" class="bibref">PROV-DM</a></cite>] using the <acronym title="World Wide Web Consortium">W3C</acronym>
+ OWL2 Web Ontology Language. This document specification describes the 
+set of classes, properties, and restrictions that constitute the PROV 
+ontology, which have been introduced in the PROV Data Model [<cite><a href="#bib-PROV-DM" rel="biblioentry" class="bibref">PROV-DM</a></cite>].
+ This ontology specification provides the foundation for implementation 
+of provenance applications in different domains using the PROV ontology 
+for representing, exchanging, and integrating provenance information. 
+Together with the PROV Access and Query [<cite><a href="#bib-PROV-PAQ" rel="biblioentry" class="bibref">PROV-PAQ</a></cite>] and PROV Data Model [<cite><a href="#bib-PROV-DM" rel="biblioentry" class="bibref">PROV-DM</a></cite>],
+ this document forms a framework for provenance information interchange 
+and management in domain-specific Web-based applications.
+      </p>
+	  <p>
+		The PROV ontology classes and properties are defined such that they 
+can not only be used directly to represent provenance information, but 
+also can be specialized for modeling application-specific provenance 
+details in a variety of domains. Thus, the PROV ontology is expected to 
+be both directly usable in applications as well as serve as a <i>reference model</i>
+ for creation of domain-specific provenance ontology and thereby 
+facilitate interoperable provenance modeling. This document uses an 
+example <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/#a-file-scenario"> provenance scenario </a> introduced in the PROV Data Model [<cite><a href="#bib-PROV-DM" rel="biblioentry" class="bibref">PROV-DM</a></cite>] to demonstrate the use PROV-O classes and properties to model provenance information. 
+	  </p>
+	  <p>
+		Finally, this document describes the formal semantics of the PROV ontology using the OWL2 semantics, [<cite><a href="#bib-OWL2-DIRECT-SEMANTICS" rel="biblioentry" class="bibref">OWL2-DIRECT-SEMANTICS</a></cite>], [<cite><a href="#bib-OWL2-RDF-BASED-SEMANTICS" rel="biblioentry" class="bibref">OWL2-RDF-BASED-SEMANTICS</a></cite>],
+ and a set of provenance-specific inference rules. This is expected to 
+support provenance implementations to automatically check for 
+consistency of provenance information represented using PROV ontology 
+and explicitly assert implicit provenance knowledge. 
+	  </p>
+	  <p>The key words "<em title="must" class="rfc2119">must</em>", "<em title="must not" class="rfc2119">must not</em>", "<em title="required" class="rfc2119">required</em>", "<em title="shall" class="rfc2119">shall</em>", "<em title="shall not" class="rfc2119">shall not</em>", "<em title="should" class="rfc2119">should</em>", "<em title="should not" class="rfc2119">should not</em>", "<em title="recommended" class="rfc2119">recommended</em>",  "<em title="may" class="rfc2119">may</em>", and       "<em title="optional" class="rfc2119">optional</em>" in this document are to be interpreted as described in [<cite><a href="#bib-RFC2119" rel="biblioentry" class="bibref">RFC2119</a></cite>].</p>
+	  	
+
+    </div> <!-- Introduction -->
+
+
+
+	<div class="section" id="prov-o-at-a-glance">
+      <!--OddPage--><h2><span class="secno">2. </span>PROV-O at a glance</h2>
+
+      <p>
+The terms (classes and properties) in provo can be categorized into 
+three categories: starting point terms, terms used to encode qualified 
+relationships, and “expanded” (or what we can also call additional or 
+convenient) terms. This section provides a rational on this 
+categorization preferably in one paragraph, and then presents three 
+indexes that list the terms in each category hyperlinked to their 
+detailed description in Section 4 for quick reference.  To see what we 
+mean by an index, take a look at the following link 
+http://rdfs.org/sioc/spec/#sec-glance
+      </p>
+      <p>Starting Point classes and properties</p>
+      
+<div id="prov-starting-point-owl-classes-at-a-glance" class="prov-starting-point owl-classes at-a-glance">
+  <ul class="hlist">
+    <li>
+      <a href="#Activity">prov:Activity</a>
+    </li>
+    <li>
+      <a href="#Agent">prov:Agent</a>
+    </li>
+    <li>
+      <a href="#Entity">prov:Entity</a>
+    </li>
+  </ul>
+</div>
+
+<div id="prov-starting-point-owl-properties-at-a-glance" class="prov-starting-point owl-properties at-a-glance">
+  <ul class="hlist">
+    <li class="object-property">
+      <a href="#actedOnBehalfOf">prov:actedOnBehalfOf</a>
+    </li>
+    <li class="datatype-property">
+      <a href="#endedAtTime">prov:endedAtTime</a>
+    </li>
+    <li class="datatype-property">
+      <a href="#startedAtTime">prov:startedAtTime</a>
+    </li>
+    <li class="object-property">
+      <a href="#used">prov:used</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasAssociatedWith">prov:wasAssociatedWith</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasAttributedTo">prov:wasAttributedTo</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasDerivedFrom">prov:wasDerivedFrom</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasGeneratedBy">prov:wasGeneratedBy</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasInformedBy">prov:wasInformedBy</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasStartedByActivity">prov:wasStartedByActivity</a>
+    </li>
+  </ul>
+</div>
+
+
+      <p>Qualified classes and properties</p>
+      
+<div id="prov-qualified-owl-classes-at-a-glance" class="prov-qualified owl-classes at-a-glance">
+  <ul class="hlist">
+    <li>
+      <a href="#ActivityInvolvement">prov:ActivityInvolvement</a>
+    </li>
+    <li>
+      <a href="#AgentInvolvement">prov:AgentInvolvement</a>
+    </li>
+    <li>
+      <a href="#Association">prov:Association</a>
+    </li>
+    <li>
+      <a href="#Attribution">prov:Attribution</a>
+    </li>
+    <li>
+      <a href="#Derivation">prov:Derivation</a>
+    </li>
+    <li>
+      <a href="#End">prov:End</a>
+    </li>
+    <li>
+      <a href="#EntityInvolvement">prov:EntityInvolvement</a>
+    </li>
+    <li>
+      <a href="#Generation">prov:Generation</a>
+    </li>
+    <li>
+      <a href="#Inform">prov:Inform</a>
+    </li>
+    <li>
+      <a href="#InstantaneousEvent">prov:InstantaneousEvent</a>
+    </li>
+    <li>
+      <a href="#Involvement">prov:Involvement</a>
+    </li>
+    <li>
+      <a href="#Plan">prov:Plan</a>
+    </li>
+    <li>
+      <a href="#Quotation">prov:Quotation</a>
+    </li>
+    <li>
+      <a href="#Responsibility">prov:Responsibility</a>
+    </li>
+    <li>
+      <a href="#Revision">prov:Revision</a>
+    </li>
+    <li>
+      <a href="#Role">prov:Role</a>
+    </li>
+    <li>
+      <a href="#Source">prov:Source</a>
+    </li>
+    <li>
+      <a href="#Start">prov:Start</a>
+    </li>
+    <li>
+      <a href="#StartByActivity">prov:StartByActivity</a>
+    </li>
+    <li>
+      <a href="#Trace">prov:Trace</a>
+    </li>
+    <li>
+      <a href="#Usage">prov:Usage</a>
+    </li>
+  </ul>
+</div>
+
+<div id="prov-qualified-owl-properties-at-a-glance" class="prov-qualified owl-properties at-a-glance">
+  <ul class="hlist">
+    <li class="object-property">
+      <a href="#activity">prov:activity</a>
+    </li>
+    <li class="object-property">
+      <a href="#agent">prov:agent</a>
+    </li>
+    <li class="datatype-property">
+      <a href="#atTime">prov:atTime</a>
+    </li>
+    <li class="object-property">
+      <a href="#entity">prov:entity</a>
+    </li>
+    <li class="object-property">
+      <a href="#hadPlan">prov:hadPlan</a>
+    </li>
+    <li class="object-property">
+      <a href="#hadQuotedAgent">prov:hadQuotedAgent</a>
+    </li>
+    <li class="object-property">
+      <a href="#hadQuoterAgent">prov:hadQuoterAgent</a>
+    </li>
+    <li class="object-property">
+      <a href="#hadRole">prov:hadRole</a>
+    </li>
+    <li class="object-property">
+      <a href="#involved">prov:involved</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedAssociation">prov:qualifiedAssociation</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedAttribution">prov:qualifiedAttribution</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedDerivation">prov:qualifiedDerivation</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedEnd">prov:qualifiedEnd</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedGeneration">prov:qualifiedGeneration</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedInform">prov:qualifiedInform</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedQuotation">prov:qualifiedQuotation</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedResponsibility">prov:qualifiedResponsibility</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedRevision">prov:qualifiedRevision</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedSource">prov:qualifiedSource</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedStart">prov:qualifiedStart</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedStartByActivity">prov:qualifiedStartByActivity</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedTrace">prov:qualifiedTrace</a>
+    </li>
+    <li class="object-property">
+      <a href="#qualifiedUsage">prov:qualifiedUsage</a>
+    </li>
+  </ul>
+</div>
+
+
+      <p>Expanded classes and properties</p>
+      
+<div id="prov-expanded-owl-classes-at-a-glance" class="prov-expanded owl-classes at-a-glance">
+  <ul class="hlist">
+    <li>
+      <a href="#Bundle">prov:Bundle</a>
+    </li>
+    <li>
+      <a href="#Location">prov:Location</a>
+    </li>
+    <li>
+      <a href="#Note">prov:Note</a>
+    </li>
+    <li>
+      <a href="#Organization">prov:Organization</a>
+    </li>
+    <li>
+      <a href="#Person">prov:Person</a>
+    </li>
+    <li>
+      <a href="#SoftwareAgent">prov:SoftwareAgent</a>
+    </li>
+  </ul>
+</div>
+
+<div id="prov-expanded-owl-properties-at-a-glance" class="prov-expanded owl-properties at-a-glance">
+  <ul class="hlist">
+    <li class="object-property">
+      <a href="#alternateOf">prov:alternateOf</a>
+    </li>
+    <li class="object-property">
+      <a href="#generated">prov:generated</a>
+    </li>
+    <li class="object-property">
+      <a href="#hadLocation">prov:hadLocation</a>
+    </li>
+    <li class="object-property">
+      <a href="#hadOriginalSource">prov:hadOriginalSource</a>
+    </li>
+    <li class="object-property">
+      <a href="#hasAnnotation">prov:hasAnnotation</a>
+    </li>
+    <li class="object-property">
+      <a href="#specializationOf">prov:specializationOf</a>
+    </li>
+    <li class="object-property">
+      <a href="#tracedTo">prov:tracedTo</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasEndedBy">prov:wasEndedBy</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasQuotedFrom">prov:wasQuotedFrom</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasRevisionOf">prov:wasRevisionOf</a>
+    </li>
+    <li class="object-property">
+      <a href="#wasStartedBy">prov:wasStartedBy</a>
+    </li>
+  </ul>
+</div>
+
+
+      <div>
+       
+      </div>
+
+      <p> The PROV Data Model [<cite><a href="#bib-PROV-DM" rel="biblioentry" class="bibref">PROV-DM</a></cite>]
+ introduces a minimal set of concepts to represent provenance 
+information in a variety of application domains. This document maps the 
+PROV Data Model to PROV Ontology using the OWL2 ontology language, which
+ facilitates a fixed interpretation and use of the PROV Data Model 
+concepts based on the formal semantics of OWL2 [<cite><a href="#bib-OWL2-DIRECT-SEMANTICS" rel="biblioentry" class="bibref">OWL2-DIRECT-SEMANTICS</a></cite>] [<cite><a href="#bib-OWL2-RDF-BASED-SEMANTICS" rel="biblioentry" class="bibref">OWL2-RDF-BASED-SEMANTICS</a></cite>]. 
+	  </p>
+	  <p>The PROV Ontology can be used directly in a domain application, 
+though many domain applications may require specialization of PROV-O 
+Classes and Properties for representing domain-specific provenance 
+information. We briefly introduce some of the OWL2 modeling terms that 
+will be used to describe the PROV ontology. An OWL2 <i>instance</i> is 
+an individual object in a domain of discourse, for example a person 
+named Alice or a car, and a set of individuals sharing a set of 
+additional characteristics is called a <i>class</i>. Person and Car are 
+examples of classes representing the set of individual persons and cars 
+respectively. The OWL2 object properties are used to link individuals, 
+classes, or create a property hierarchy. For example, the object 
+property "hasOwner" can be used to link car with person. The OWL2 
+datatype properties are used to link individuals or classes to data 
+values, including XML Schema datatypes [<cite><a href="#bib-XMLSCHEMA-2" rel="biblioentry" class="bibref">XMLSCHEMA-2</a></cite>].   
+	  </p>
+	  <p>The PROV Data Model document [<cite><a href="#bib-PROV-DM" rel="biblioentry" class="bibref">PROV-DM</a></cite>] introduces an example <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/#a-file-scenario"> provenance scenario </a>
+ describing the creation of crime statistics file stored on a shared 
+file system and edited by journalists Alice, Bob, Charles, David, and 
+Edith. This scenario is used as a running example in this document to 
+describe the PROV ontology classes and properties, the specialization 
+mechanism, and the entailments supported by the PROV ontology. 
+	  </p>
+
+	</div> <!-- PROV-O at a glance -->
+
+
+
+
+    <div class="section" id="ontology-description">
+      <!--OddPage--><h2><span class="secno">3. </span>The&nbsp;PROV-O&nbsp;Ontology&nbsp;Description</h2>    	
+      <p>PROV-O is a lightweight OWL-RL ontology designed to represent 
+and interchange provenance information generated in different systems, 
+under different context. Users of PROV-O might only need to grasp part 
+of the vocabulary, which will be sufficient to their needs, according to
+ how much detail they want to go with their provenance information. For 
+this, we group PROV-O terms into several categories in order to provide a
+ gentle, incremental introduction to the ontology, and they are 
+introduced in the following order:</p>
+
+      <ul>
+         <li>Starting-point terms, as the name suggests, consist of a 
+small collection of terms for users to kick start, to provide simple 
+provenance descriptions.
+         </li>
+         <li>Terms for expressing expanded relationships, are for users 
+who want to express more detailed provenance, in a more precise 
+manner.For example, instead of simply stating that one entity was 
+derived from another one, one can specify more specifically that one 
+actually was a revision of, source of, or quotation of the other entity.
+         </li>
+         <li>Terms for expressing Qualified relationship, are for users 
+who wish to "qualify" relationships between entities, agents and 
+activities. These qualification statements allow expression of 
+additional attributes of these relationships, such as the time at which 
+an entity was used by an activity, or of additional entities involved in
+ a relationship, for example, the plan/recipe used by an agent in an 
+activity.
+         </li>
+      </ul>
+
+
+     <div class="section" id="description-starting-points">
+	  	<h3><span class="secno">3.1 </span>Starting Points</h3>
+      <p> 
+This section presents a diagram illustrating the concepts and properties
+ that compose the ontology, without talking about involvement.  The 
+following example diagram illustrates the level of details we want to 
+present and the exact classes and properties we believe fall into this 
+category. No need to show the “Thing” class in the diagram, as we are 
+doing now. That just makes the diagram more complex. Neither SIOC nor 
+OPMV do that.  The classes and properties to show in this diagram are 
+the following:
+Entity, Agent, Activity, used, wasGeneratedBy, wasDerivedFrom, 
+wasAssociatedWith (wasEndedBy? wasStartedBy??), actedOnBehalfOf, 
+wasInformedBy, wasAttributedTo, “Temporal stuff”
+	  </p>
+
+      <div style="text-align: center;">
+         <figure>
+            <img src="prov-o_files/diagram-simple.html" style="width: 70%; min-width: 25em; max-width: 60em;" alt="Class hierarchy of the PROV ontology">
+            <figcaption>Figure 1. Simple classes and properties in PROV-O</figcaption>
+         </figure>
+      </div>
+
+        <div class="issue">
+           Luc has general comments in <a href="http://www.w3.org/2011/prov/track/issues/117">ISSUE-117</a>
+        </div>
+        <div class="issue">
+           Vanilla RDF versus OWL <a href="http://www.w3.org/2011/prov/track/issues/119">ISSUE-119</a>
+        </div>
+        <div class="issue">
+           Location concerns <a href="http://www.w3.org/2011/prov/track/issues/128">ISSUE-128</a>
+        </div>
+        <div class="issue">
+           Diagram consistency <a href="http://www.w3.org/2011/prov/track/issues/227">ISSUE-227</a>
+        </div>
+        <div class="issue">
+           Eric's comments <a href="http://www.w3.org/2011/prov/track/issues/250">ISSUE-250</a>
+        </div>
+        <div class="issue">
+           Conforming to <acronym title="World Wide Web Consortium">W3C</acronym> Style guides <a href="http://www.w3.org/2011/prov/track/issues/308">ISSUE-308</a>
+        </div>
+
+        <div class="anexample">
+           <div><b>Example</b></div>
+            <p>
+Turtle + Explanation. The example does not have to illustrate all the 
+terms. Instead, it focuses on the main ones. (see 
+eg16-journalism-simple-without-comments.ttl). We chose this example over
+ others because we think it is simple, intuitive. Moreover, it is used 
+in the primer, and therefore people who read the primer before the provo
+ HTML document, will find it easy to follow.
+
+            </p>
+           <div class="exampleOuter">
+              <pre class="example">ex:aggregationActivity 	a prov:Activity ;
+	      	       	prov:used           ex:dataSet1 ;
+                       	prov:used           ex:regionList1 ;
+			prov:wasAssociatedWith ex:derek ;
+			prov:wasStartedAt   "2011-07-14T15:02:14Z"^^xsd:dateTime ;
+			prov:wasEndedAt     "2011-07-14T15:34:14Z"^^xsd:dateTime ;
+
+ex:aggregate1          	prov:wasGeneratedBy ex:aggregationActivity .
+
+ex:regionList1, ex:dataSet1, ex:aggregate1 a prov:Entity .
+
+ex:illustrationActivity a prov:Activity; 
+	       		prov:used           ex:aggregate1 ;
+			prov:wasAssociatedWith ex:derek .
+
+ex:illustrationActivity     prov:wasInformedBy		ex:aggregationActivity .
+
+ex:chart1      	a prov:Entity ;
+	       	prov:wasGeneratedBy ex:illustrationActivity ;
+		prov:wasDerivedFrom     ex:aggregate1 .
+
+ex:aggregate1, ex:chart1   prov:wasAttributedTo 	ex:derek .
+
+ex:derek       	a    prov:Agent ;
+	       	a foaf:Person ;
+	       	foaf:givenName "Derek"^^xsd:string ;
+               	foaf:mbox      &lt;mailto:dererk@example.org&gt; ;
+		prov:actedOnBehalfOf ex:chartgen .
+
+ex:chartgen a prov:Agent ;
+            a prov:Organization ;
+            foaf:name "Chart Generators" .</pre>
+           </div>
+        </div>
+	  </div> <!-- Starting Points  in PROV-O -->
+
+
+
+     <div class="section" id="expanded-terms">
+	  	<h3><span class="secno">3.2 </span>Expanded Terms</h3>
+        <p>        
+This section presents the rest of classes and properties textually 
+without using a diagram. We may use some examples in English. 
+The classes and properties covered in this section are: 
+Note, hasAnnotation, tracedTo, wasRevisionOf, hadOriginalSource, 
+wasQuotatedFrom, hadQuotatedAgent, hadQuoterAgent, wasSummaryOf, 
+alternateOf, terms related to Collection? Bundle? Role?? , hadRole, 
+Location??, hadLocation?, wasStartedByActivity?? specializationOf?
+
+		</p>
+	  </div> &lt; !-- Expaned Terms subsection --&gt;
+
+
+
+
+     <div class="section" id="qualified-terms-1">
+	  	<h3><span class="secno">3.3 </span>Qualified Terms</h3>
+        <p>        
+This section shows how qualified relationships in prov-dm are encoded in
+ provo. We need two diagrams: one to show the hierarchical relationship 
+between involvement classes, and another to using Association as an 
+exemplar to illustrate the general pattern to qualify a binary 
+relationship. 
+   </p>
+
+      <div style="text-align: center;">
+         <figure>
+                 <img src="prov-o_files/involvements.html" style="width: 70%; min-width: 25em; max-width: 60em;" alt="A hierarchical illustration of simple involvements">
+            <figcaption>Figure 2. A hierarchical illustration of simple involvements</figcaption>
+         </figure>
+      </div>
+
+      <div style="text-align: center;">
+         <figure>
+                 <img src="prov-o_files/Qualified-Association.html" style="width: 70%; min-width: 25em; max-width: 60em;" alt="Express association between an activity and an agent using a binary relationship and an alternatie qualified relationship">
+            <figcaption>Figure 3. Express association between an 
+activity and an agent using a binary relationship and an alternatie 
+qualified relationship</figcaption>
+         </figure>
+      </div>
+
+
+         <p>
+         We have in the current provo HTML document a diagram about 
+qualified involvement in Section 8 “Overview of Qualified Involvement”, 
+but we don’t think that such a diagram is great. We need to illustrate 
+the hierarchy of involvements and some, not necessarily all, the 
+associated object properties. The focus in the diagram will be on the 
+elements of prov-dm that are illustrates in the previous overview 
+sub-section. 
+         The diagram can show the following kinds on involvements, and 
+shows some (not necessarily all) the properties that link them together,
+ e.g., entity, activity, agent, qualified. Note that, not all the 
+sub-classes of involvements are included here; they will appear in 
+section 3.3 because they are additional terms in prov-o.
+         Involvement, EntityInvolvement, ActicityInvolvement, 
+AgentInvolvement, Derivation, Usage, Generation, Association (End, 
+Start), Responsibility, Attribution,
+         </p>
+
+         <p>
+         Turtle + Explanation. We do not to cover all the kinds of 
+involvement and properties in the example. We only show how Derivation, 
+Usage, Generation and Association can be expressed using this 
+reification pattern. If need be, examples of other types of involvement 
+should be given in section 4, where they are defined.  For the qualified
+ relationships we provide the following example files:
+         </p>
+
+        <div class="anexample">
+           <div><b>Qualified DerivationExample</b></div>
+            <p>
+eg16-journalism-derivation.ttl, to show how additional information about
+ derivation can be expressed, such as when it all happened.
+            </p>
+           <div class="exampleOuter">
+              <pre class="example">#### we know that the chart was derived from the aggregated data, but what else do we know about this derivation? when did it happen etc?
+
+### The example is quite contentious at the moment because we have not settled down on derivation modeling yet.
+
+### this is what we can express using the core classes and properties
+ex:chart1     prov:wasDerivedFrom     ex:aggregate1 .
+
+
+### this is what we can express using qualified relationships to talk more about the derivation relationship between the chart and the aggregated data, such as when the derivation took place, what activity was involved in the derivation 
+
+ex:chart1	prov:qualifiedDerivation   [
+			a prov:Derivation ;
+			prov:entity	ex:aggregate1 ;		
+			prov:atTime	""^^xsd:dateTime 	
+		].</pre>
+           </div>
+        </div>
+
+        <div class="anexample">
+           <div><b>Qualified Generation Example</b></div>
+            <p>
+ eg16-journalism-generation.ttl, to show how additional information 
+about generation can be expressed, such as when it all happened.
+            </p>
+           <div class="exampleOuter">
+              <pre class="example">#### we know that the chart was generated in a graph creation process, but what else do we know about this generation activity? when did it happen etc? what entity was used in this activity?
+
+### this is what we can express using the core classes and properties
+ex:chart1     prov:wasGeneratedBy ex:illustrationActivity .
+
+
+### this is what we can express using qualified relationships to talk more about the generation activity
+
+ex:chart1	prov:qualifiedGeneration  [
+			a prov:Generation ;
+			prov:activity	ex:illustrationActivity ;
+			prov:atTime	prov:wasStartedAt   "2011-07-14T15:52:14Z"^^xsd:dateTime ;
+		] .</pre>
+           </div>
+        </div>
+
+        <div class="anexample">
+           <div><b>Qualified Usage Example</b></div>
+            <p>
+eg16-journalism-usage.ttl, to show how additional information about usage can be expressed, such as when it all happened.
+            </p>
+           <div class="exampleOuter">
+              <pre class="example">### When was the aggregated data used to create the chart?
+
+ex:illustrationActivity		
+		prov:qualifiedUsage  [
+			a  prov:Usage ;
+			prov:entity	ex:aggregate1 ;
+			prov:atTime	""^^xsd:dateTime 		
+		] .</pre>
+           </div>
+        </div>
+
+        <div class="anexample">
+           <div><b>Qualified Association Example</b></div>
+            <p>
+ eg16-journalism-association.ttl, to show how we can express plan or recipe used in an activity by an agent
+            </p>
+           <div class="exampleOuter">
+              <pre class="example">### what recipe (a plan) did Dereck (an agent) follow to create the graphical chart
+
+### simple expression using prov-o core
+ex:illustrationActivity    prov:wasAssociatedWith ex:derek .
+
+### more complex expression using prov-o qualified
+ex:illustrationActivity
+		prov:qualifiedAssociation [
+			a  prov:Association ;
+			prov:hadPlan	ex:plan1 ;
+			prov:agent 	   ex:derek
+		] .
+
+ex:plan1	a 	prov:Plan, prov:Entity .</pre>
+           </div>
+        </div>
+
+         <div style="text-align: center;">
+            <table class="qualified-forms">
+  <caption>Qualification Property and Involvement Class used to qualify a Starting-point Property.</caption>
+  <tbody><tr>
+    <th>Starting-point Property</th>
+    <th>Qualification Property</th>
+    <th>Involvement Class</th>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#actedOnBehalfOf" href="#actedOnBehalfOf" class="owlclass">prov:actedOnBehalfOf</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedResponsibility" href="#qualifiedResponsibility" class="owlclass">prov:qualifiedResponsibility</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Responsibility" href="#Responsibility" class="owlclass">prov:Responsibility</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#used" href="#used" class="owlclass">prov:used</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedUsage" href="#qualifiedUsage" class="owlclass">prov:qualifiedUsage</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Usage" href="#Usage" class="owlclass">prov:Usage</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasAssociatedWith" href="#wasAssociatedWith" class="owlclass">prov:wasAssociatedWith</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedAssociation" href="#qualifiedAssociation" class="owlclass">prov:qualifiedAssociation</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Association" href="#Association" class="owlclass">prov:Association</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasAttributedTo" href="#wasAttributedTo" class="owlclass">prov:wasAttributedTo</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedAttribution" href="#qualifiedAttribution" class="owlclass">prov:qualifiedAttribution</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Attribution" href="#Attribution" class="owlclass">prov:Attribution</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasDerivedFrom" href="#wasDerivedFrom" class="owlclass">prov:wasDerivedFrom</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedDerivation" href="#qualifiedDerivation" class="owlclass">prov:qualifiedDerivation</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Derivation" href="#Derivation" class="owlclass">prov:Derivation</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasGeneratedBy" href="#wasGeneratedBy" class="owlclass">prov:wasGeneratedBy</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedGeneration" href="#qualifiedGeneration" class="owlclass">prov:qualifiedGeneration</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Generation" href="#Generation" class="owlclass">prov:Generation</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasInformedBy" href="#wasInformedBy" class="owlclass">prov:wasInformedBy</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedInform" href="#qualifiedInform" class="owlclass">prov:qualifiedInform</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Inform" href="#Inform" class="owlclass">prov:Inform</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasStartedByActivity" href="#wasStartedByActivity" class="owlclass">prov:wasStartedByActivity</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedStartByActivity" href="#qualifiedStartByActivity" class="owlclass">prov:qualifiedStartByActivity</a></td>
+    <td><a title="http://www.w3.org/ns/prov#StartByActivity" href="#StartByActivity" class="owlclass">prov:StartByActivity</a></td>
+  </tr>
+</tbody></table>
+
+         </div>
+
+         <div style="text-align: center;">
+            <table class="qualified-forms">
+  <caption>Qualification Property and Involvement Class used to qualify a Expanded Property.</caption>
+  <tbody><tr>
+    <th>Expanded Property</th>
+    <th>Qualification Property</th>
+    <th>Involvement Class</th>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#hadOriginalSource" href="#hadOriginalSource" class="owlclass">prov:hadOriginalSource</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedSource" href="#qualifiedSource" class="owlclass">prov:qualifiedSource</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Source" href="#Source" class="owlclass">prov:Source</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#tracedTo" href="#tracedTo" class="owlclass">prov:tracedTo</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedTrace" href="#qualifiedTrace" class="owlclass">prov:qualifiedTrace</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Trace" href="#Trace" class="owlclass">prov:Trace</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasEndedBy" href="#wasEndedBy" class="owlclass">prov:wasEndedBy</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedEnd" href="#qualifiedEnd" class="owlclass">prov:qualifiedEnd</a></td>
+    <td><a title="http://www.w3.org/ns/prov#End" href="#End" class="owlclass">prov:End</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasQuotedFrom" href="#wasQuotedFrom" class="owlclass">prov:wasQuotedFrom</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedQuotation" href="#qualifiedQuotation" class="owlclass">prov:qualifiedQuotation</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Quotation" href="#Quotation" class="owlclass">prov:Quotation</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasRevisionOf" href="#wasRevisionOf" class="owlclass">prov:wasRevisionOf</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedRevision" href="#qualifiedRevision" class="owlclass">prov:qualifiedRevision</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Revision" href="#Revision" class="owlclass">prov:Revision</a></td>
+  </tr>
+  <tr>
+    <td><a title="http://www.w3.org/ns/prov#wasStartedBy" href="#wasStartedBy" class="owlclass">prov:wasStartedBy</a></td>
+    <td><a title="http://www.w3.org/ns/prov#qualifiedStart" href="#qualifiedStart" class="owlclass">prov:qualifiedStart</a></td>
+    <td><a title="http://www.w3.org/ns/prov#Start" href="#Start" class="owlclass">prov:Start</a></td>
+  </tr>
+</tbody></table>
+
+         </div>
+	  </div>
+
+
+           <div class="section" id="description-collections"> <!-- section 3.1 -->
+       <!-- This section is version controlled at http://dvcs.w3.org/hg/prov/file/tip/ontology and mirroed to
+             https://github.com/timrdf/prov-lodspeakr/tree/master/components/services/prov-o -->
+       <h3><span class="secno">3.4 </span>Collections</h3>
+       <p>
+       </p>
+     </div>
+
+
+	  </div>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+
+	<div class="informative section" id="specializing-provenance-ontology-for-domain-specific-provenance-applications">
+      <!--OddPage--><h2><span class="secno">4. </span>Cross reference&nbsp;for&nbsp;PROV-O&nbsp;classes&nbsp;and&nbsp;properties</h2><p><em>This section is non-normative.</em></p>
+
+<p>
+This section, i.e., Section 4, presents the classes and properties that 
+compose the ontology. No need to provide a diagram illustrating the 
+domain and the range of the object properties. Also, no need to provide 
+an example for each class and property. We should be able to present 
+most of classes with an example stated using a sentence or two in 
+English. In other words, we don’t need to provide the turtle for every 
+small example if a sentence in English is enough. We should reserve the 
+use of turtle only for the classes and properties that we think may be 
+difficult for the user to grasp, e.g., involvement. In particular, some 
+of the involvements that reify relations that are not part of the simple
+ ontology, such as inform and Trace may need to be illustrated using 
+turtle examples.
+</p>     
+
+      <div class="section" id="starting-point-terms">
+         <h3><span class="secno">4.1 </span>Starting Point Terms</h3>
+         <div id="prov-starting-point-owl-classes-crossreference" class="prov-starting-point owl-classes crossreference">
+
+  <div id="Activity" class="entity">
+    <h3 id="prov-activity-----------------back-to-starting-point-classes">
+      <a href="#Activity"><span class="dotted" title="http://www.w3.org/ns/prov#Activity">prov:Activity</span></a>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-classes-at-a-glance">starting-point classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Activity</p>
+    <div class="comment"><p>Activity is defined to be 'an identifiable activity, which performs a piece of work.'</p>
+    </div>
+    <dl class="description">
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedStart" href="#qualifiedStart">prov:qualifiedStart</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedStartByActivity" href="#qualifiedStartByActivity">prov:qualifiedStartByActivity</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedAssociation" href="#qualifiedAssociation">prov:qualifiedAssociation</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasAssociatedWith" href="#wasAssociatedWith">prov:wasAssociatedWith</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedInform" href="#qualifiedInform">prov:qualifiedInform</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedUsage" href="#qualifiedUsage">prov:qualifiedUsage</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#used" href="#used">prov:used</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasStartedByActivity" href="#wasStartedByActivity">prov:wasStartedByActivity</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#endedAtTime" href="#endedAtTime">prov:endedAtTime</a>
+        <sup class="type-dp" title="data property">dp</sup>
+        <a title="http://www.w3.org/ns/prov#wasInformedBy" href="#wasInformedBy">prov:wasInformedBy</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#generated" href="#generated">prov:generated</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasStartedBy" href="#wasStartedBy">prov:wasStartedBy</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedEnd" href="#qualifiedEnd">prov:qualifiedEnd</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#startedAtTime" href="#startedAtTime">prov:startedAtTime</a>
+        <sup class="type-dp" title="data property">dp</sup>
+        <a title="http://www.w3.org/ns/prov#wasEndedBy" href="#wasEndedBy">prov:wasEndedBy</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#wasInformedBy" href="#wasInformedBy">prov:wasInformedBy</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasStartedByActivity" href="#wasStartedByActivity">prov:wasStartedByActivity</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasGeneratedBy" href="#wasGeneratedBy">prov:wasGeneratedBy</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#activity" href="#activity">prov:activity</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Agent" class="entity">
+    <h3 id="prov-agent-----------------back-to-starting-point-classes">
+      <a href="#Agent"><span class="dotted" title="http://www.w3.org/ns/prov#Agent">prov:Agent</span></a>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-classes-at-a-glance">starting-point classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Agent</p>
+    <div class="comment"><p>An agent represents a characterized entity capable of activity.</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+      </dd>
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#actedOnBehalfOf" href="#actedOnBehalfOf">prov:actedOnBehalfOf</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedResponsibility" href="#qualifiedResponsibility">prov:qualifiedResponsibility</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#hadQuotedAgent" href="#hadQuotedAgent">prov:hadQuotedAgent</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#agent" href="#agent">prov:agent</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasAssociatedWith" href="#wasAssociatedWith">prov:wasAssociatedWith</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasAttributedTo" href="#wasAttributedTo">prov:wasAttributedTo</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#actedOnBehalfOf" href="#actedOnBehalfOf">prov:actedOnBehalfOf</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#hadQuoterAgent" href="#hadQuoterAgent">prov:hadQuoterAgent</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>has subclasses</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Organization" href="#Organization" class="owlclass">prov:Organization</a>
+        <a title="http://www.w3.org/ns/prov#Person" href="#Person" class="owlclass">prov:Person</a>
+        <a title="http://www.w3.org/ns/prov#SoftwareAgent" href="#SoftwareAgent" class="owlclass">prov:SoftwareAgent</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Entity" class="entity">
+    <h3 id="prov-entity-----------------back-to-starting-point-classes">
+      <a href="#Entity"><span class="dotted" title="http://www.w3.org/ns/prov#Entity">prov:Entity</span></a>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-classes-at-a-glance">starting-point classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Entity</p>
+    <div class="comment"><p>An identifiable characterized entity.</p>
+    </div>
+    <dl class="description">
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#tracedTo" href="#tracedTo">prov:tracedTo</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedTrace" href="#qualifiedTrace">prov:qualifiedTrace</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedRevision" href="#qualifiedRevision">prov:qualifiedRevision</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasAttributedTo" href="#wasAttributedTo">prov:wasAttributedTo</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasDerivedFrom" href="#wasDerivedFrom">prov:wasDerivedFrom</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedDerivation" href="#qualifiedDerivation">prov:qualifiedDerivation</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasGeneratedBy" href="#wasGeneratedBy">prov:wasGeneratedBy</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#specializationOf" href="#specializationOf">prov:specializationOf</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedQuotation" href="#qualifiedQuotation">prov:qualifiedQuotation</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#alternateOf" href="#alternateOf">prov:alternateOf</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedSource" href="#qualifiedSource">prov:qualifiedSource</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedGeneration" href="#qualifiedGeneration">prov:qualifiedGeneration</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#qualifiedAttribution" href="#qualifiedAttribution">prov:qualifiedAttribution</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasQuotedFrom" href="#wasQuotedFrom">prov:wasQuotedFrom</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#hadOriginalSource" href="#hadOriginalSource">prov:hadOriginalSource</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasRevisionOf" href="#wasRevisionOf">prov:wasRevisionOf</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#tracedTo" href="#tracedTo">prov:tracedTo</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasDerivedFrom" href="#wasDerivedFrom">prov:wasDerivedFrom</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#entity" href="#entity">prov:entity</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#specializationOf" href="#specializationOf">prov:specializationOf</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#generated" href="#generated">prov:generated</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#used" href="#used">prov:used</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#alternateOf" href="#alternateOf">prov:alternateOf</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasQuotedFrom" href="#wasQuotedFrom">prov:wasQuotedFrom</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#hadOriginalSource" href="#hadOriginalSource">prov:hadOriginalSource</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#wasRevisionOf" href="#wasRevisionOf">prov:wasRevisionOf</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>has subclasses</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+        <a title="http://www.w3.org/ns/prov#Plan" href="#Plan" class="owlclass">prov:Plan</a>
+        <a title="http://www.w3.org/ns/prov#Bundle" href="#Bundle" class="owlclass">prov:Bundle</a>
+      </dd>
+    </dl>
+  </div>
+</div>
+<div id="prov-starting-point-owl-properties-crossreference" class="prov-starting-point owl-properties crossreference">
+  <div id="actedOnBehalfOf" class="entity">
+    <h3 id="prov-actedonbehalfof-------op-----------------back-to-starting-point-properties">
+      <a href="#actedOnBehalfOf"><span class="dotted" title="http://www.w3.org/ns/prov#actedOnBehalfOf">prov:actedOnBehalfOf</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#actedOnBehalfOf</p>
+    <div class="description">
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#involved" href="#involved" class="owlclass">prov:involved</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="endedAtTime" class="entity">
+    <h3 id="prov-endedattime-------dp-----------------back-to-starting-point-properties">
+      <a href="#endedAtTime"><span class="dotted" title="http://www.w3.org/ns/prov#endedAtTime">prov:endedAtTime</span></a>
+      <sup class="type-dp" title="data property">dp</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#endedAtTime</p>
+    <div class="description">
+      <p><strong>has characteristics</strong>
+  Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            http://www.w3.org/2001/XMLSchema#dateTime
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="startedAtTime" class="entity">
+    <h3 id="prov-startedattime-------dp-----------------back-to-starting-point-properties">
+      <a href="#startedAtTime"><span class="dotted" title="http://www.w3.org/ns/prov#startedAtTime">prov:startedAtTime</span></a>
+      <sup class="type-dp" title="data property">dp</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#startedAtTime</p>
+    <div class="description">
+      <p><strong>has characteristics</strong>
+  Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            http://www.w3.org/2001/XMLSchema#dateTime
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="used" class="entity">
+    <h3 id="prov-used-------op-----------------back-to-starting-point-properties">
+      <a href="#used"><span class="dotted" title="http://www.w3.org/ns/prov#used">prov:used</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#used</p>
+    <div class="description">
+    <div class="comment"><p>A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven .</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Asymmetric
+, Irreflexive
+      </p>
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#involved" href="#involved" class="owlclass">prov:involved</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasAssociatedWith" class="entity">
+    <h3 id="prov-wasassociatedwith-------op-----------------back-to-starting-point-properties">
+      <a href="#wasAssociatedWith"><span class="dotted" title="http://www.w3.org/ns/prov#wasAssociatedWith">prov:wasAssociatedWith</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasAssociatedWith</p>
+    <div class="description">
+    <div class="comment"><p>A prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity.</p>
+    </div>
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#involved" href="#involved" class="owlclass">prov:involved</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has sub-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasStartedBy" href="#wasStartedBy" class="owlclass">prov:wasStartedBy</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasEndedBy" href="#wasEndedBy" class="owlclass">prov:wasEndedBy</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasAttributedTo" class="entity">
+    <h3 id="prov-wasattributedto-------op-----------------back-to-starting-point-properties">
+      <a href="#wasAttributedTo"><span class="dotted" title="http://www.w3.org/ns/prov#wasAttributedTo">prov:wasAttributedTo</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasAttributedTo</p>
+    <div class="description">
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#tracedTo" href="#tracedTo" class="owlclass">prov:tracedTo</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasDerivedFrom" class="entity">
+    <h3 id="prov-wasderivedfrom-------op-----------------back-to-starting-point-properties">
+      <a href="#wasDerivedFrom"><span class="dotted" title="http://www.w3.org/ns/prov#wasDerivedFrom">prov:wasDerivedFrom</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasDerivedFrom</p>
+    <div class="description">
+    <div class="comment"><p>wasDerivedFrom links two distinct 
+characterized entities, where "some characterized entity is transformed 
+from, created from, or affected by another characterized entity."</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Asymmetric
+, Irreflexive
+      </p>
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#tracedTo" href="#tracedTo" class="owlclass">prov:tracedTo</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has sub-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasQuotedFrom" href="#wasQuotedFrom" class="owlclass">prov:wasQuotedFrom</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#hadOriginalSource" href="#hadOriginalSource" class="owlclass">prov:hadOriginalSource</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasRevisionOf" href="#wasRevisionOf" class="owlclass">prov:wasRevisionOf</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasGeneratedBy" class="entity">
+    <h3 id="prov-wasgeneratedby-------op-----------------back-to-starting-point-properties">
+      <a href="#wasGeneratedBy"><span class="dotted" title="http://www.w3.org/ns/prov#wasGeneratedBy">prov:wasGeneratedBy</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasGeneratedBy</p>
+    <div class="description">
+    <div class="comment"><p>wasGeneratedBy links Entitites with Activity representing that entity was generated as a result of Activity</p>
+    </div>
+      <p><strong>has characteristics</strong>
+  Functional
+, Asymmetric
+, Irreflexive
+      </p>
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#involved" href="#involved" class="owlclass">prov:involved</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasInformedBy" class="entity">
+    <h3 id="prov-wasinformedby-------op-----------------back-to-starting-point-properties">
+      <a href="#wasInformedBy"><span class="dotted" title="http://www.w3.org/ns/prov#wasInformedBy">prov:wasInformedBy</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasInformedBy</p>
+    <div class="description">
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#involved" href="#involved" class="owlclass">prov:involved</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasStartedByActivity" class="entity">
+    <h3 id="prov-wasstartedbyactivity-------op-----------------back-to-starting-point-properties">
+      <a href="#wasStartedByActivity"><span class="dotted" title="http://www.w3.org/ns/prov#wasStartedByActivity">prov:wasStartedByActivity</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-starting-point-owl-properties-at-a-glance">starting-point properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasStartedByActivity</p>
+    <div class="description">
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#involved" href="#involved" class="owlclass">prov:involved</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+</div>
+
+      </div> <!-- Simple Classes and Properties - crossreference -->
+
+      <div class="section" id="additional-terms">
+         <h3><span class="secno">4.2 </span>Expanded Terms</h3>
+         <div id="prov-expanded-owl-classes-crossreference" class="prov-expanded owl-classes crossreference">
+
+  <div id="Bundle" class="entity">
+    <h3 id="prov-bundle-----------------back-to-expanded-classes">
+      <a href="#Bundle"><span class="dotted" title="http://www.w3.org/ns/prov#Bundle">prov:Bundle</span></a>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-classes-at-a-glance">expanded classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Bundle</p>
+    <div class="comment"><p>A prov:Bundle is a group of PROV statements.</p>
+    </div>
+    <div class="comment"><p>prov:Bundles are best modeled using sd:NamedGraphs.</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Location" class="entity">
+    <h3 id="prov-location-----------------back-to-expanded-classes">
+      <a href="#Location"><span class="dotted" title="http://www.w3.org/ns/prov#Location">prov:Location</span></a>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-classes-at-a-glance">expanded classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Location</p>
+    <div class="comment"><p>This is wgs:SpatialThing</p>
+    </div>
+    <dl class="description">
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#hadLocation" href="#hadLocation">prov:hadLocation</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Note" class="entity">
+    <h3 id="prov-note-----------------back-to-expanded-classes">
+      <a href="#Note"><span class="dotted" title="http://www.w3.org/ns/prov#Note">prov:Note</span></a>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-classes-at-a-glance">expanded classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Note</p>
+    <dl class="description">
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#hasAnnotation" href="#hasAnnotation">prov:hasAnnotation</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Organization" class="entity">
+    <h3 id="prov-organization-----------------back-to-expanded-classes">
+      <a href="#Organization"><span class="dotted" title="http://www.w3.org/ns/prov#Organization">prov:Organization</span></a>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-classes-at-a-glance">expanded classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Organization</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Person" class="entity">
+    <h3 id="prov-person-----------------back-to-expanded-classes">
+      <a href="#Person"><span class="dotted" title="http://www.w3.org/ns/prov#Person">prov:Person</span></a>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-classes-at-a-glance">expanded classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Person</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="SoftwareAgent" class="entity">
+    <h3 id="prov-softwareagent-----------------back-to-expanded-classes">
+      <a href="#SoftwareAgent"><span class="dotted" title="http://www.w3.org/ns/prov#SoftwareAgent">prov:SoftwareAgent</span></a>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-classes-at-a-glance">expanded classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#SoftwareAgent</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+      </dd>
+    </dl>
+  </div>
+</div>
+<div id="prov-expanded-owl-properties-crossreference" class="prov-expanded owl-properties crossreference">
+  <div id="alternateOf" class="entity">
+    <h3 id="prov-alternateof-------op-----------------back-to-expanded-properties">
+      <a href="#alternateOf"><span class="dotted" title="http://www.w3.org/ns/prov#alternateOf">prov:alternateOf</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#alternateOf</p>
+    <div class="description">
+    <div class="comment"><p>Another prov:Entity that characterizes the same thing as this prov:Entity, potentially in a different manner.</p>
+    </div>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="generated" class="entity">
+    <h3 id="prov-generated-------op-----------------back-to-expanded-properties">
+      <a href="#generated"><span class="dotted" title="http://www.w3.org/ns/prov#generated">prov:generated</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#generated</p>
+    <div class="description">
+    <div class="comment"><p>This inverse of prov:wasGeneratedBy is 
+defined so that Activities being described can reference their generated
+ outputs directly without needing to 'stop' and start describing the 
+Entity. This helps 'Activity-centric' modeling as opposed to 
+'Entity-centric' modeling.</p>
+    </div>
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#involved" href="#involved" class="owlclass">prov:involved</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has inverse</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasGeneratedBy" href="#wasGeneratedBy" class="owlclass">prov:wasGeneratedBy</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="hadLocation" class="entity">
+    <h3 id="prov-hadlocation-------op-----------------back-to-expanded-properties">
+      <a href="#hadLocation"><span class="dotted" title="http://www.w3.org/ns/prov#hadLocation">prov:hadLocation</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#hadLocation</p>
+    <div class="description">
+    <div class="comment"><p>DM: Location is an optional attribute of Entity and Activity.</p>
+    </div>
+    <div class="comment"><p>This property is not functional because the many values could be at a variety of granularies (In this room, in that chair).</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Asymmetric
+, Irreflexive
+      </p>
+      <dl>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Location" href="#Location" class="owlclass">prov:Location</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="hadOriginalSource" class="entity">
+    <h3 id="prov-hadoriginalsource-------op-----------------back-to-expanded-properties">
+      <a href="#hadOriginalSource"><span class="dotted" title="http://www.w3.org/ns/prov#hadOriginalSource">prov:hadOriginalSource</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#hadOriginalSource</p>
+    <div class="description">
+    <div class="comment"><p>how is this different from wasDerivedFrom?</p>
+    </div>
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasDerivedFrom" href="#wasDerivedFrom" class="owlclass">prov:wasDerivedFrom</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="hasAnnotation" class="entity">
+    <h3 id="prov-hasannotation-------op-----------------back-to-expanded-properties">
+      <a href="#hasAnnotation"><span class="dotted" title="http://www.w3.org/ns/prov#hasAnnotation">prov:hasAnnotation</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#hasAnnotation</p>
+    <div class="description">
+      <dl>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Note" href="#Note" class="owlclass">prov:Note</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="specializationOf" class="entity">
+    <h3 id="prov-specializationof-------op-----------------back-to-expanded-properties">
+      <a href="#specializationOf"><span class="dotted" title="http://www.w3.org/ns/prov#specializationOf">prov:specializationOf</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#specializationOf</p>
+    <div class="description">
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="tracedTo" class="entity">
+    <h3 id="prov-tracedto-------op-----------------back-to-expanded-properties">
+      <a href="#tracedTo"><span class="dotted" title="http://www.w3.org/ns/prov#tracedTo">prov:tracedTo</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#tracedTo</p>
+    <div class="description">
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#involved" href="#involved" class="owlclass">prov:involved</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has sub-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasDerivedFrom" href="#wasDerivedFrom" class="owlclass">prov:wasDerivedFrom</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasAttributedTo" href="#wasAttributedTo" class="owlclass">prov:wasAttributedTo</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasEndedBy" class="entity">
+    <h3 id="prov-wasendedby-------op-----------------back-to-expanded-properties">
+      <a href="#wasEndedBy"><span class="dotted" title="http://www.w3.org/ns/prov#wasEndedBy">prov:wasEndedBy</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasEndedBy</p>
+    <div class="description">
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasAssociatedWith" href="#wasAssociatedWith" class="owlclass">prov:wasAssociatedWith</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasQuotedFrom" class="entity">
+    <h3 id="prov-wasquotedfrom-------op-----------------back-to-expanded-properties">
+      <a href="#wasQuotedFrom"><span class="dotted" title="http://www.w3.org/ns/prov#wasQuotedFrom">prov:wasQuotedFrom</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasQuotedFrom</p>
+    <div class="description">
+    <div class="comment"><p>Different from wasAttributedTo?</p>
+    </div>
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasDerivedFrom" href="#wasDerivedFrom" class="owlclass">prov:wasDerivedFrom</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasRevisionOf" class="entity">
+    <h3 id="prov-wasrevisionof-------op-----------------back-to-expanded-properties">
+      <a href="#wasRevisionOf"><span class="dotted" title="http://www.w3.org/ns/prov#wasRevisionOf">prov:wasRevisionOf</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasRevisionOf</p>
+    <div class="description">
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasDerivedFrom" href="#wasDerivedFrom" class="owlclass">prov:wasDerivedFrom</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="wasStartedBy" class="entity">
+    <h3 id="prov-wasstartedby-------op-----------------back-to-expanded-properties">
+      <a href="#wasStartedBy"><span class="dotted" title="http://www.w3.org/ns/prov#wasStartedBy">prov:wasStartedBy</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-expanded-owl-properties-at-a-glance">expanded properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#wasStartedBy</p>
+    <div class="description">
+      <dl>
+      <dt>has super-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasAssociatedWith" href="#wasAssociatedWith" class="owlclass">prov:wasAssociatedWith</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+</div>
+
+      </div>
+
+      <div class="section" id="qualified-terms">
+         <h3><span class="secno">4.3 </span>Qualified Terms</h3>
+         <div id="prov-qualified-owl-classes-crossreference" class="prov-qualified owl-classes crossreference">
+
+  <div id="ActivityInvolvement" class="entity">
+    <h3 id="prov-activityinvolvement-----------------back-to-qualified-classes">
+      <a href="#ActivityInvolvement"><span class="dotted" title="http://www.w3.org/ns/prov#ActivityInvolvement">prov:ActivityInvolvement</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#ActivityInvolvement</p>
+    <div class="comment"><p>An instance of prov:ActivityInvolvement is 
+used to provide additional descriptions of a binary relation from any 
+instance to an instance of prov:Activity.</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Involvement" href="#Involvement" class="owlclass">prov:Involvement</a>
+      </dd>
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#activity" href="#activity">prov:activity</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>has subclasses</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Generation" href="#Generation" class="owlclass">prov:Generation</a>
+        <a title="http://www.w3.org/ns/prov#Inform" href="#Inform" class="owlclass">prov:Inform</a>
+        <a title="http://www.w3.org/ns/prov#StartByActivity" href="#StartByActivity" class="owlclass">prov:StartByActivity</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="AgentInvolvement" class="entity">
+    <h3 id="prov-agentinvolvement-----------------back-to-qualified-classes">
+      <a href="#AgentInvolvement"><span class="dotted" title="http://www.w3.org/ns/prov#AgentInvolvement">prov:AgentInvolvement</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#AgentInvolvement</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Involvement" href="#Involvement" class="owlclass">prov:Involvement</a>
+      </dd>
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#agent" href="#agent">prov:agent</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>has subclasses</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Responsibility" href="#Responsibility" class="owlclass">prov:Responsibility</a>
+        <a title="http://www.w3.org/ns/prov#Start" href="#Start" class="owlclass">prov:Start</a>
+        <a title="http://www.w3.org/ns/prov#Association" href="#Association" class="owlclass">prov:Association</a>
+        <a title="http://www.w3.org/ns/prov#End" href="#End" class="owlclass">prov:End</a>
+        <a title="http://www.w3.org/ns/prov#Attribution" href="#Attribution" class="owlclass">prov:Attribution</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Association" class="entity">
+    <h3 id="prov-association-----------------back-to-qualified-classes">
+      <a href="#Association"><span class="dotted" title="http://www.w3.org/ns/prov#Association">prov:Association</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Association</p>
+    <div class="comment"><p>An instance of prov:Association provides 
+additional descriptions about the binary prov:wasAssociatedWith relation
+ from a prov:Activity to some prov:Agent that is responsible for it. For
+ example, :baking prov:wasAssociatedWith :baker; prov:qualified [ a 
+prov:Association; prov:entity :baker; :foo :bar ].</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#AgentInvolvement" href="#AgentInvolvement" class="owlclass">prov:AgentInvolvement</a>
+      </dd>
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#hadPlan" href="#hadPlan">prov:hadPlan</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedAssociation" href="#qualifiedAssociation">prov:qualifiedAssociation</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Attribution" class="entity">
+    <h3 id="prov-attribution-----------------back-to-qualified-classes">
+      <a href="#Attribution"><span class="dotted" title="http://www.w3.org/ns/prov#Attribution">prov:Attribution</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Attribution</p>
+    <div class="comment"><p>An instance of prov:Attribution provides 
+additional descriptions about the binary prov:wasAttributedTo relation 
+from a prov:Entity to some prov:Agent that is responsible for it. For 
+example, :cake prov:wasAttributedTo :baker; prov:qualified [ a 
+prov:Attribution; prov:entity :baker; :foo :bar ].</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#AgentInvolvement" href="#AgentInvolvement" class="owlclass">prov:AgentInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedAttribution" href="#qualifiedAttribution">prov:qualifiedAttribution</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Derivation" class="entity">
+    <h3 id="prov-derivation-----------------back-to-qualified-classes">
+      <a href="#Derivation"><span class="dotted" title="http://www.w3.org/ns/prov#Derivation">prov:Derivation</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Derivation</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#EntityInvolvement" href="#EntityInvolvement" class="owlclass">prov:EntityInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedDerivation" href="#qualifiedDerivation">prov:qualifiedDerivation</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="End" class="entity">
+    <h3 id="prov-end-----------------back-to-qualified-classes">
+      <a href="#End"><span class="dotted" title="http://www.w3.org/ns/prov#End">prov:End</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#End</p>
+    <div class="comment"><p>An Agent ends an Activity, optionally at a particular TimeInstant.</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#InstantaneousEvent" href="#InstantaneousEvent" class="owlclass">prov:InstantaneousEvent</a>
+        <a title="http://www.w3.org/ns/prov#AgentInvolvement" href="#AgentInvolvement" class="owlclass">prov:AgentInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedEnd" href="#qualifiedEnd">prov:qualifiedEnd</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="EntityInvolvement" class="entity">
+    <h3 id="prov-entityinvolvement-----------------back-to-qualified-classes">
+      <a href="#EntityInvolvement"><span class="dotted" title="http://www.w3.org/ns/prov#EntityInvolvement">prov:EntityInvolvement</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#EntityInvolvement</p>
+    <div class="comment"><p>An instance of EntityInvolvement is used to 
+provide additional descriptions of a binary relation from any instance 
+to an instance of Entity.</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Involvement" href="#Involvement" class="owlclass">prov:Involvement</a>
+      </dd>
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#entity" href="#entity">prov:entity</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>has subclasses</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Derivation" href="#Derivation" class="owlclass">prov:Derivation</a>
+        <a title="http://www.w3.org/ns/prov#Trace" href="#Trace" class="owlclass">prov:Trace</a>
+        <a title="http://www.w3.org/ns/prov#Usage" href="#Usage" class="owlclass">prov:Usage</a>
+        <a title="http://www.w3.org/ns/prov#Source" href="#Source" class="owlclass">prov:Source</a>
+        <a title="http://www.w3.org/ns/prov#Revision" href="#Revision" class="owlclass">prov:Revision</a>
+        <a title="http://www.w3.org/ns/prov#Quotation" href="#Quotation" class="owlclass">prov:Quotation</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Generation" class="entity">
+    <h3 id="prov-generation-----------------back-to-qualified-classes">
+      <a href="#Generation"><span class="dotted" title="http://www.w3.org/ns/prov#Generation">prov:Generation</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Generation</p>
+    <div class="comment"><p>An instance of prov:Generation provides 
+additional descriptions about the binary prov:wasGeneratedBy relation 
+from a generated prov:Entity to the prov:Activity that generated it. For
+ example, :cake prov:wasGeneratedBy :baking; prov:qualified [ a 
+prov:Generation; prov:entity :baking; :foo :bar ].</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#InstantaneousEvent" href="#InstantaneousEvent" class="owlclass">prov:InstantaneousEvent</a>
+        <a title="http://www.w3.org/ns/prov#ActivityInvolvement" href="#ActivityInvolvement" class="owlclass">prov:ActivityInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedGeneration" href="#qualifiedGeneration">prov:qualifiedGeneration</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Inform" class="entity">
+    <h3 id="prov-inform-----------------back-to-qualified-classes">
+      <a href="#Inform"><span class="dotted" title="http://www.w3.org/ns/prov#Inform">prov:Inform</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Inform</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#ActivityInvolvement" href="#ActivityInvolvement" class="owlclass">prov:ActivityInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedInform" href="#qualifiedInform">prov:qualifiedInform</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="InstantaneousEvent" class="entity">
+    <h3 id="prov-instantaneousevent-----------------back-to-qualified-classes">
+      <a href="#InstantaneousEvent"><span class="dotted" title="http://www.w3.org/ns/prov#InstantaneousEvent">prov:InstantaneousEvent</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#InstantaneousEvent</p>
+    <dl class="description">
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#atTime" href="#atTime">prov:atTime</a>
+        <sup class="type-dp" title="data property">dp</sup>
+      </dd>
+      <dt>has subclasses</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Usage" href="#Usage" class="owlclass">prov:Usage</a>
+        <a title="http://www.w3.org/ns/prov#End" href="#End" class="owlclass">prov:End</a>
+        <a title="http://www.w3.org/ns/prov#Generation" href="#Generation" class="owlclass">prov:Generation</a>
+        <a title="http://www.w3.org/ns/prov#Start" href="#Start" class="owlclass">prov:Start</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Involvement" class="entity">
+    <h3 id="prov-involvement-----------------back-to-qualified-classes">
+      <a href="#Involvement"><span class="dotted" title="http://www.w3.org/ns/prov#Involvement">prov:Involvement</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Involvement</p>
+    <div class="comment"><p>An instance of prov:Involvement is used to 
+provide additional descriptions of a prov:qualifiable binary 
+involvement. A description (via prov:Involvement) of the binary 
+involvement implies the assertion of the binary involvement.</p>
+    </div>
+    <div class="comment"><p>TODO: For simplicity, the hierarchy "stops" at the primary Elements (Activity, Entity, Agent)</p>
+    </div>
+    <dl class="description">
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#hadRole" href="#hadRole">prov:hadRole</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>has subclasses</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#AgentInvolvement" href="#AgentInvolvement" class="owlclass">prov:AgentInvolvement</a>
+        <a title="http://www.w3.org/ns/prov#EntityInvolvement" href="#EntityInvolvement" class="owlclass">prov:EntityInvolvement</a>
+        <a title="http://www.w3.org/ns/prov#ActivityInvolvement" href="#ActivityInvolvement" class="owlclass">prov:ActivityInvolvement</a>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Plan" class="entity">
+    <h3 id="prov-plan-----------------back-to-qualified-classes">
+      <a href="#Plan"><span class="dotted" title="http://www.w3.org/ns/prov#Plan">prov:Plan</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Plan</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#hadPlan" href="#hadPlan">prov:hadPlan</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Quotation" class="entity">
+    <h3 id="prov-quotation-----------------back-to-qualified-classes">
+      <a href="#Quotation"><span class="dotted" title="http://www.w3.org/ns/prov#Quotation">prov:Quotation</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Quotation</p>
+    <div class="comment"><p>TODO: Shouldn't Quotation be a subtype of Derivation (and same for the binary relations?) -Tim</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#EntityInvolvement" href="#EntityInvolvement" class="owlclass">prov:EntityInvolvement</a>
+      </dd>
+      <dt>in domain of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#hadQuotedAgent" href="#hadQuotedAgent">prov:hadQuotedAgent</a>
+        <sup class="type-op" title="object property">op</sup>
+        <a title="http://www.w3.org/ns/prov#hadQuoterAgent" href="#hadQuoterAgent">prov:hadQuoterAgent</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedQuotation" href="#qualifiedQuotation">prov:qualifiedQuotation</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Responsibility" class="entity">
+    <h3 id="prov-responsibility-----------------back-to-qualified-classes">
+      <a href="#Responsibility"><span class="dotted" title="http://www.w3.org/ns/prov#Responsibility">prov:Responsibility</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Responsibility</p>
+    <div class="comment"><p>http://www.w3.org/2011/prov/wiki/ProvRDF#Responsibility</p>
+    </div>
+    <div class="comment"><p>An instance of prov:Responsibility provides 
+additional descriptions about the binary prov:actedOnBehalfOf relation 
+from a performing prov:Agent to some prov:Agent for whom it was 
+performed. For example, :mixing prov:wasAssociatedWith :toddler . 
+:toddler prov:actedOnBehalfOf :mother; prov:qualified [ a 
+prov:Responsiblity; prov:entity :mother; :foo :bar ].</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#AgentInvolvement" href="#AgentInvolvement" class="owlclass">prov:AgentInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedResponsibility" href="#qualifiedResponsibility">prov:qualifiedResponsibility</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Revision" class="entity">
+    <h3 id="prov-revision-----------------back-to-qualified-classes">
+      <a href="#Revision"><span class="dotted" title="http://www.w3.org/ns/prov#Revision">prov:Revision</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Revision</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#EntityInvolvement" href="#EntityInvolvement" class="owlclass">prov:EntityInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedRevision" href="#qualifiedRevision">prov:qualifiedRevision</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Role" class="entity">
+    <h3 id="prov-role-----------------back-to-qualified-classes">
+      <a href="#Role"><span class="dotted" title="http://www.w3.org/ns/prov#Role">prov:Role</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Role</p>
+    <div class="comment"><p>http://www.w3.org/2011/prov/wiki/ProvRDF#Attribute</p>
+    </div>
+    <dl class="description">
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#hadRole" href="#hadRole">prov:hadRole</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Source" class="entity">
+    <h3 id="prov-source-----------------back-to-qualified-classes">
+      <a href="#Source"><span class="dotted" title="http://www.w3.org/ns/prov#Source">prov:Source</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Source</p>
+    <div class="comment"><p>http://www.w3.org/2011/prov/wiki/ProvRDF#Original_Source</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#EntityInvolvement" href="#EntityInvolvement" class="owlclass">prov:EntityInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedSource" href="#qualifiedSource">prov:qualifiedSource</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Start" class="entity">
+    <h3 id="prov-start-----------------back-to-qualified-classes">
+      <a href="#Start"><span class="dotted" title="http://www.w3.org/ns/prov#Start">prov:Start</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Start</p>
+    <div class="comment"><p>An Agent starts an Activity, optionally at a particular TimeInstant.</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#InstantaneousEvent" href="#InstantaneousEvent" class="owlclass">prov:InstantaneousEvent</a>
+        <a title="http://www.w3.org/ns/prov#AgentInvolvement" href="#AgentInvolvement" class="owlclass">prov:AgentInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedStart" href="#qualifiedStart">prov:qualifiedStart</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="StartByActivity" class="entity">
+    <h3 id="prov-startbyactivity-----------------back-to-qualified-classes">
+      <a href="#StartByActivity"><span class="dotted" title="http://www.w3.org/ns/prov#StartByActivity">prov:StartByActivity</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#StartByActivity</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#ActivityInvolvement" href="#ActivityInvolvement" class="owlclass">prov:ActivityInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedStartByActivity" href="#qualifiedStartByActivity">prov:qualifiedStartByActivity</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Trace" class="entity">
+    <h3 id="prov-trace-----------------back-to-qualified-classes">
+      <a href="#Trace"><span class="dotted" title="http://www.w3.org/ns/prov#Trace">prov:Trace</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Trace</p>
+    <div class="comment"><p>An instance of prov:Trace provides 
+additional descriptions about the binary prov:tracedTo relation from 
+some prov:Entity to some other prov:Element. For example, :stomach_ache 
+prov:tracedTo :spoon; prov:qualified [ a prov:Trace; prov:entity :spoon;
+ :foo :bar ].</p>
+    </div>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#EntityInvolvement" href="#EntityInvolvement" class="owlclass">prov:EntityInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedTrace" href="#qualifiedTrace">prov:qualifiedTrace</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+
+  <div id="Usage" class="entity">
+    <h3 id="prov-usage-----------------back-to-qualified-classes">
+      <a href="#Usage"><span class="dotted" title="http://www.w3.org/ns/prov#Usage">prov:Usage</span></a>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-classes-at-a-glance">qualified classes</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#Usage</p>
+    <dl class="description">
+      <dt>is subclass of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#InstantaneousEvent" href="#InstantaneousEvent" class="owlclass">prov:InstantaneousEvent</a>
+        <a title="http://www.w3.org/ns/prov#EntityInvolvement" href="#EntityInvolvement" class="owlclass">prov:EntityInvolvement</a>
+      </dd>
+      <dt>in range of</dt>
+      <dd>
+        <a title="http://www.w3.org/ns/prov#qualifiedUsage" href="#qualifiedUsage">prov:qualifiedUsage</a>
+        <sup class="type-op" title="object property">op</sup>
+      </dd>
+    </dl>
+  </div>
+</div>
+<div id="prov-qualified-owl-properties-crossreference" class="prov-qualified owl-properties crossreference">
+  <div id="activity" class="entity">
+    <h3 id="prov-activity-------op-----------------back-to-qualified-properties">
+      <a href="#activity"><span class="dotted" title="http://www.w3.org/ns/prov#activity">prov:activity</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#activity</p>
+    <div class="description">
+    <div class="comment"><p>This property behaves in spirit like rdf:object; it references the object of a prov:involved triple.</p>
+    </div>
+    <div class="comment"><p>The property used by a prov:AgentInvolvement to cite the Agent that was prov:involved with either an Activity or Entity.</p>
+    </div>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#ActivityInvolvement" href="#ActivityInvolvement" class="owlclass">prov:ActivityInvolvement</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="agent" class="entity">
+    <h3 id="prov-agent-------op-----------------back-to-qualified-properties">
+      <a href="#agent"><span class="dotted" title="http://www.w3.org/ns/prov#agent">prov:agent</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#agent</p>
+    <div class="description">
+    <div class="comment"><p>This property behaves in spirit like rdf:object; it references the object of a prov:involved triple.</p>
+    </div>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#AgentInvolvement" href="#AgentInvolvement" class="owlclass">prov:AgentInvolvement</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="atTime" class="entity">
+    <h3 id="prov-attime-------dp-----------------back-to-qualified-properties">
+      <a href="#atTime"><span class="dotted" title="http://www.w3.org/ns/prov#atTime">prov:atTime</span></a>
+      <sup class="type-dp" title="data property">dp</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#atTime</p>
+    <div class="description">
+      <p><strong>has characteristics</strong>
+  Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#InstantaneousEvent" href="#InstantaneousEvent" class="owlclass">prov:InstantaneousEvent</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            http://www.w3.org/2001/XMLSchema#dateTime
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="entity" class="entity">
+    <h3 id="prov-entity-------op-----------------back-to-qualified-properties">
+      <a href="#entity"><span class="dotted" title="http://www.w3.org/ns/prov#entity">prov:entity</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#entity</p>
+    <div class="description">
+    <div class="comment"><p>This property behaves in spirit like rdf:object; it references the object of a prov:involved triple.</p>
+    </div>
+    <div class="comment"><p>The property used by a prov:ActivityInvolvement to cite the Activity that was prov:involved with either an Activity or Entity.</p>
+    </div>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#EntityInvolvement" href="#EntityInvolvement" class="owlclass">prov:EntityInvolvement</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="hadPlan" class="entity">
+    <h3 id="prov-hadplan-------op-----------------back-to-qualified-properties">
+      <a href="#hadPlan"><span class="dotted" title="http://www.w3.org/ns/prov#hadPlan">prov:hadPlan</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#hadPlan</p>
+    <div class="description">
+    <div class="comment"><p>The Activity performed was described by the 
+given plan resource. Activity specifications, as referred to by plan 
+links, are out of scope of this specification</p>
+    </div>
+      <p><strong>has characteristics</strong>
+  Functional
+, Asymmetric
+, Irreflexive
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Association" href="#Association" class="owlclass">prov:Association</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Plan" href="#Plan" class="owlclass">prov:Plan</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="hadQuotedAgent" class="entity">
+    <h3 id="prov-hadquotedagent-------op-----------------back-to-qualified-properties">
+      <a href="#hadQuotedAgent"><span class="dotted" title="http://www.w3.org/ns/prov#hadQuotedAgent">prov:hadQuotedAgent</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#hadQuotedAgent</p>
+    <div class="description">
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Quotation" href="#Quotation" class="owlclass">prov:Quotation</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="hadQuoterAgent" class="entity">
+    <h3 id="prov-hadquoteragent-------op-----------------back-to-qualified-properties">
+      <a href="#hadQuoterAgent"><span class="dotted" title="http://www.w3.org/ns/prov#hadQuoterAgent">prov:hadQuoterAgent</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#hadQuoterAgent</p>
+    <div class="description">
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Quotation" href="#Quotation" class="owlclass">prov:Quotation</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="hadRole" class="entity">
+    <h3 id="prov-hadrole-------op-----------------back-to-qualified-properties">
+      <a href="#hadRole"><span class="dotted" title="http://www.w3.org/ns/prov#hadRole">prov:hadRole</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#hadRole</p>
+    <div class="description">
+    <div class="comment"><p>When an instance of prov:Involvement uses 
+the prov:hadRole property to cite a prov:Role, it is providing a role 
+for the instance referenced by the prov:entity or the prov:activity 
+properties. For example, :baking prov:used :spoon; prov:qualified [ a 
+prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Irreflexive
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Involvement" href="#Involvement" class="owlclass">prov:Involvement</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Role" href="#Role" class="owlclass">prov:Role</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="involved" class="entity">
+    <h3 id="prov-involved-------op-----------------back-to-qualified-properties">
+      <a href="#involved"><span class="dotted" title="http://www.w3.org/ns/prov#involved">prov:involved</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#involved</p>
+    <div class="description">
+    <div class="comment"><p>Subproperties of prov:involved may be be 
+qualified by creating instances of a corresponding prov:Involvement 
+class. For example, the binary relation :baking prov:used :spoon can be 
+qualified by asserting :baking prov:qualified [ a prov:Usage; 
+prov:entity :baking; :foo :bar ]
+
+prov:involved should not be used without also using the subproperty.
+
+Subproperties of prov:involved may also be asserted directly without 
+being qualified.</p>
+    </div>
+      <dl>
+      <dt>has sub-properties</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#tracedTo" href="#tracedTo" class="owlclass">prov:tracedTo</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasAssociatedWith" href="#wasAssociatedWith" class="owlclass">prov:wasAssociatedWith</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasGeneratedBy" href="#wasGeneratedBy" class="owlclass">prov:wasGeneratedBy</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#generated" href="#generated" class="owlclass">prov:generated</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#used" href="#used" class="owlclass">prov:used</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#actedOnBehalfOf" href="#actedOnBehalfOf" class="owlclass">prov:actedOnBehalfOf</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasStartedByActivity" href="#wasStartedByActivity" class="owlclass">prov:wasStartedByActivity</a>
+          </li>
+          <li>
+            <a title="http://www.w3.org/ns/prov#wasInformedBy" href="#wasInformedBy" class="owlclass">prov:wasInformedBy</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedAssociation" class="entity">
+    <h3 id="prov-qualifiedassociation-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedAssociation"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedAssociation">prov:qualifiedAssociation</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedAssociation</p>
+    <div class="description">
+    <div class="comment"><p>If this Activity prov:wasAssociatedWith 
+Agent :ag, then it can qualify the Association using 
+prov:qualifiedAssociation [ a prov:Association;  prov:agent :ag; :foo 
+:bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Association" href="#Association" class="owlclass">prov:Association</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedAttribution" class="entity">
+    <h3 id="prov-qualifiedattribution-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedAttribution"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedAttribution">prov:qualifiedAttribution</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedAttribution</p>
+    <div class="description">
+    <div class="comment"><p>If this Entity prov:wasAttributedTo Agent 
+:ag, then it can qualify how it was  using prov:qualifiedAttribution [ a
+ prov:Attribution;  prov:agent :ag; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Attribution" href="#Attribution" class="owlclass">prov:Attribution</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedDerivation" class="entity">
+    <h3 id="prov-qualifiedderivation-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedDerivation"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedDerivation">prov:qualifiedDerivation</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedDerivation</p>
+    <div class="description">
+    <div class="comment"><p>If this Entity prov:wasDerivedFrom Entity 
+:e, then it can qualify how it was derived using 
+prov:qualifiedDerivation [ a prov:Derivation;  prov:entity :e; :foo :bar
+ ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Derivation" href="#Derivation" class="owlclass">prov:Derivation</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedEnd" class="entity">
+    <h3 id="prov-qualifiedend-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedEnd"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedEnd">prov:qualifiedEnd</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedEnd</p>
+    <div class="description">
+    <div class="comment"><p>If this Activity prov:wasEndedBy Agent :ag, 
+then it can qualify how it was ended using prov:qualifiedEnd [ a 
+prov:End;  prov:agent :ag; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#End" href="#End" class="owlclass">prov:End</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedGeneration" class="entity">
+    <h3 id="prov-qualifiedgeneration-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedGeneration"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedGeneration">prov:qualifiedGeneration</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedGeneration</p>
+    <div class="description">
+    <div class="comment"><p>If this Activity prov:generated Entity :e, 
+then it can qualify how it did performed the Generation using 
+prov:qualifiedGeneration [ a prov:Generation;  prov:entity :e; :foo :bar
+ ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Generation" href="#Generation" class="owlclass">prov:Generation</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedInform" class="entity">
+    <h3 id="prov-qualifiedinform-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedInform"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedInform">prov:qualifiedInform</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedInform</p>
+    <div class="description">
+    <div class="comment"><p>If this Activity prov:wasInformedBy Activity
+ :a, then it can qualify how it was Inform[ed] using 
+prov:qualifiedInform [ a prov:Inform;  prov:activity :a; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Inform" href="#Inform" class="owlclass">prov:Inform</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedQuotation" class="entity">
+    <h3 id="prov-qualifiedquotation-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedQuotation"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedQuotation">prov:qualifiedQuotation</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedQuotation</p>
+    <div class="description">
+    <div class="comment"><p>If this Entity prov:wasQuotedFrom Entity :e,
+ then it can qualify how using prov:qualifiedQuotation [ a 
+prov:Quotation;  prov:entity :e; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Quotation" href="#Quotation" class="owlclass">prov:Quotation</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedResponsibility" class="entity">
+    <h3 id="prov-qualifiedresponsibility-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedResponsibility"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedResponsibility">prov:qualifiedResponsibility</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedResponsibility</p>
+    <div class="description">
+    <div class="comment"><p>If this Agent prov:actedOnBehalfOf Agent 
+:ag, then it can qualify how with prov:qualifiedResponsibility [ a 
+prov:Responsibility;  prov:agent :ag; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Agent" href="#Agent" class="owlclass">prov:Agent</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Responsibility" href="#Responsibility" class="owlclass">prov:Responsibility</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedRevision" class="entity">
+    <h3 id="prov-qualifiedrevision-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedRevision"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedRevision">prov:qualifiedRevision</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedRevision</p>
+    <div class="description">
+    <div class="comment"><p>If this Entity prov:wasRevisionOf Entity :e,
+ then it can qualify how it was  revised using prov:qualifiedRevision [ a
+ prov:Revision;  prov:entity :e; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Revision" href="#Revision" class="owlclass">prov:Revision</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedSource" class="entity">
+    <h3 id="prov-qualifiedsource-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedSource"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedSource">prov:qualifiedSource</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedSource</p>
+    <div class="description">
+    <div class="comment"><p>If this Entity prov:hadOriginalSource Entity
+ :e, then it can qualify how using prov:qualifiedSource [ a prov:Source;
+ prov:entity :e; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Source" href="#Source" class="owlclass">prov:Source</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedStart" class="entity">
+    <h3 id="prov-qualifiedstart-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedStart"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedStart">prov:qualifiedStart</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedStart</p>
+    <div class="description">
+    <div class="comment"><p>If this Activity prov:wasStartedBy Agent 
+:ag, then it can qualify how it was started using prov:qualifiedStart [ a
+ prov:Start;  prov:agent :ag; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Start" href="#Start" class="owlclass">prov:Start</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedStartByActivity" class="entity">
+    <h3 id="prov-qualifiedstartbyactivity-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedStartByActivity"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedStartByActivity">prov:qualifiedStartByActivity</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedStartByActivity</p>
+    <div class="description">
+    <div class="comment"><p>If this Activity prov:wasStartedByActivity 
+:a, then it can qualify how it was started using prov:qualifiedStart [ a
+ prov:Start;  prov:activity :a; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#StartByActivity" href="#StartByActivity" class="owlclass">prov:StartByActivity</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedTrace" class="entity">
+    <h3 id="prov-qualifiedtrace-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedTrace"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedTrace">prov:qualifiedTrace</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedTrace</p>
+    <div class="description">
+    <div class="comment"><p>If this prov:wasAttributedTo Entity :e, then
+ it can qualify how using prov:qualifiedTrace [ a prov:Trace;  
+prov:entity :e; :foo :bar ]. If this prov:wasAttributedTo Activity :a, 
+then it can qualify how using prov:qualifiedTrace [ a prov:Trace;  
+prov:activity :a; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Entity" href="#Entity" class="owlclass">prov:Entity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Trace" href="#Trace" class="owlclass">prov:Trace</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+  <div id="qualifiedUsage" class="entity">
+    <h3 id="prov-qualifiedusage-------op-----------------back-to-qualified-properties">
+      <a href="#qualifiedUsage"><span class="dotted" title="http://www.w3.org/ns/prov#qualifiedUsage">prov:qualifiedUsage</span></a>
+      <sup class="type-op" title="object property">op</sup>
+      <span class="backlink">
+         back to <a href="#prov-qualified-owl-properties-at-a-glance">qualified properties</a>
+      </span>
+    </h3>
+    <p><strong>IRI:</strong>http://www.w3.org/ns/prov#qualifiedUsage</p>
+    <div class="description">
+    <div class="comment"><p>If this Activity prov:used Entity :e, then 
+it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; 
+prov:entity :e; :foo :bar ].</p>
+    </div>
+      <p><strong>has characteristics</strong>
+ Inverse Functional
+      </p>
+      <dl>
+      <dt>has domain</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Activity" href="#Activity" class="owlclass">prov:Activity</a>
+          </li>
+        </ul>
+      </dd>
+      <dt>has range</dt>
+      <dd>
+        <ul>
+          <li>
+            <a title="http://www.w3.org/ns/prov#Usage" href="#Usage" class="owlclass">prov:Usage</a>
+          </li>
+        </ul>
+      </dd>
+      </dl>
+    </div>
+  </div>
+
+</div>
+
+      </div> <!-- Qualified Classes and Properties - crossreference -->
+
+<p>Note that there is no need to reference terms listed in Section 4 
+from within the table of contents, this makes the table of contents 
+difficult to browse. We think that the reader is likely to prefer to use
+ the links provided in “PROV-O in a glance”, as well as links used 
+throughout the document. 
+</p>
+
+	</div>
+
+
+
+
+
+
+
+
+    <div id="changes-since-first-public-working-draft" class="appendix section">
+          <!--OddPage--><h2><span class="secno">A. </span>Changes Since First Public Working Draft</h2>
+          <ul>
+          <li>2012-01-18: hadParticipant was replaced with wasAssociatedWith. Restyled domain/range diagrams.</li>
+          <li>2012-01-17: Recipe changed to Plan, linked to Association
+              (formerly Control)</li>
+          <li>2012-01-16: Added Agent subclasses Person, Organization
+          and SoftwareAgent
+          </li><li>2012-01-16: Added alternateOf and specializationOf
+	      </li><li>2012-01-18: Replaced wasControlledBy with wasAssociatedWith relation
+		  </li><li>2012-01-19: Added wasStartedBy and wasEndedBy relations
+          </li></ul>  
+    </div>
+
+<!--	<section class="appendix"> 
+	<h2>Provenance-specific Constraints</h2>
+	<p>This section lists the provenance-specific constraints introduced by the PROV-DM [[PROV-DM]], but are still under discussion.
+	<section id="provenance-constraint-on-activity">
+	  <h4>Provenance constraint on Activity</h4>
+	  <p>The PROV-DM describes a constraint on ordering of time (or event) associated with a <a href="#activity">Activity.</a> </p>
+  	  <div class='issue'>"From a process execution expression, one can infer that the start event precedes the end event of the represented activity." This is <a href="http://www.w3.org/2011/prov/track/issues/121">ISSUE-121</a></div>
+	</section>
+   	<section id="provenance-constraint-on-wasgeneratedby-generation-affects-attributes">
+	  <h4>Provenance constraint on wasGeneratedBy (generation-affects-attributes)</h4>
+	  <p>The PROV-DM describes a constraint on wasGeneratedBy that associates the values of attributes of an Entity with the Activity that generated the Entity.</p>
+      <div class='issue'>"Given a process execution act, entity e, role r, and optional time t, if the assertion wasGeneratedBy(e,pe,r) or wasGeneratedBy(e,pe,r,t) holds, the values of some of e's attributes are determined by the activity denoted by act and the entities used by act. Only some (possibly none) of the attributes values may be determined since, in an open world, not all used entities may have been asserted." This is <a href="http://www.w3.org/2011/prov/track/issues/122">ISSUE-122 </a> and <a href="http://www.w3.org/2011/prov/track/issues/105">ISSUE-105</a></div>
+	</section>
+	<section id="provenance-constraint-on-wasgeneratedby-generation-pe-ordering">
+	  <h4>Provenance constraint on wasGeneratedBy (generation-pe-ordering)</h4>
+	  <p>The second constraint on wasGeneratedBy associates an ordering of events associated with the generation of an Entity instance and the start, end time or event of theActivityinstance.</p>
+	  	<div class='note'> Without an explicit association of <a href="#time">TemporalEntity</a> with the <a href="#entity">Entity</a> instance and <a href="#activity">PE</a> instance, it is not possible to state or enforce this constraint in the PROV ontology schema and the corresponding RDF dataset.
+		  </div>
+	</section>
+	<section id="provenance-constraint-on-wasgeneratedby-generation-unicity">
+	  <h4>Provenance constraint on wasGeneratedBy (generation-unicity)</h4>
+	  <p>The PROV-DM describes a constraint on wasGeneratedBy that asserts that given an account, only oneActivityinstance can be associated to an Entity instance by the property wasGeneratedBy.</p>
+	<div class='issue'>"Given an entity expression denoted by e, two process execution expressions denoted by act1 and act2, and two qualifiers q1 and q2, if the expressions wasGeneratedBy(e,pe1,q1) and wasGeneratedBy(e,pe2,q2) exist in the scope of a given account, then act1=act2 and q1=q2." This is <a href="http://www.w3.org/2011/prov/track/issues/105">ISSUE-105</a></div>
+	</section>
+	<section id ="provenance-constraint-on-used-use-attributes">
+	  <h4>Provenance constraint on Used (use-attributes)</h4>
+	  <p>A constraint is defined for the Used relation in PROV-DM, that makes it necessary for an attribute-value to be true for an Entity instance linked to a Activity instance by relation Used.    
+	  </p>
+	  <div class='issue'>"Given a process execution expression identified by act, an entity expression identified by e, a qualifier q, and optional time t, if assertion used(pe,e,q) or used(pe,e,q,t) holds, then the existence of an attribute-value pair in the entity expression identified by e is a pre-condition for the termination of the activity represented by the process execution expression identified by act." This is <a href="http://www.w3.org/2011/prov/track/issues/124">ISSUE-124</a></div>
+	</section>	
+    <section id ="provenance-constraint-on-used-pe-ordering">
+	  <h4>Provenance constraint on Used (use-pe-ordering)</h4>
+	  <p>The PROV-DM describes a constraint for Used relation, which makes it necessary for an Entity instance e (linked to a Activity instance act by Used relation) to be "used" before act terminates and also the "generation" of e precedes "use" of e.
+	  </p>
+	  <div class='issue'>"Given a process execution expression identified by act, an entity expression identified by e, a qualifier q, and optional time t, if assertion used(pe,e,q) or used(pe,e,q,t) holds, then the use of the thing represented by entity expression identified by e precedes the end time contained in the process execution expression identified by act and follows its beginning. Furthermore, the generation of the thing denoted by entity expression identified by e always precedes its use." This is <a href="http://www.w3.org/2011/prov/track/issues/124">ISSUE-124</a></div>
+	</section>
+	<section id ="provenance-constraint-on-derivation-attributes">
+	  <h4>Provenance constraint on wasDerivedFrom (derivation-attributes)</h4>
+	  <p>The PROV-DM describes a constraint for asserting wasDerivedFrom property between two Entity instances if some attributes of an Entity instance are partially or fully determined by attributes values of the other Entity instance.
+	  </p>
+	<div class='issue'>"Given a process execution expression denoted by act, entity expressions denoted by e1 and e2, qualifiers q1 and q2, the assertion wasDerivedFrom(e2,e1,pe,q2,q1) or wasDerivedFrom(e2,e1) holds if and only if the values of some attributes of the entity expression identified by e2 are partly or fully determined by the values of some attributes of the entity expression identified by e1." This is <a href="http://www.w3.org/2011/prov/track/issues/125">ISSUE-125</a></div>
+	</section>
+	<section id ="provenance-constraint-on-derivation-use-generation-ordering">
+	  <h4>Provenance constraint on wasDerivedFrom (derivation-use-generation-ordering)</h4>
+	  <p>The PROV-DM describes a constraint that if wasDerivedFrom property is asserted between two Entity instances e1 and e2, that is wasDerivedFrom (e2, e1), then the for time instant t1 associated with aActivityinstance that "used" is less than the time instant t2 associated with "generation" of e2.
+	  </p>
+	  <div class='note'> Without an explicit association of <a href="#time">TemporalEntity</a> with the <a href="#entity">Entity</a> instance and <a href="#activity">PE</a> instance, it is not possible to state or enforce this constraint in the PROV ontology schema and the corresponding RDF dataset.
+	  </div>
+	</section>
+	<section id ="provenance-constraint-on-derivation-events">
+	  <h4>Provenance constraint on wasDerivedFrom (derivation-events)</h4>
+	  <p>The PROV-DM describes a constraint that if wasDerivedFrom property is asserted between two Entity instances e1 and e2, that is wasDerivedFrom (e2, e1, act), then wasGeneratedBy(e2, act) and used(pe, e1) can also be asserted.
+	  </p>
+	  <div class='note'> Since the above constraint defined in PROV-DM does not define how act is linked to the derivation of e2 from e1, this constraint can be supported in the "opposite" direction in PROV-O. In other words, given e2 was generated at time instant t2 by act and act used e1 at time instant t1 and t1 is less than t2, then we can assert that wasDerivedFrom(e2, e1).
+	  </div>
+	</section>
+	<section id ="provenance-constraint-on-derivation-process-execution">
+	  <h4>Provenance constraint on wasDerivedFrom (derivation-events)</h4>
+	  <p>The PROV-DM describes a constraint that if wasDerivedFrom property is asserted between two Entity instances e1 and e2, then there exists someActivityinstance such that wasGeneratedBy(e2, act) and used(pe, e1) can also be asserted.
+	  </p>
+	  <div class='note'> This constraint is a re-statement of the generic Semantic Web "open-world assumption". Hence, it is not mapped to PROV ontology.
+	  </div>
+	</section>
+	<section id ="provenance-constraint-on-derivation-use">
+	  <h4>Provenance constraint on wasDerivedFrom (derivation-use)</h4>
+	  <p>The PROV-DM describes a constraint that if wasDerivedFrom property is asserted between two Entity instances e1 and e2, and wasGeneratedBy(e2, act) is also asserted then Used(pe, e1) can also be asserted.
+	  </p>
+	  <div class='note'> This will be asserted as a rule.
+	  </div>
+	</section>
+	<section id ="provenance-constraint-on-derivation-generation-generation-ordering">
+	  <h4>Provenance constraint on wasEventuallyDerivedFrom (derivation-generation-generation-ordering)</h4>
+	  <p>The PROV-DM describes a constraint that if wasEventuallyDerivedFrom property is asserted between two Entity instances e1 and e2, then generation of e1 occurred before generation of e2.
+	  </p>
+	  <div class='note'> Without an explicit association of <a href="#time">TemporalEntity</a> (or event) with the <a href="#entity">Entity</a> instance and <a href="#activity">PE</a> instance, it is not possible to state or enforce this constraint in the PROV ontology schema and the corresponding RDF dataset.
+	  </div>
+	</section>
+	<section id ="provenance-constraint-on-derivation-linked-independent">
+	  <h4>Provenance constraint on wasEventuallyDerivedFrom (derivation-linked-independent)</h4>
+	  <p>The PROV-DM describes a constraint that if wasDerivedFrom property is asserted  between two Entity instances e1 and e2, then wasEventuallyDerivedFrom property can also be asserted between the two Entity instances.
+	  </p>
+	  <div class='note'> Is this an equivalence constraint or can we assert a subPropertyOf property between wasDerivedFrom and wasEventuallyFrom?
+	  </div>
+	</section>
+	<section id ="provenance-constraint-on-complementof-necessary-cond">
+	  <h4>Provenance constraint on wasComplementOf (wasComplementOf-necessary-cond)</h4>
+	  <p>The PROV-DM describes a constraint that wasComplementOf property holds between two entities over a temporal intersection of the two entities.
+	  </p>
+	  <div class='note'> Without an explicit association of time value, this constraint cannot be stated or enforced in PROV ontology.
+	  </div>
+	</section>
+	<section id ="provenance-constraint-on-hasParticipant-participant">
+	  <h4>Provenance constraint on wasAssociatedWith (participant)</h4>
+	  <p>The PROV-DM describes a constraint that wasAssociatedWith property holds between an instance of Entity and instance of Activity if the two instances are linked by "used" of "wasControlledBy" or "wasComplementOf".
+	  </p>
+	  <div class='issue'> "Given two identifiers act and e, respectively identifying a process execution expression and an entity expression, the expression wasAssociatedWith(pe,e) holds if and only if:
+		*used(pe,e) holds, or
+	    *wasControlledBy(pe,e) holds, or
+	    *wasComplementOf(e1,e) holds for some entity expression identified by e1, and wasAssociatedWith(pe,e1) holds some process execution expression identified by act." This is <a href="http://www.w3.org/2011/prov/track/issues/127">ISSUE-127</a>
+	  </div>
+	</section>
+	</section>
+-->
+    <div id="acknowledgements" class="appendix section">
+      <!--OddPage--><h2><span class="secno">B. </span>Acknowledgements</h2>
+      <p>
+        The Provenance Working Group Members.
+      </p>
+    </div>
+
+  
+
+<div class="appendix section" id="references"><!--OddPage--><h2><span class="secno">C. </span>References</h2><div class="section" id="normative-references"><h3><span class="secno">C.1 </span>Normative references</h3><dl class="bibliography"><dt id="bib-OWL2-DIRECT-SEMANTICS">[OWL2-DIRECT-SEMANTICS]</dt><dd>Boris Motik; Peter F. Patel-Schneider; Bernardo Cuenca Grau. <a href="http://www.w3.org/TR/2009/REC-owl2-direct-semantics-20091027/"><cite>OWL 2 Web Ontology Language:Direct Semantics.</cite></a> 27 October 2009. W3C Recommendation. URL: <a href="http://www.w3.org/TR/2009/REC-owl2-direct-semantics-20091027/">http://www.w3.org/TR/2009/REC-owl2-direct-semantics-20091027/</a> 
+</dd><dt id="bib-OWL2-RDF-BASED-SEMANTICS">[OWL2-RDF-BASED-SEMANTICS]</dt><dd>Michael Schneider. <a href="http://www.w3.org/TR/2009/REC-owl2-rdf-based-semantics-20091027/"><cite>OWL 2 Web Ontology Language:RDF-Based Semantics.</cite></a> 27 October 2009. W3C Recommendation. URL: <a href="http://www.w3.org/TR/2009/REC-owl2-rdf-based-semantics-20091027/">http://www.w3.org/TR/2009/REC-owl2-rdf-based-semantics-20091027/</a> 
+</dd><dt id="bib-RFC2119">[RFC2119]</dt><dd>S. Bradner. <a href="http://www.ietf.org/rfc/rfc2119.txt"><cite>Key words for use in RFCs to Indicate Requirement Levels.</cite></a> March 1997. Internet RFC 2119.  URL: <a href="http://www.ietf.org/rfc/rfc2119.txt">http://www.ietf.org/rfc/rfc2119.txt</a> 
+</dd><dt id="bib-XMLSCHEMA-2">[XMLSCHEMA-2]</dt><dd>Paul V. Biron; Ashok Malhotra. <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/"><cite>XML Schema Part 2: Datatypes Second Edition.</cite></a> 28 October 2004. W3C Recommendation. URL: <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/">http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/</a> 
+</dd></dl></div><div class="section" id="informative-references"><h3><span class="secno">C.2 </span>Informative references</h3><dl class="bibliography"><dt id="bib-PROV-DM">[PROV-DM]</dt><dd>Luc Moreau, Paolo Missier<a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/"><cite>The PROV Data Model and Abstract Syntax Notation</cite></a>. 18 October 2011. W3C Working Draft. (Work in progress.) URL: <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/">http://www.w3.org/TR/2011/WD-prov-dm-20111018/</a>
+</dd><dt id="bib-PROV-PAQ">[PROV-PAQ]</dt><dd>Graham Klyne and Paul Groth <a href="http://dvcs.w3.org/hg/prov/raw-file/tip/paq/prov-aq.html"><cite>Provenance Access and Query</cite></a>. 2011, Work in progress. URL: <a href="http://dvcs.w3.org/hg/prov/raw-file/tip/paq/prov-aq.html">http://dvcs.w3.org/hg/prov/tip/paq/prov-aq.html</a>
+</dd></dl></div></div></body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/prov-o_files/Primer.html	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,45 @@
+/* define a class "noprint" for sections which don't get printed */  
+.noprint { display: none; }
+
+/* our syntax menu for switching */
+div.syntaxmenu {
+  border: 1px dotted black;
+  padding:0.5em;
+  margin: 1em; 
+}
+
+@media print {
+   div.syntaxmenu { display:none; }
+}
+
+/* use tab-like headers for syntax examples */
+div.exampleheader {
+  font-size: 90%;
+  float: left;
+  background: #F9F9F9;
+  color: #2F6FAB;
+  border: 1px dashed #2F6FAB;
+  border-bottom: 0px;
+  padding-top: 2px;
+}
+
+div.exampleheader span.exampleheader {
+  background: #F9F9F9;
+  padding-top: 0px;
+  padding-right: 10px;
+  padding-left: 10px;
+  padding-bottom: 3px;
+  padding-top: 0px;
+}
+
+/* Also copy MediaWiki style here, so it will not look different when exported */
+div.fssyntax pre, div.rdfxml pre, div.owlxml pre, div.turtle pre, div.manchester pre  {
+  background-color: #F9F9F9;
+  border: 1px dashed #2F6FAB;
+  color: black;
+  line-height: 1.1em;
+  padding: 1em;
+  clear: both;
+  margin-left: 0em;
+}
+/* (further styles directly embedded in header template) */
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/prov-o_files/W3C-ED.css	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,88 @@
+
+/* Style for a Working Group Editors' Draft */
+
+/*
+   Copyright 1997-2003 W3C (MIT, ERCIM, Keio). All Rights Reserved.
+   The following software licensing rules apply:
+   http://www.w3.org/Consortium/Legal/copyright-software */
+
+/* $Id: base.css,v 1.25 2006/04/18 08:42:53 bbos Exp $ */
+
+body {
+  padding: 2em 1em 2em 70px;
+  margin: 0;
+  font-family: sans-serif;
+  color: black;
+  background: white;
+  background-position: top left;
+  background-attachment: fixed;
+  background-repeat: no-repeat;
+}
+:link { color: #00C; background: transparent }
+:visited { color: #609; background: transparent }
+a:active { color: #C00; background: transparent }
+
+a:link img, a:visited img { border-style: none } /* no border on img links */
+
+a img { color: white; }        /* trick to hide the border in Netscape 4 */
+@media all {                   /* hide the next rule from Netscape 4 */
+  a img { color: inherit; }    /* undo the color change above */
+}
+
+th, td { /* ns 4 */
+  font-family: sans-serif;
+}
+
+h1, h2, h3, h4, h5, h6 { text-align: left }
+/* background should be transparent, but WebTV has a bug */
+h1, h2, h3 { color: #005A9C; background: white }
+h1 { font: 170% sans-serif }
+h2 { font: 140% sans-serif }
+h3 { font: 120% sans-serif }
+h4 { font: bold 100% sans-serif }
+h5 { font: italic 100% sans-serif }
+h6 { font: small-caps 100% sans-serif }
+
+.hide { display: none }
+
+div.head { margin-bottom: 1em }
+div.head h1 { margin-top: 2em; clear: both }
+div.head table { margin-left: 2em; margin-top: 2em }
+
+p.copyright { font-size: small }
+p.copyright small { font-size: small }
+
+@media screen {  /* hide from IE3 */
+a[href]:hover { background: #ffa }
+}
+
+pre { margin-left: 2em }
+/*
+p {
+  margin-top: 0.6em;
+  margin-bottom: 0.6em;
+}
+*/
+dt, dd { margin-top: 0; margin-bottom: 0 } /* opera 3.50 */
+dt { font-weight: bold }
+
+pre, code { font-family: monospace } /* navigator 4 requires this */
+
+ul.toc, ol.toc {
+  list-style: disc;		/* Mac NS has problem with 'none' */
+  list-style: none;
+}
+
+@media aural {  
+  h1, h2, h3 { stress: 20; richness: 90 }
+  .hide { speak: none }
+  p.copyright { volume: x-soft; speech-rate: x-fast }
+  dt { pause-before: 20% }
+  pre { speak-punctuation: code } 
+}
+
+
+
+body {
+  background-image: url(http://www.w3.org/StyleSheets/TR/logo-ED);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/prov-o_files/extra.html	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,119 @@
+body {
+    text-align: justify;    
+}
+
+h1 {
+    line-height: 110%;    
+}
+
+.hlist {
+    border: 1px solid navy;
+    padding:5px;
+    background-color: #F4FFFF; 
+}
+
+.hlist li {
+    display: inline;
+    display: inline-table;
+    list-style-type: none;
+    padding-right: 20px;
+    
+}
+
+.entity {
+    border: 1px solid navy;
+    margin:5px 0px 5px 0px;
+    padding: 5px;    
+}
+
+.type-c {
+    cursor:help;
+    color:orange;
+}
+
+.type-op {
+    cursor:help;
+    color:navy;    
+}
+
+.type-dp {
+    cursor:help;
+    color:green;    
+}
+
+.type-ap {
+    cursor:help;
+    color:maroon;    
+}
+
+.type-ni {
+    cursor:help;
+    color:brown;    
+}
+
+.logic {
+    color:purple;
+    font-weight:bold;    
+}
+
+h3 {
+    margin-top: 3px;
+    padding-bottom: 5px;
+    border-bottom: 1px solid navy;
+}
+
+h2 {
+    margin-top:40px;    
+}
+
+.dotted {
+    border-bottom: 1px dotted gray;
+}
+
+dt {
+    margin-top:5px;
+}
+
+.description {
+    border-top: 1px dashed gray;
+    border-bottom: 1px dashed gray;
+    background-color: rgb(242, 243, 244);
+    margin-top:5px;
+    padding-bottom:5px;
+}
+
+.description dl {
+    background-color: rgb(242, 243, 244);
+}
+
+.description ul {
+    padding-left: 12px;
+    margin-top: 0px;
+}
+
+.backlink {
+    font-size:10pt;
+    text-align:right;
+    float:right;
+    color:black;
+    padding: 2px;
+    border: 1px dotted navy;
+    background-color: #F4FFFF;
+}
+
+.imageblock {
+	text-align: center;
+}
+
+.imageblock img {
+	border:1px solid gray;
+}
+
+.endnote {
+	margin-top: 40px;
+	border-top: 1px solid gray;
+	padding-top: 10px;
+	text-align: center;
+	color:gray;
+	font-size:50%;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/prov-o_files/owl.html	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,238 @@
+.RFC2119 {
+  text-transform: lowercase;
+  font-style: italic;
+}
+.nonterminal {
+    font-weight: bold;
+    font-family: sans-serif;
+    font-size: 95%;
+}
+#abstract br {
+   /* doesn't work right SOMETIMES 
+   margin-bottom: 1em;   */
+}
+.name {
+    font-family: monospace;
+}
+.buttonpanel {
+    margin-top: 1ex;
+    margin-bottom: 1ex;
+    padding-left: 1ex;
+    padding-right: 1ex;
+    padding-top: 1ex;
+    padding-bottom: 0.6ex;
+    border: 1px dotted black; 
+}
+.grammar {
+    margin-top: 1ex;
+    margin-bottom: 1ex;
+    padding-left: 1ex;
+    padding-right: 1ex;
+    padding-top: 1ex;
+    padding-bottom: 0.6ex;
+    border: 1px dashed #2f6fab;
+    font-family: monospace;
+}
+.image {
+    text-align: center;
+}
+.centered {
+    text-align: center;
+    padding-top: 4ex;
+    padding-bottom: 4ex;
+}
+.centered table {
+    margin: 0 auto;
+    text-align: left;
+}
+.caption {
+    font-weight: bold;
+}
+.indent {
+    margin-left: 20px;
+}
+.atrisknote {
+    padding: 5px;
+    margin-top: 10px;
+    margin-bottom: 10px;
+    border: solid 2px blue;
+    background-color: #FFA;
+}
+.atrisknotehead {
+    font-style: italic;	
+}
+
+/* Stying the examples. */
+
+.anexample:before {
+    content: "Example:";
+    font-family: sans-serif;
+    font-size: 1.6ex;
+    font-weight: bold;
+}
+.anexample {
+    margin-top: 1ex;
+    margin-bottom: 1ex;
+    padding-left: 1ex;
+    padding-right: 1ex;
+    padding-top: 1ex;
+    padding-bottom: 0.6ex;
+    border: 1px dashed #2f6fab;
+    background-color: #f9f9f9;
+}
+.anexample table {
+    background-color: #f9f9f9;
+}
+
+/* Styling the parts in the functional-style syntax. */
+
+div.fss {
+    margin-top: 10px; 
+    margin-bottom: 10px; 
+    margin-left: 20px; 
+    margin-right: 20px; 
+    font-family: monospace;
+}
+table.fss {
+    margin: 0px 0px 0px 0px; 
+    padding: 0px 0px 0px 0px; 
+    width: 100%;
+}
+table.fss caption.fss {
+    font-size: 1.5ex;
+    font-weight: bold;
+    text-align: left;
+    padding-left: 10px;
+}
+table.fss td:first-child {
+    font-family: monospace;
+    padding-left: 20px;
+    padding-right: 20px;
+    width: 60%;
+}
+
+/* Styling the parts in the RDF syntax. */
+
+div.rdf{
+    margin-top: 10px; 
+    margin-bottom: 10px; 
+    margin-left: 20px; 
+    margin-right: 20px; 
+    font-family: monospace;
+}
+table.rdf {
+    margin: 0px 0px 0px 0px; 
+    padding: 0px 0px 0px 0px; 
+    width: 100%;
+}
+table.rdf caption.rdf {
+    font-size: 1.5ex;
+    font-weight: bold;
+    text-align: left;
+    padding-left: 10px;
+}
+table.rdf td:first-child {
+    font-family: monospace;
+    padding-left: 20px;
+    padding-right: 20px;
+    width: 60%;
+}
+
+/* Styling the XML syntax. */
+
+div.xmlsyn {
+    margin-top: 10px; 
+    margin-bottom: 10px; 
+    margin-left: 20px; 
+    margin-right: 20px; 
+    font-family: monospace;
+}
+div.axioms {
+    margin-top: 10px; 
+    margin-bottom: 10px; 
+    margin-left: 20px; 
+    margin-right: 20px; 
+}
+
+/* Other styles. */
+
+table.complexity td {
+    text-align: center;
+}
+table.allname td {
+   font-family: monospace;
+}
+table.canonicalparsing {
+    margin-left: 20px;
+    border-style: none;
+}
+table.canonicalparsing td {
+    vertical-align: top;
+    padding: 2px 2px 2px 2px;
+}
+table.canonicalparsing td.two {
+    padding-left: 30px;
+}
+
+/* The following are classes for templates used in the editing process. */
+
+.review {
+    padding: 5px;
+    border: solid 1px black;
+    margin-left: 10%;
+    margin-top: 10px;
+    margin-bottom: 10px;
+    background-color: #FFA;
+    font-size: smaller;
+}
+.reviewauthor {
+    font-size: smaller;
+    font-style: italic;
+}
+.ednote {
+    padding: 5px;
+    border: solid 1px black;
+    margin-top: 10px;
+    margin-bottom: 10px;
+}
+.ednotehead {
+   font-weight: bold;
+}
+
+/* override mediawiki's beautiful DL styling... */
+dl {
+    background: white;
+    width: 100%;
+    border: none;
+    margin-top: 0;
+    margin-bottom: 0;
+    padding-top: 0;
+    padding-bottom: 0;
+}
+
+div {
+    margin-top: 0;
+    margin-bottom: 0;
+}
+#fulltitle {
+  font-size: 140%; 
+  font-weight: bold;
+}
+
+.xml {
+ color: red
+}
+
+.rdbms{
+color: red
+}
+
+/* just copying from wiki, so it stays through TR. Currently
+  affects Primer, at least */
+pre {
+  background-color:#F9F9F9;
+  border:1px dashed #2F6FAB;
+  color:black;
+  line-height:1.1em;
+  padding:1em;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/prov-o_files/rec.html	Thu Mar 29 18:47:22 2012 +0100
@@ -0,0 +1,85 @@
+/* Style for a "Recommendation" */
+
+/*
+   Copyright 1997-2003 W3C (MIT, ERCIM, Keio). All Rights Reserved.
+   The following software licensing rules apply:
+   http://www.w3.org/Consortium/Legal/copyright-software */
+
+/* $Id: base.css,v 1.25 2006/04/18 08:42:53 bbos Exp $ */
+
+body {
+  padding: 2em 1em 2em 70px;
+  margin: 0;
+  font-family: sans-serif;
+  color: black;
+  background: white;
+  background-position: top left;
+  background-attachment: fixed;
+  background-repeat: no-repeat;
+}
+:link { color: #00C; background: transparent }
+:visited { color: #609; background: transparent }
+a:active { color: #C00; background: transparent }
+
+a:link img, a:visited img { border-style: none } /* no border on img links */
+
+a img { color: white; }        /* trick to hide the border in Netscape 4 */
+@media all {                   /* hide the next rule from Netscape 4 */
+  a img { color: inherit; }    /* undo the color change above */
+}
+
+th, td { /* ns 4 */
+  font-family: sans-serif;
+}
+
+h1, h2, h3, h4, h5, h6 { text-align: left }
+/* background should be transparent, but WebTV has a bug */
+h1, h2, h3 { color: #005A9C; background: white }
+h1 { font: 170% sans-serif }
+h2 { font: 140% sans-serif }
+h3 { font: 120% sans-serif }
+h4 { font: bold 100% sans-serif }
+h5 { font: italic 100% sans-serif }
+h6 { font: small-caps 100% sans-serif }
+
+.hide { display: none }
+
+div.head { margin-bottom: 1em }
+div.head h1 { margin-top: 2em; clear: both }
+div.head table { margin-left: 2em; margin-top: 2em }
+
+p.copyright { font-size: small }
+p.copyright small { font-size: small }
+
+@media screen {  /* hide from IE3 */
+a[href]:hover { background: #ffa }
+}
+
+pre { margin-left: 2em }
+/*
+p {
+  margin-top: 0.6em;
+  margin-bottom: 0.6em;
+}
+*/
+dt, dd { margin-top: 0; margin-bottom: 0 } /* opera 3.50 */
+dt { font-weight: bold }
+
+pre, code { font-family: monospace } /* navigator 4 requires this */
+
+ul.toc, ol.toc {
+  list-style: disc;		/* Mac NS has problem with 'none' */
+  list-style: none;
+}
+
+@media aural {  
+  h1, h2, h3 { stress: 20; richness: 90 }
+  .hide { speak: none }
+  p.copyright { volume: x-soft; speech-rate: x-fast }
+  dt { pause-before: 20% }
+  pre { speak-punctuation: code } 
+}
+
+body {
+  background-image: url(http://lode.sourceforge.net/img/LODELogo.png);
+}
Binary file ontology/prov-o_files/w3c_home.png has changed
Binary file primer/OverviewDiagram.png has changed
--- a/primer/Primer.html	Thu Mar 29 18:46:52 2012 +0100
+++ b/primer/Primer.html	Thu Mar 29 18:47:22 2012 +0100
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <html><head> 
-  <title>Prov Model Primer</title>
+  <title>PROV Model Primer</title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <!--
     === NOTA BENE ===
@@ -152,7 +152,7 @@
     This primer document provides an accessible introduction to the PROV Data Model
     ([[PROV-DM]]) standard for representing provenance on the Web, and its representation
     in the PROV Ontology ([[PROV-O]]).  Provenance describes
-    the origins of things, so PROV-DM data consists of assertions about the past.
+    the origins of things, so PROV-DM data consists of descriptions about the past.
    </p>
 
    <p>
@@ -165,7 +165,7 @@
 
    <p>
     The <i>provenance</i> of digital objects represents their origins.  The PROV-DM is a 
-    proposed standard to represent provenance records, which contain <i>assertions</i> about the entities 
+    proposed standard to represent provenance records, which contain <i>descriptions</i> of the entities 
     and activities involved in producing and delivering or otherwise influencing a 
     given object.  By knowing the provenance of an object, we can make determinations 
     about how to use it.  Provenance records can be used for many purposes, such as 
@@ -210,9 +210,9 @@
    </p>
    <p>
     The next section gives an introductory overview of PROV-DM using simple examples.
-    The following section shows how the formal ontology PROV-O can be used to represent the PROV-DM assertions
+    The following section shows how the formal ontology PROV-O can be used to represent the PROV-DM descriptions
     as RDF triples.  The document also contains frequently asked questions, and an appendix giving example 
-    snippets of the PROV-DM Abstract Syntax Notation (ASN).
+    snippets of the Provenance Notation (PROV-N).
     For a detailed description of [[PROV-DM]] and [[PROV-O]], please refer to the respective documents.
    </p>
   </section>
@@ -232,12 +232,11 @@
 
    <p>
     The following ER diagram provides a high level overview of the <strong>structure of PROV-DM records</strong>.
-    The diagram is the same that appears in the [[PROV-DM]],
-    but note that this primer document only describes some of the terms shown in the diagram.
+    The diagram is the same that appears in the [[PROV-DM]].
    </p>
 
    <div style="text-align: center;">
-    <img src="overview.png" alt="PROV-DM overview"/>
+    <img src="OverviewDiagram.png" alt="PROV-DM overview"/>
    </div>
 
    <section>
@@ -304,7 +303,7 @@
      as a list of corrections. 
     </p>
     <p>
-     Assertions can be made in a provenance record to state that 
+     Descriptions can be made in a provenance record to state that
      particular activities used or generated particular entities.
     </p>
    </section>
@@ -326,9 +325,9 @@
      organization, and we can express such chains of responsibility in the provenance.
     </p>
     <p>
-     We can also assert that an entity is <i>attributed</i> to an agent to express
+     We can also describe that an entity is <i>attributed</i> to an agent to express
      the agent's responsibility for that entity, possibly along with other agents.
-     This assertion can be understood as a shorthand
+     This description can be understood as a shorthand
      for saying that the agent was responsible for the activity which generated
      the entity.
     </p>
@@ -372,7 +371,7 @@
      (also called versions and other comparable terms) over time. Between revisions,
      one or more attributes of the entity may change. 
      The result of each revision is a new entity, 
-     and PROV-DM allows one to relate those entities by making an assertion that 
+     and PROV-DM allows one to relate those entities by making an description that 
      one is a revision of another.
     </p>
    </section>
@@ -381,7 +380,7 @@
     <h3>Plans</h3>
     <p>
      Activities may follow pre-defined procedures, such as recipes, tutorials, instructions, or workflows.
-     PROV-DM refers to these, in general, as <i>plans</i>, and allows the assertion that a plan was followed, by agents,
+     PROV-DM refers to these, in general, as <i>plans</i>, and allows the description that a plan was followed, by agents,
      in executing an activity.
     </p>
    </section>
@@ -390,9 +389,9 @@
     <h3>Time</h3>
     <p>
      Time is critical information in many provenance records.
-     PROV-DM allows the timing of significant events to be asserted, including
+     PROV-DM allows the timing of significant events to be described, including
      when an entity was generated or used, or when an activity started
-     and finished. For example, the model can be used to assert facts such as when a new
+     and finished. For example, the model can be used to describe facts such as when a new
      version of a document was created (generation time), when a document was
      edited (start and end of the editing activity).
     </p>
@@ -403,13 +402,13 @@
     <p>
      Entities are defined in a flexible way in PROV-DM, allowing for different
      perspectives to be taken as appropriate for the application. For example,
-     some PROV-DM assertions may refer to a document D, other assertions may be
+     some PROV-DM descriptions may refer to a document D, other descriptions may be
      more specifically about the second version of D, while another set may
      concern the copy of D stored on a particular hard disk. All three are
      different entities referred to with different identifiers, but are also perspectives
      or abstractions on the same thing. Because of
      this, the entities are said to be <i>alternates</i> of each other, and
-     asserted as such. Being aware that two entities are alternates allows those
+     described as such. Being aware that two entities are alternates allows those
      consuming the PROV-DM data to know that understanding the provenance of one entity is salient
      to understanding the provenance of the other.
     </p>
@@ -420,7 +419,7 @@
      of document D and the copy of D on the hard disk are specializations of document D in
      general. That is, D's period of existence will contain the periods in which the
      second version existed, and where a copy of D was on the hard disk. It is helpful
-     to assert specialization in provenance data, because it indicates that everything
+     to describe specialization in provenance data, because it indicates that everything
      which was true of one entity (the more specialized) was at some point true of
      the other (the more general).
     </p>
@@ -437,14 +436,14 @@
    </p>
    <p>
     We include samples of how the formal ontology PROV-O 
-    can be used to represent the PROV-DM assertions as RDF triples.
+    can be used to represent the PROV-DM descriptions as RDF triples.
     These are shown using the Turtle notation. In 
     the latter depictions, the namespace prefix <b>prov</b> denotes 
     terms from the Prov ontology, while <b>ex</b> denotes terms specific to the example.
    </p>
 
-   <p>We also provide a representation of the examples in the Abstract
-    Syntax Model ASM used in the conceptual model document. The full ASM data 
+   <p>We also provide a representation of the examples in the Provenance
+    Notation, PROV-N, used in the data model document. The full PROV-N data 
     for the examples in this section is
     included in the appendix.</p>
 
@@ -453,27 +452,29 @@
 
     <p>
      An online newspaper publishes an article with a chart about crime statistics making using of data (GovData) provided through a government portal. 
-     The article includes a chart based on the data, with data values aggregated by
+     The article includes a chart based on the data, with data values composed (aggregated) by
      geographical regions.
     </p>
     <p>
      A blogger, Betty, looking at the article, spots what she thinks to be an error in the chart.
      Betty retrieves the provenance record of the article, how it was created.
     </p>
-    <p>Betty would find the following assertions about entities in the provenance record:</p>
+    <p>Betty would find the following descriptions about entities in the provenance record:</p>
     <pre class="turtle example">
-     ex:newspaper1  a prov:Entity .
-     ex:article1    a prov:Entity .
-     ex:regionList1 a prov:Entity .
-     ex:aggregate1  a prov:Entity .
-     ex:chart1      a prov:Entity .
-    </pre>
+     ex:article1     a prov:Entity ; dcterms:title "Crime rises in cities" .
+     ex:dataset1     a prov:Entity .
+     ex:regionList1  a prov:Entity .
+     ex:composition1 a prov:Entity .
+     ex:chart1       a prov:Entity .
+   </pre>
     <p>
-     These statements, in order, assert that there is a newspaper (<code>ex:newspaper1</code>) and an article (<code>ex:article1</code>),
-     that the original data set is an entity (<code>ex:dataSet1</code>),
-     there is a list of regions
-     (<code>ex:regionList1</code>) that is an entity, that the data aggregated by region is an entity (<code>ex:aggregate1</code>), 
-     and that the chart (<code>ex:chart1</code>) is an entity.
+     These statements, in order, describe that there was an article (<code>ex:article1</code>),
+     an original data set (<code>ex:dataSet1</code>),
+     a list of regions (<code>ex:regionList1</code>), 
+     data aggregated by region (<code>ex:composition1</code>), 
+     and a chart (<code>ex:chart1</code>), and that each is an entity.
+     Any entity may have attributes not specific to provenance, such as the title
+     of the article, expressed using <code>dcterms:title</code> above.
     </p>
 
    </section>
@@ -482,7 +483,7 @@
     <h3>Activities</h3>
 
     <p>
-     Further, the provenance record asserts that there was
+     Further, the provenance record describes that there was
      an activity (<code>ex:compiled</code>) denoting the compilation of the
      chart from the data set.
     </p>
@@ -491,11 +492,11 @@
     </pre>
     <p>
      The provenance record also includes reference to the more specific steps involved in this compilation,
-     which are first aggregating the data by region and then generating the chart graphic.
+     which are first composing the data by region and then generating the chart graphic.
     </p>
     <pre class="turtle example">
-     ex:aggregated  a prov:Activity .
-     ex:illustrated a prov:Activity .
+     ex:compose    a prov:Activity .
+     ex:illustrate a prov:Activity .
     </pre>
    </section>
 
@@ -503,27 +504,27 @@
     <h3>Use and Generation</h3>
 
     <p>
-     Finally, the provenance record asserts the key relations among the above
+     Finally, the provenance record describes the key relations among the above
      entities and activities, i.e. the use of an entity by an activity,
      or the generation of an entity by an activity.
     </p>
     <p>
-     For example, the assertions below state that the aggregation activity
-     (<code>ex:aggregated</code>) used the original data set, that it used the list of
-     regions, and that the aggregated data was generated by this activity.
+     For example, the descriptions below state that the composition activity
+     (<code>ex:compose</code>) used the original data set, that it used the list of
+     regions, and that the composed data was generated by this activity.
     </p>
     <pre class="turtle example">
-     ex:aggregated prov:used           ex:dataSet1 ;
-                    prov:used           ex:regionList1 .
-     ex:aggregate1 prov:wasGeneratedBy ex:aggregated .
+     ex:compose      prov:used           ex:dataSet1 ;
+                     prov:used           ex:regionList1 .
+     ex:composition1 prov:wasGeneratedBy ex:compose .
     </pre>
     <p>
      Similarly, the chart graphic creation activity (<code>ex:illustrated</code>)
-     used the aggregated data, and the chart was generated by this activity.
+     used the composed data, and the chart was generated by this activity.
     </p>
     <pre class="turtle example">
-     ex:illustrated prov:used           ex:aggregate1 .
-     ex:chart1      prov:wasGeneratedBy ex:illustrated .
+     ex:illustrate prov:used           ex:composition1 .
+     ex:chart1     prov:wasGeneratedBy ex:illustrate .
     </pre>
    </section>
 
@@ -532,12 +533,12 @@
 
     <p>
      Digging deeper, Betty wants to know who compiled the chart.
-     Betty sees that Derek was involved in both the aggregation and
+     Betty sees that Derek was involved in both the composition and
      chart creation activities:
     </p>
     <pre class="turtle example">
-     ex:aggregated  prov:wasAssociatedWith ex:derek .
-     ex:illustrated prov:wasAssociatedWith ex:derek .
+     ex:compose    prov:wasAssociatedWith ex:derek .
+     ex:illustrate prov:wasAssociatedWith ex:derek .
     </pre>
     <p>
      The record for Derek provides the
@@ -547,7 +548,7 @@
     </p>
     <pre class="turtle example">
      ex:derek a prov:Agent ;
-              a foaf:Person ;
+              a prov:Person ;
               foaf:givenName "Derek"^^xsd:string ;
               foaf:mbox      &lt;mailto:dererk@example.org&gt; .
     </pre>
@@ -560,7 +561,7 @@
      ex:derek prov:actedOnBehalfOf ex:chartgen .
      ex:chartgen a prov:Agent ;
                  a prov:Organization ;
-                 foaf:name "Chart Generators" .
+                 foaf:name "Chart Generators Inc" .
     </pre>
    </section>
 
@@ -570,64 +571,77 @@
     <p>
      For Betty to understand where the error lies, she needs to have more detailed 
      information on how entities have been used in, participated in, and generated 
-     by activities.  Betty has determined that <code>ex:aggregated</code> used 
+     by activities.  Betty has determined that <code>ex:compose</code> used 
      entities <code>ex:regionList1</code> and <code>ex:dataSet1</code>, but she does not 
      know what function these entities played in the processing.  Betty 
      also knows that <code>ex:derek</code> controlled the activities, but she does 
      not know if Derek was the analyst responsible for determining how the data 
-     should be aggregated.
+     should be composed.
     </p>
     <p>
-     The above information is described as roles in the provenance records. The aggregation
-     activity involved entities in four roles: the data to be aggregated (<code>ex:dataToAggregate</code>),
+     The above information is described as roles in the provenance records. The composition
+     activity involved entities in four roles: the data to be composed (<code>ex:dataToCompose</code>),
      the regions to aggregate by (<code>ex:regionsToAggregateBy</code>), the
-     resulting aggregated data (<code>ex:aggregatedData</code>), and the
-     analyst doing the aggregation (<code>ex:analyst</code>).
+     resulting composed data (<code>ex:composedData</code>), and the
+     analyst doing the composition (<code>ex:analyst</code>).
     </p>
     <pre class="turtle example">
-     ex:dataToAggregate      a prov:Role .
+     ex:dataToCompose        a prov:Role .
      ex:regionsToAggregateBy a prov:Role .
-     ex:aggregatedData       a prov:Role .
+     ex:composedData         a prov:Role .
      ex:analyst              a prov:Role .
     </pre>
     <p>
-     In addition to the simple facts that the aggregation activity used, generated or
+     In addition to the simple facts that the composition activity used, generated or
      was controlled by entities/agents as described in the sections above, the
      provenance record contains more details of <i>how</i> these entities and agents
-     were involved, i.e. the roles they played. For example, the assertions below state
-     that the aggregation activity (<code>ex:aggregated</code>) included the usage
-     of the government data set (<code>ex:dataSet1</code>) in the role of the data
-     to be aggregated (<code>ex:dataToAggregate</code>).
+     were involved, i.e. the roles they played. For example, the descriptions below state
+     Examples in the sections above show descriptions of the simple facts that the
+     composition activity used, generated and was controlled by entities/agents.
+     For example, the usage of the data set by the compose activity is expressed
+     as follows.
     </p>
     <pre class="turtle example">
-     ex:aggregated prov:involved [ a prov:Usage ;
-            prov:entity  ex:dataSet1 ;
-            prov:hadRole ex:dataToAggregate ] .
+     ex:compose prov:used ex:dataSet1 .
+    </pre>
+    <p>     
+     The
+     provenance record can contain more details of <i>how</i> these entities and agents
+     were involved in the activity. One example is the roles the entities played.
+     For example, the descriptions below state
+     that the composition activity (<code>ex:compose</code>) included the usage
+     of the government data set (<code>ex:dataSet1</code>) in the role of the data
+     to be composed (<code>ex:dataToCompose</code>).
+    </p>
+    <pre class="turtle example">
+     ex:compose prov:qualifiedUsage [ a prov:Usage ;
+                   prov:entity  ex:dataSet1 ;
+                   prov:hadRole ex:dataToCompose ] .
     </pre>
     <p>
      This can then be distinguished from the same activity's usage of the list of
      regions because the roles played are different.
     </p>
     <pre class="turtle example">
-     ex:aggregated prov:involved [ a prov:Usage ;
-            prov:entity  ex:regionList1 ;
-            prov:hadRole ex:regionsToAggregateBy ] .
+     ex:compose prov:qualifiedUsage [ a prov:Usage ;
+                   prov:entity  ex:regionList1 ;
+                   prov:hadRole ex:regionsToAggregateBy ] .
     </pre>
     <p>
-     Similarly, the provenance includes assertions that the same activity was
+     Similarly, the provenance includes descriptions that the same activity was
      controlled in a particular way (<code>ex:analyst</code>) by Derek, and that
-     the entity <code>ex:aggregate1</code> took the role of the aggregated
+     the entity <code>ex:composition1</code> took the role of the composed
      data in what the activity generated.
     </p>
     <pre class="turtle example">
-     ex:aggregated
-        prov:involved [ a prov:Association ;
+     ex:compose
+        prov:qualifiedAssociation [ a prov:Association ;
             prov:entity  ex:derek ;
             prov:hadRole ex:analyst
         ] ;
-        prov:involved [ a prov:Generation ;
-            prov:entity  ex:aggregate1 ;
-            prov:hadRole ex:aggregatedData
+        prov:qualifiedGeneration [ a prov:Generation ;
+            prov:entity  ex:composition1 ;
+            prov:hadRole ex:composedData
         ] .
     </pre>
    </section>
@@ -652,7 +666,7 @@
      Derek notices that there is a new dataset available and creates a new chart based on the revised data, 
      using the same compilation activity as before. Betty checks the article again at a
      later point, and wants to know if it is based on the old or new GovData.
-     She sees a new assertion stating that the new chart is derived from the new dataset.
+     She sees a new description stating that the new chart is derived from the new dataset.
     </p>
     <pre class="example turtle">
      ex:chart2 prov:wasDerivedFrom ex:dataSet2 .
@@ -661,10 +675,10 @@
   </section>
 
   <section class="appendix">
-   <h2>Abstract Syntax Notation for Examples</h2>
+   <h2>PROV-N Examples</h2>
    <p>
-    Below we give translations of the working example snippets into the PROV-DM
-    abstract syntax notation (ASN).
+    Below we give translations of the working example snippets into the Provenance
+    Notation (PROV-N).
    </p>
    <section>
     <h3>Entities</h3>
@@ -712,7 +726,7 @@
    <section>
     <h3>Agents</h3>
     <pre class="example asn">
-     entity(ex:derek, [ type="foaf:Person", foaf:givenName = "Derek", 
+     entity(ex:derek, [ type="prov:Person", foaf:givenName = "Derek", 
             foaf:mbox= "&lt;mailto:derek@example.org&gt;"]).
      agent(ex:derek).
 
@@ -732,8 +746,8 @@
      used(ex:aggregated, ex:regionList1, [ prov:role = "regionsToAggregteBy"]).
     </pre>
     <p>
-     In the first assertion above, note that this adds a "role" attribute to the first 'used' assertion of Ex. 3.
-     Similarly in the second assertion, we have added a "role" attribute to the second  'used' assertion of Ex. 3.
+     In the first description above, note that this adds a "role" attribute to the first 'used' description of Ex. 3.
+     Similarly in the second description, we have added a "role" attribute to the second  'used' description of Ex. 3.
     </p>
    </section>
 
@@ -774,6 +788,8 @@
     <li>Added intuition section on time.</li>
     <li>Added intuition section on alternates and specialization.</li>
     <li>Included description of attribution in intuition section on agents and responsibility.</li>
+    <li>Changed from ASN to PROV-N</li>
+    <li>Updated examples to latest PROV-O terms</li>
    </ul>
   </section>