rdf_context 0.5.6 → 0.5.7
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +10 -0
- data/{History.txt → History.rdoc} +8 -1
- data/Rakefile +9 -2
- data/VERSION +1 -1
- data/bin/rdf_context +5 -2
- data/lib/rdf_context/aggregate_graph.rb +31 -2
- data/lib/rdf_context/array_hacks.rb +3 -3
- data/lib/rdf_context/bnode.rb +3 -3
- data/lib/rdf_context/conjunctive_graph.rb +8 -8
- data/lib/rdf_context/duration.rb +17 -4
- data/lib/rdf_context/graph.rb +84 -46
- data/lib/rdf_context/literal.rb +36 -3
- data/lib/rdf_context/n3parser.rb +4 -4
- data/lib/rdf_context/namespace.rb +21 -8
- data/lib/rdf_context/parser.rb +31 -16
- data/lib/rdf_context/quoted_graph.rb +5 -4
- data/lib/rdf_context/rdfaparser.rb +176 -91
- data/lib/rdf_context/rdfxmlparser.rb +50 -13
- data/lib/rdf_context/serializer/abstract_serializer.rb +14 -4
- data/lib/rdf_context/serializer/nt_serializer.rb +5 -0
- data/lib/rdf_context/serializer/recursive_serializer.rb +4 -0
- data/lib/rdf_context/serializer/turtle_serializer.rb +28 -27
- data/lib/rdf_context/serializer/xml_serializer.rb +11 -9
- data/lib/rdf_context/store/abstract_sql_store.rb +47 -4
- data/lib/rdf_context/store/abstract_store.rb +73 -1
- data/lib/rdf_context/store/list_store.rb +25 -6
- data/lib/rdf_context/store/memory_store.rb +33 -1
- data/lib/rdf_context/store/sqlite3_store.rb +7 -4
- data/lib/rdf_context/term_utils.rb +6 -0
- data/lib/rdf_context/triple.rb +17 -6
- data/lib/rdf_context/uriref.rb +19 -3
- data/spec/html4-manifest.yml +176 -176
- data/spec/html5-manifest.yml +176 -176
- data/spec/rdfa_helper.rb +8 -2
- data/spec/rdfa_parser_spec.rb +1 -1
- data/spec/rdfcore/Manifest.yml +1561 -2626
- data/spec/swap_test/n3parser.yml +134 -279
- data/spec/swap_test/regression.yml +140 -305
- data/spec/turtle/manifest-bad.yml +155 -310
- data/spec/turtle/manifest.yml +155 -310
- data/spec/xhtml-manifest.yml +139 -587
- data/spec/xhtml11-manifest.yml +4405 -0
- metadata +21 -7
- data/.gitmodules +0 -3
@@ -8,33 +8,52 @@ module RdfContext
|
|
8
8
|
@triples = []
|
9
9
|
end
|
10
10
|
|
11
|
+
# Create a new ListStore Store, should be subclassed
|
12
|
+
# @param [Resource] identifier
|
13
|
+
# @param[Hash] configuration Specific to type of storage
|
14
|
+
# @return [ListStore]
|
11
15
|
def inspect
|
12
16
|
"ListStore[id=#{identifier}, size=#{@triples.length}]"
|
13
17
|
end
|
14
18
|
|
15
|
-
#
|
16
|
-
#
|
17
|
-
#
|
18
|
-
#
|
19
|
+
# Add triple to store
|
20
|
+
# @param [Triple] triple
|
21
|
+
# @param [Graph] context (nil) ignored
|
22
|
+
# @param [Boolean] quoted (false) ignored
|
23
|
+
# @return [Triple]
|
19
24
|
def add(triple, context, quoted = false)
|
20
25
|
@triples << triple unless contains?(triple, context)
|
21
26
|
end
|
22
27
|
|
23
|
-
# Remove a triple from the
|
28
|
+
# Remove a triple from the store
|
24
29
|
#
|
25
30
|
# If the triple does not provide a context attribute, removes the triple
|
26
31
|
# from all contexts.
|
32
|
+
# @param [Triple] triple
|
33
|
+
# @param [Graph] context (nil) ignored
|
34
|
+
# @param [Boolean] quoted (false) ignored
|
35
|
+
# @return [void]
|
27
36
|
def remove(triple, context, quoted = false)
|
28
37
|
@triples.delete(triple)
|
29
38
|
end
|
30
39
|
|
31
|
-
# Check to see if this
|
40
|
+
# Check to see if this store contains the specified triple
|
41
|
+
# @param [Triple] triple
|
42
|
+
# @param [Graph] context (nil) ignored
|
43
|
+
# @return [Boolean]
|
32
44
|
def contains?(triple, context = nil)
|
33
45
|
@triples.any? {|t| t == triple}
|
34
46
|
end
|
35
47
|
|
36
48
|
# Triples from graph, optionally matching subject, predicate, or object.
|
37
49
|
# Delegated from Graph. See Graph#triples for details.
|
50
|
+
#
|
51
|
+
# @param [Triple] triple
|
52
|
+
# @param [Graph] context (nil)
|
53
|
+
# @return [Array<Triplle>]
|
54
|
+
# @yield [triple, context]
|
55
|
+
# @yieldparam [Triple] triple
|
56
|
+
# @yieldparam [Graph] context
|
38
57
|
def triples(triple, context = nil)
|
39
58
|
subject = triple.subject
|
40
59
|
predicate = triple.predicate
|
@@ -18,14 +18,22 @@ module RdfContext
|
|
18
18
|
#
|
19
19
|
# Based on Python RdfLib IOMemory
|
20
20
|
class MemoryStore < AbstractStore
|
21
|
+
# Default context for this store
|
22
|
+
# @return [Graph]
|
21
23
|
attr_accessor :default_context
|
22
24
|
|
23
25
|
# Supports contexts
|
26
|
+
# @return [true]
|
24
27
|
def context_aware?; true; end
|
25
28
|
|
26
29
|
# Supports formulae
|
30
|
+
# @return [true]
|
27
31
|
def formula_aware?; true; end
|
28
32
|
|
33
|
+
# Create a new MemoryStore Store, should be subclassed
|
34
|
+
# @param [Resource] identifier
|
35
|
+
# @param[Hash] configuration ignored
|
36
|
+
# @return [MemoryStore]
|
29
37
|
def initialize(identifier = nil, configuration = {})
|
30
38
|
super
|
31
39
|
# indexed by [context][subject][predicate][object] = 1
|
@@ -64,6 +72,11 @@ module RdfContext
|
|
64
72
|
|
65
73
|
# Add a triple to the store
|
66
74
|
# Add to default context, if context is nil
|
75
|
+
#
|
76
|
+
# @param [Triple] triple
|
77
|
+
# @param [Graph] context (nil)
|
78
|
+
# @param [Boolean] quoted (false) A quoted triple, for Formulae
|
79
|
+
# @return [Triple]
|
67
80
|
def add(triple, context = nil, quoted = false)
|
68
81
|
context ||= Graph.new(:store => self, :identifier => @identifier)
|
69
82
|
return unless triples(triple, context).empty?
|
@@ -88,8 +101,11 @@ module RdfContext
|
|
88
101
|
end
|
89
102
|
|
90
103
|
# Remove a triple from the context and store
|
104
|
+
# If subject, predicate and object are nil and context is not nil, the context is removed
|
91
105
|
#
|
92
|
-
#
|
106
|
+
# @param [Triple] triple
|
107
|
+
# @param [Graph] context (nil)
|
108
|
+
# @return [void]
|
93
109
|
def remove(triple, context = nil)
|
94
110
|
context = nil if context == @identifier || (context.respond_to?(:identifier) && context.identifier == @identifier)
|
95
111
|
|
@@ -112,6 +128,13 @@ module RdfContext
|
|
112
128
|
end
|
113
129
|
|
114
130
|
# A generator over all matching triples
|
131
|
+
# @param [Triple] triple
|
132
|
+
# @param [Graph] context (nil)
|
133
|
+
# @return [Array<Triplle>]
|
134
|
+
# @raise [StoreException] Not Implemented
|
135
|
+
# @yield [triple, context]
|
136
|
+
# @yieldparam [Triple] triple
|
137
|
+
# @yieldparam [Graph] context
|
115
138
|
def triples(triple, context = nil, &block) # :yields: triple, context
|
116
139
|
context = nil if context == @identifier || (context.respond_to?(:identifier) && context.identifier == @identifier)
|
117
140
|
|
@@ -237,6 +260,10 @@ module RdfContext
|
|
237
260
|
# Note, if triple contains a Literal object, need to wild-card
|
238
261
|
# and check each result individually due to variation in literal
|
239
262
|
# comparisons
|
263
|
+
#
|
264
|
+
# @param [Triple] triple
|
265
|
+
# @param [Graph] context (nil)
|
266
|
+
# @return [Boolean]
|
240
267
|
def contains?(triple, context = nil)
|
241
268
|
#puts "contains? #{triple}"
|
242
269
|
object = triple.object
|
@@ -251,6 +278,9 @@ module RdfContext
|
|
251
278
|
end
|
252
279
|
end
|
253
280
|
|
281
|
+
# Number of Triples in the graph
|
282
|
+
# @param [Graph] context (nil)
|
283
|
+
# @return [Integer]
|
254
284
|
def size(context = nil)
|
255
285
|
context = nil if (context.respond_to?(:identifier) ? context.identifier : context) == @identifier
|
256
286
|
|
@@ -258,6 +288,8 @@ module RdfContext
|
|
258
288
|
end
|
259
289
|
|
260
290
|
# Contexts containing the triple (no matching), or total number of contexts in store
|
291
|
+
# @param [Triple] triple (nil) Containing the triple/pattern if not nil
|
292
|
+
# @return [Array<Graph>]
|
261
293
|
def contexts(triple = nil)
|
262
294
|
if triple
|
263
295
|
si, pi, oi = triple_to_int(triple)
|
@@ -1,3 +1,4 @@
|
|
1
|
+
gem 'sqlite3-ruby', "=1.2.5" # XXX version 1.3.0 & 1.3.1 break executes with multiple arguments: http://groups.google.com/group/sqlite3-ruby/browse_frm/thread/93494ce04bc07fd5
|
1
2
|
require 'sqlite3'
|
2
3
|
require File.join(File.dirname(__FILE__), 'abstract_sql_store')
|
3
4
|
|
@@ -12,6 +13,10 @@ module RdfContext
|
|
12
13
|
#
|
13
14
|
# Based on Python RdfLib SQLite
|
14
15
|
class SQLite3Store < AbstractSQLStore
|
16
|
+
# Create a new SQLite3Store Store, should be subclassed
|
17
|
+
# @param [URIRef] identifier
|
18
|
+
# @param[Hash] configuration Specific to type of storage
|
19
|
+
# @return [SQLite3Store]
|
15
20
|
def initialize(identifier = nil, configuration = {})
|
16
21
|
super(identifier, configuration)
|
17
22
|
|
@@ -27,8 +32,7 @@ module RdfContext
|
|
27
32
|
# exists, but there is insufficient permissions to open the
|
28
33
|
# store.
|
29
34
|
#
|
30
|
-
# @
|
31
|
-
# <em>_path_:: Path to database file defaults to a file in the current directory based on a hash of the store identifier
|
35
|
+
# @option options[String] :path Path to database file defaults to a file in the current directory based on a hash of the store identifier
|
32
36
|
def open(options)
|
33
37
|
unless File.exist?(options[:path])
|
34
38
|
@db = SQLite3::Database.new(options[:path])
|
@@ -82,8 +86,7 @@ module RdfContext
|
|
82
86
|
|
83
87
|
# Destroy databse
|
84
88
|
#
|
85
|
-
# @
|
86
|
-
# <em>_path_:: Path to database file
|
89
|
+
# @option options[String] :path Path to database file defaults to a file in the current directory based on a hash of the store identifier
|
87
90
|
def destroy(options = {})
|
88
91
|
File.delete(@path)
|
89
92
|
end
|
@@ -222,6 +222,8 @@ module RdfContext
|
|
222
222
|
|
223
223
|
# Takes an instance of a Graph (Graph, QuotedGraph, ConjunctiveGraph)
|
224
224
|
# and returns the Graphs identifier and 'type' ('U' for Graphs, 'F' for QuotedGraphs ).
|
225
|
+
# @param [Graph] graph
|
226
|
+
# @return [Resource, String]
|
225
227
|
def normalizeGraph(graph)
|
226
228
|
t = case graph
|
227
229
|
when QuotedGraph then "F"
|
@@ -232,6 +234,10 @@ module RdfContext
|
|
232
234
|
[identifier, t]
|
233
235
|
end
|
234
236
|
|
237
|
+
# Return the type of a term (Resource)
|
238
|
+
# @param [URIRef, BNode, Literal, QuotedGraph, Variable, Graph, nil] term
|
239
|
+
# @return [String]
|
240
|
+
# @raise RdfException
|
235
241
|
def term2Letter(term)
|
236
242
|
case term
|
237
243
|
when URIRef then "U"
|
data/lib/rdf_context/triple.rb
CHANGED
@@ -15,14 +15,14 @@ module RdfContext
|
|
15
15
|
# Any or all of _subject_, _predicate_ or _object_ may be nil, to create a triple pattern.
|
16
16
|
# A pattern may not be added to a graph.
|
17
17
|
#
|
18
|
-
#
|
18
|
+
# @example
|
19
19
|
# Triple.new(BNode.new, URIRef.new("http://xmlns.com/foaf/0.1/knows"), BNode.new) # => results in the creation of a new triple and returns it
|
20
20
|
#
|
21
|
-
# @param [URIRef, BNode] subject
|
22
|
-
# @param [URIRef] predicate
|
23
|
-
# @param [URIRef, BNode, Literal
|
24
|
-
# @return [Triple]
|
25
|
-
# @raise [Error]
|
21
|
+
# @param [URIRef, BNode] subject the subject of the triple
|
22
|
+
# @param [URIRef] predicate the predicate of the triple
|
23
|
+
# @param [URIRef, BNode, Literal] object the object of the triple
|
24
|
+
# @return [Triple] Generated triple
|
25
|
+
# @raise [Error] Checks parameter types and raises if they are incorrect.
|
26
26
|
#
|
27
27
|
# @author Tom Morris
|
28
28
|
def initialize (subject, predicate, object)
|
@@ -32,17 +32,21 @@ module RdfContext
|
|
32
32
|
@pattern = subject.nil? || predicate.nil? || object.nil?
|
33
33
|
end
|
34
34
|
|
35
|
+
# Is this a pattern triple (subject, predicate or object nil)
|
36
|
+
# @return [Boolean]
|
35
37
|
def is_pattern?
|
36
38
|
@pattern
|
37
39
|
end
|
38
40
|
|
39
41
|
# Serialize Triple to N3
|
42
|
+
# @return [String]
|
40
43
|
def to_n3
|
41
44
|
raise RdfException.new("Can't serialize pattern triple '#{@subject.inspect}, #{@predicate.inspect}, #{@object.inspect}'") if is_pattern?
|
42
45
|
@subject.to_ntriples + " " + @predicate.to_ntriples + " " + @object.to_ntriples + " ."
|
43
46
|
end
|
44
47
|
alias_method :to_ntriples, :to_n3
|
45
48
|
|
49
|
+
# @return [String]
|
46
50
|
def to_s; self.to_ntriples; end
|
47
51
|
|
48
52
|
def inspect
|
@@ -56,12 +60,15 @@ module RdfContext
|
|
56
60
|
end
|
57
61
|
|
58
62
|
# Is the predicate of this statment rdf:type?
|
63
|
+
# @return [Boolean]
|
59
64
|
def is_type?
|
60
65
|
@predicate.to_s == "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
61
66
|
end
|
62
67
|
|
63
68
|
# Two triples are equal if their of their subjects, predicates and objects are equal.
|
64
69
|
# Or self or other is a pattern and subject, predicate, object matches
|
70
|
+
# @param [Triple] other
|
71
|
+
# @return [Boolean]
|
65
72
|
def eql? (other)
|
66
73
|
other.is_a?(Triple) &&
|
67
74
|
(other.subject == self.subject || other.subject.nil? || self.subject.nil?) &&
|
@@ -72,6 +79,7 @@ module RdfContext
|
|
72
79
|
alias_method :==, :eql?
|
73
80
|
|
74
81
|
# Clone triple, keeping references to literals and URIRefs, but cloning BNodes
|
82
|
+
# @return [Triple]
|
75
83
|
def clone
|
76
84
|
raise RdfException.new("Can't clone pattern triple") if is_pattern?
|
77
85
|
s = subject.is_a?(BNode) ? subject.clone : subject
|
@@ -81,12 +89,15 @@ module RdfContext
|
|
81
89
|
end
|
82
90
|
|
83
91
|
# Validate that this triple is legal RDF, not extended for Notation-3
|
92
|
+
# @raise [InvalidNode, InvalidPredicate]
|
93
|
+
# @return [void]
|
84
94
|
def validate_rdf
|
85
95
|
raise InvalidNode, "Triple has illegal RDF subject #{subject.inspect}" unless subject.is_a?(URIRef) || subject.is_a?(BNode)
|
86
96
|
raise InvalidPredicate, "Triple has illegal RDF predicate #{predicate.inspect}" unless predicate.is_a?(URIRef)
|
87
97
|
end
|
88
98
|
|
89
99
|
# For indexes
|
100
|
+
# @return [String]
|
90
101
|
def hash
|
91
102
|
[subject, predicate, object].hash
|
92
103
|
end
|
data/lib/rdf_context/uriref.rb
CHANGED
@@ -7,13 +7,14 @@ module RdfContext
|
|
7
7
|
|
8
8
|
# Create a URIRef from a URI or a fragment and a URI
|
9
9
|
#
|
10
|
-
#
|
10
|
+
# @example
|
11
11
|
# u = URIRef.new("http://example.com")
|
12
12
|
# u = URIRef.new("foo", u) => "http://example.com/foo"
|
13
13
|
#
|
14
14
|
# Last argument may be an options hash to set:
|
15
|
-
# @
|
16
|
-
# @options[
|
15
|
+
# @param [Array<#to_s>] args One or two URIs to create. Last is joined with first
|
16
|
+
# @option options[Boolean] :normalize Normalize URI when transforming to string, defaults to true
|
17
|
+
# @option options[Namespace] :namespace Namespace used to create this URI, useful for to_qname
|
17
18
|
def initialize (*args)
|
18
19
|
options = args.last.is_a?(Hash) ? args.pop : { :normalize => false }
|
19
20
|
@normalize = options[:normalize]
|
@@ -39,6 +40,8 @@ module RdfContext
|
|
39
40
|
end
|
40
41
|
|
41
42
|
# Create a URI, either by appending a fragment, or using the input URI
|
43
|
+
# @param [#to_s] input
|
44
|
+
# @return [URIRef]
|
42
45
|
def + (input)
|
43
46
|
input_uri = Addressable::URI.parse(input.to_s)
|
44
47
|
return URIRef.new(input_uri, self.to_s)
|
@@ -46,6 +49,7 @@ module RdfContext
|
|
46
49
|
|
47
50
|
# short_name of URI for creating QNames.
|
48
51
|
# "#{base]{#short_name}}" == uri
|
52
|
+
# @return [String, false]
|
49
53
|
def short_name
|
50
54
|
@short_name ||= begin
|
51
55
|
path = @uri.path.split("/")
|
@@ -63,6 +67,7 @@ module RdfContext
|
|
63
67
|
|
64
68
|
# base of URI for creating QNames.
|
65
69
|
# "#{base]{#short_name}}" == uri
|
70
|
+
# @return [String]
|
66
71
|
def base
|
67
72
|
@base ||= begin
|
68
73
|
uri_base = self.to_s
|
@@ -71,28 +76,36 @@ module RdfContext
|
|
71
76
|
end
|
72
77
|
end
|
73
78
|
|
79
|
+
# @param [URIRef] other
|
80
|
+
# @return [Boolean]
|
74
81
|
def eql?(other)
|
75
82
|
self.to_s == other.to_s
|
76
83
|
end
|
77
84
|
alias_method :==, :eql?
|
78
85
|
|
86
|
+
# @param [#to_s] other
|
87
|
+
# @return [-1, 0 1]
|
79
88
|
def <=>(other)
|
80
89
|
self.to_s <=> other.to_s
|
81
90
|
end
|
82
91
|
|
83
92
|
# Needed for uniq
|
93
|
+
# @return [String]
|
84
94
|
def hash; to_s.hash; end
|
85
95
|
|
96
|
+
# @return [String]
|
86
97
|
def to_s
|
87
98
|
@to_s ||= @uri.to_s
|
88
99
|
end
|
89
100
|
|
101
|
+
# @return [String]
|
90
102
|
def to_n3
|
91
103
|
"<" + self.to_s + ">"
|
92
104
|
end
|
93
105
|
alias_method :to_ntriples, :to_n3
|
94
106
|
|
95
107
|
# Output URI as QName using URI binding
|
108
|
+
# @return [String]
|
96
109
|
def to_qname(uri_binding = [])
|
97
110
|
namespaces = case uri_binding
|
98
111
|
when Hash then uri_binding.values
|
@@ -104,6 +117,8 @@ module RdfContext
|
|
104
117
|
end
|
105
118
|
|
106
119
|
# Look at namespaces and find first that matches this URI, ordering by longest URI first
|
120
|
+
# @param [Array<Namespace>] namespaces ([])
|
121
|
+
# @return [Namespace]
|
107
122
|
def namespace(namespaces = [])
|
108
123
|
@namespace ||=
|
109
124
|
namespaces.sort_by {|ns| -ns.uri.to_s.length}.detect {|ns| self.to_s.index(ns.uri.to_s) == 0}
|
@@ -114,6 +129,7 @@ module RdfContext
|
|
114
129
|
end
|
115
130
|
|
116
131
|
# Output URI as resource reference for RDF/XML
|
132
|
+
# @return [Array<Hash{String => String}>]
|
117
133
|
def xml_args
|
118
134
|
[{"rdf:resource" => self.to_s}]
|
119
135
|
end
|
data/spec/html4-manifest.yml
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
about: !ruby/object:Addressable::URI
|
4
4
|
authority: rdfa.digitalbazaar.com
|
5
5
|
fragment:
|
6
|
-
hash:
|
6
|
+
hash: 454930089
|
7
7
|
host: rdfa.digitalbazaar.com
|
8
8
|
normalized_host:
|
9
9
|
normalized_path:
|
@@ -31,7 +31,7 @@
|
|
31
31
|
about: !ruby/object:Addressable::URI
|
32
32
|
authority: rdfa.digitalbazaar.com
|
33
33
|
fragment:
|
34
|
-
hash:
|
34
|
+
hash: 454930088
|
35
35
|
host: rdfa.digitalbazaar.com
|
36
36
|
normalized_host:
|
37
37
|
normalized_path:
|
@@ -59,7 +59,7 @@
|
|
59
59
|
about: !ruby/object:Addressable::URI
|
60
60
|
authority: rdfa.digitalbazaar.com
|
61
61
|
fragment:
|
62
|
-
hash:
|
62
|
+
hash: 454930087
|
63
63
|
host: rdfa.digitalbazaar.com
|
64
64
|
normalized_host:
|
65
65
|
normalized_path:
|
@@ -87,7 +87,7 @@
|
|
87
87
|
about: !ruby/object:Addressable::URI
|
88
88
|
authority: rdfa.digitalbazaar.com
|
89
89
|
fragment:
|
90
|
-
hash:
|
90
|
+
hash: 454930086
|
91
91
|
host: rdfa.digitalbazaar.com
|
92
92
|
normalized_host:
|
93
93
|
normalized_path:
|
@@ -115,7 +115,7 @@
|
|
115
115
|
about: !ruby/object:Addressable::URI
|
116
116
|
authority: rdfa.digitalbazaar.com
|
117
117
|
fragment:
|
118
|
-
hash:
|
118
|
+
hash: 454930085
|
119
119
|
host: rdfa.digitalbazaar.com
|
120
120
|
normalized_host:
|
121
121
|
normalized_path:
|
@@ -143,7 +143,7 @@
|
|
143
143
|
about: !ruby/object:Addressable::URI
|
144
144
|
authority: rdfa.digitalbazaar.com
|
145
145
|
fragment:
|
146
|
-
hash:
|
146
|
+
hash: 454930084
|
147
147
|
host: rdfa.digitalbazaar.com
|
148
148
|
normalized_host:
|
149
149
|
normalized_path:
|
@@ -171,7 +171,7 @@
|
|
171
171
|
about: !ruby/object:Addressable::URI
|
172
172
|
authority: rdfa.digitalbazaar.com
|
173
173
|
fragment:
|
174
|
-
hash:
|
174
|
+
hash: 454930083
|
175
175
|
host: rdfa.digitalbazaar.com
|
176
176
|
normalized_host:
|
177
177
|
normalized_path:
|
@@ -199,7 +199,7 @@
|
|
199
199
|
about: !ruby/object:Addressable::URI
|
200
200
|
authority: rdfa.digitalbazaar.com
|
201
201
|
fragment:
|
202
|
-
hash:
|
202
|
+
hash: 454930082
|
203
203
|
host: rdfa.digitalbazaar.com
|
204
204
|
normalized_host:
|
205
205
|
normalized_path:
|
@@ -227,7 +227,7 @@
|
|
227
227
|
about: !ruby/object:Addressable::URI
|
228
228
|
authority: rdfa.digitalbazaar.com
|
229
229
|
fragment:
|
230
|
-
hash:
|
230
|
+
hash: 454930080
|
231
231
|
host: rdfa.digitalbazaar.com
|
232
232
|
normalized_host:
|
233
233
|
normalized_path:
|
@@ -255,7 +255,7 @@
|
|
255
255
|
about: !ruby/object:Addressable::URI
|
256
256
|
authority: rdfa.digitalbazaar.com
|
257
257
|
fragment:
|
258
|
-
hash:
|
258
|
+
hash: 454862441
|
259
259
|
host: rdfa.digitalbazaar.com
|
260
260
|
normalized_host:
|
261
261
|
normalized_path:
|
@@ -283,7 +283,7 @@
|
|
283
283
|
about: !ruby/object:Addressable::URI
|
284
284
|
authority: rdfa.digitalbazaar.com
|
285
285
|
fragment:
|
286
|
-
hash:
|
286
|
+
hash: 454862440
|
287
287
|
host: rdfa.digitalbazaar.com
|
288
288
|
normalized_host:
|
289
289
|
normalized_path:
|
@@ -311,7 +311,7 @@
|
|
311
311
|
about: !ruby/object:Addressable::URI
|
312
312
|
authority: rdfa.digitalbazaar.com
|
313
313
|
fragment:
|
314
|
-
hash:
|
314
|
+
hash: 454862439
|
315
315
|
host: rdfa.digitalbazaar.com
|
316
316
|
normalized_host:
|
317
317
|
normalized_path:
|
@@ -339,7 +339,7 @@
|
|
339
339
|
about: !ruby/object:Addressable::URI
|
340
340
|
authority: rdfa.digitalbazaar.com
|
341
341
|
fragment:
|
342
|
-
hash:
|
342
|
+
hash: 454862438
|
343
343
|
host: rdfa.digitalbazaar.com
|
344
344
|
normalized_host:
|
345
345
|
normalized_path:
|
@@ -367,7 +367,7 @@
|
|
367
367
|
about: !ruby/object:Addressable::URI
|
368
368
|
authority: rdfa.digitalbazaar.com
|
369
369
|
fragment:
|
370
|
-
hash:
|
370
|
+
hash: 454862437
|
371
371
|
host: rdfa.digitalbazaar.com
|
372
372
|
normalized_host:
|
373
373
|
normalized_path:
|
@@ -395,7 +395,7 @@
|
|
395
395
|
about: !ruby/object:Addressable::URI
|
396
396
|
authority: rdfa.digitalbazaar.com
|
397
397
|
fragment:
|
398
|
-
hash:
|
398
|
+
hash: 454862436
|
399
399
|
host: rdfa.digitalbazaar.com
|
400
400
|
normalized_host:
|
401
401
|
normalized_path:
|
@@ -423,7 +423,7 @@
|
|
423
423
|
about: !ruby/object:Addressable::URI
|
424
424
|
authority: rdfa.digitalbazaar.com
|
425
425
|
fragment:
|
426
|
-
hash:
|
426
|
+
hash: 454862435
|
427
427
|
host: rdfa.digitalbazaar.com
|
428
428
|
normalized_host:
|
429
429
|
normalized_path:
|
@@ -451,7 +451,7 @@
|
|
451
451
|
about: !ruby/object:Addressable::URI
|
452
452
|
authority: rdfa.digitalbazaar.com
|
453
453
|
fragment:
|
454
|
-
hash:
|
454
|
+
hash: 454862434
|
455
455
|
host: rdfa.digitalbazaar.com
|
456
456
|
normalized_host:
|
457
457
|
normalized_path:
|
@@ -479,7 +479,7 @@
|
|
479
479
|
about: !ruby/object:Addressable::URI
|
480
480
|
authority: rdfa.digitalbazaar.com
|
481
481
|
fragment:
|
482
|
-
hash:
|
482
|
+
hash: 454862433
|
483
483
|
host: rdfa.digitalbazaar.com
|
484
484
|
normalized_host:
|
485
485
|
normalized_path:
|
@@ -507,7 +507,7 @@
|
|
507
507
|
about: !ruby/object:Addressable::URI
|
508
508
|
authority: rdfa.digitalbazaar.com
|
509
509
|
fragment:
|
510
|
-
hash:
|
510
|
+
hash: 454862432
|
511
511
|
host: rdfa.digitalbazaar.com
|
512
512
|
normalized_host:
|
513
513
|
normalized_path:
|
@@ -535,7 +535,7 @@
|
|
535
535
|
about: !ruby/object:Addressable::URI
|
536
536
|
authority: rdfa.digitalbazaar.com
|
537
537
|
fragment:
|
538
|
-
hash:
|
538
|
+
hash: 454794792
|
539
539
|
host: rdfa.digitalbazaar.com
|
540
540
|
normalized_host:
|
541
541
|
normalized_path:
|
@@ -563,7 +563,7 @@
|
|
563
563
|
about: !ruby/object:Addressable::URI
|
564
564
|
authority: rdfa.digitalbazaar.com
|
565
565
|
fragment:
|
566
|
-
hash:
|
566
|
+
hash: 454794791
|
567
567
|
host: rdfa.digitalbazaar.com
|
568
568
|
normalized_host:
|
569
569
|
normalized_path:
|
@@ -591,7 +591,7 @@
|
|
591
591
|
about: !ruby/object:Addressable::URI
|
592
592
|
authority: rdfa.digitalbazaar.com
|
593
593
|
fragment:
|
594
|
-
hash:
|
594
|
+
hash: 454794790
|
595
595
|
host: rdfa.digitalbazaar.com
|
596
596
|
normalized_host:
|
597
597
|
normalized_path:
|
@@ -619,7 +619,7 @@
|
|
619
619
|
about: !ruby/object:Addressable::URI
|
620
620
|
authority: rdfa.digitalbazaar.com
|
621
621
|
fragment:
|
622
|
-
hash:
|
622
|
+
hash: 454794789
|
623
623
|
host: rdfa.digitalbazaar.com
|
624
624
|
normalized_host:
|
625
625
|
normalized_path:
|
@@ -647,7 +647,7 @@
|
|
647
647
|
about: !ruby/object:Addressable::URI
|
648
648
|
authority: rdfa.digitalbazaar.com
|
649
649
|
fragment:
|
650
|
-
hash:
|
650
|
+
hash: 454794788
|
651
651
|
host: rdfa.digitalbazaar.com
|
652
652
|
normalized_host:
|
653
653
|
normalized_path:
|
@@ -675,7 +675,7 @@
|
|
675
675
|
about: !ruby/object:Addressable::URI
|
676
676
|
authority: rdfa.digitalbazaar.com
|
677
677
|
fragment:
|
678
|
-
hash:
|
678
|
+
hash: 454794787
|
679
679
|
host: rdfa.digitalbazaar.com
|
680
680
|
normalized_host:
|
681
681
|
normalized_path:
|
@@ -703,7 +703,7 @@
|
|
703
703
|
about: !ruby/object:Addressable::URI
|
704
704
|
authority: rdfa.digitalbazaar.com
|
705
705
|
fragment:
|
706
|
-
hash:
|
706
|
+
hash: 454794786
|
707
707
|
host: rdfa.digitalbazaar.com
|
708
708
|
normalized_host:
|
709
709
|
normalized_path:
|
@@ -731,7 +731,7 @@
|
|
731
731
|
about: !ruby/object:Addressable::URI
|
732
732
|
authority: rdfa.digitalbazaar.com
|
733
733
|
fragment:
|
734
|
-
hash:
|
734
|
+
hash: 454794785
|
735
735
|
host: rdfa.digitalbazaar.com
|
736
736
|
normalized_host:
|
737
737
|
normalized_path:
|
@@ -759,7 +759,7 @@
|
|
759
759
|
about: !ruby/object:Addressable::URI
|
760
760
|
authority: rdfa.digitalbazaar.com
|
761
761
|
fragment:
|
762
|
-
hash:
|
762
|
+
hash: 454794784
|
763
763
|
host: rdfa.digitalbazaar.com
|
764
764
|
normalized_host:
|
765
765
|
normalized_path:
|
@@ -787,7 +787,7 @@
|
|
787
787
|
about: !ruby/object:Addressable::URI
|
788
788
|
authority: rdfa.digitalbazaar.com
|
789
789
|
fragment:
|
790
|
-
hash:
|
790
|
+
hash: 454794783
|
791
791
|
host: rdfa.digitalbazaar.com
|
792
792
|
normalized_host:
|
793
793
|
normalized_path:
|
@@ -815,7 +815,7 @@
|
|
815
815
|
about: !ruby/object:Addressable::URI
|
816
816
|
authority: rdfa.digitalbazaar.com
|
817
817
|
fragment:
|
818
|
-
hash:
|
818
|
+
hash: 454727143
|
819
819
|
host: rdfa.digitalbazaar.com
|
820
820
|
normalized_host:
|
821
821
|
normalized_path:
|
@@ -843,7 +843,7 @@
|
|
843
843
|
about: !ruby/object:Addressable::URI
|
844
844
|
authority: rdfa.digitalbazaar.com
|
845
845
|
fragment:
|
846
|
-
hash:
|
846
|
+
hash: 454727142
|
847
847
|
host: rdfa.digitalbazaar.com
|
848
848
|
normalized_host:
|
849
849
|
normalized_path:
|
@@ -871,7 +871,7 @@
|
|
871
871
|
about: !ruby/object:Addressable::URI
|
872
872
|
authority: rdfa.digitalbazaar.com
|
873
873
|
fragment:
|
874
|
-
hash:
|
874
|
+
hash: 454727141
|
875
875
|
host: rdfa.digitalbazaar.com
|
876
876
|
normalized_host:
|
877
877
|
normalized_path:
|
@@ -899,7 +899,7 @@
|
|
899
899
|
about: !ruby/object:Addressable::URI
|
900
900
|
authority: rdfa.digitalbazaar.com
|
901
901
|
fragment:
|
902
|
-
hash:
|
902
|
+
hash: 454727140
|
903
903
|
host: rdfa.digitalbazaar.com
|
904
904
|
normalized_host:
|
905
905
|
normalized_path:
|
@@ -927,7 +927,7 @@
|
|
927
927
|
about: !ruby/object:Addressable::URI
|
928
928
|
authority: rdfa.digitalbazaar.com
|
929
929
|
fragment:
|
930
|
-
hash:
|
930
|
+
hash: 454727139
|
931
931
|
host: rdfa.digitalbazaar.com
|
932
932
|
normalized_host:
|
933
933
|
normalized_path:
|
@@ -955,7 +955,7 @@
|
|
955
955
|
about: !ruby/object:Addressable::URI
|
956
956
|
authority: rdfa.digitalbazaar.com
|
957
957
|
fragment:
|
958
|
-
hash:
|
958
|
+
hash: 454727138
|
959
959
|
host: rdfa.digitalbazaar.com
|
960
960
|
normalized_host:
|
961
961
|
normalized_path:
|
@@ -983,7 +983,7 @@
|
|
983
983
|
about: !ruby/object:Addressable::URI
|
984
984
|
authority: rdfa.digitalbazaar.com
|
985
985
|
fragment:
|
986
|
-
hash:
|
986
|
+
hash: 454727137
|
987
987
|
host: rdfa.digitalbazaar.com
|
988
988
|
normalized_host:
|
989
989
|
normalized_path:
|
@@ -1011,7 +1011,7 @@
|
|
1011
1011
|
about: !ruby/object:Addressable::URI
|
1012
1012
|
authority: rdfa.digitalbazaar.com
|
1013
1013
|
fragment:
|
1014
|
-
hash:
|
1014
|
+
hash: 454727136
|
1015
1015
|
host: rdfa.digitalbazaar.com
|
1016
1016
|
normalized_host:
|
1017
1017
|
normalized_path:
|
@@ -1039,7 +1039,7 @@
|
|
1039
1039
|
about: !ruby/object:Addressable::URI
|
1040
1040
|
authority: rdfa.digitalbazaar.com
|
1041
1041
|
fragment:
|
1042
|
-
hash:
|
1042
|
+
hash: 454727135
|
1043
1043
|
host: rdfa.digitalbazaar.com
|
1044
1044
|
normalized_host:
|
1045
1045
|
normalized_path:
|
@@ -1067,7 +1067,7 @@
|
|
1067
1067
|
about: !ruby/object:Addressable::URI
|
1068
1068
|
authority: rdfa.digitalbazaar.com
|
1069
1069
|
fragment:
|
1070
|
-
hash:
|
1070
|
+
hash: 454727134
|
1071
1071
|
host: rdfa.digitalbazaar.com
|
1072
1072
|
normalized_host:
|
1073
1073
|
normalized_path:
|
@@ -1095,7 +1095,7 @@
|
|
1095
1095
|
about: !ruby/object:Addressable::URI
|
1096
1096
|
authority: rdfa.digitalbazaar.com
|
1097
1097
|
fragment:
|
1098
|
-
hash:
|
1098
|
+
hash: 454659494
|
1099
1099
|
host: rdfa.digitalbazaar.com
|
1100
1100
|
normalized_host:
|
1101
1101
|
normalized_path:
|
@@ -1123,7 +1123,7 @@
|
|
1123
1123
|
about: !ruby/object:Addressable::URI
|
1124
1124
|
authority: rdfa.digitalbazaar.com
|
1125
1125
|
fragment:
|
1126
|
-
hash:
|
1126
|
+
hash: 454659493
|
1127
1127
|
host: rdfa.digitalbazaar.com
|
1128
1128
|
normalized_host:
|
1129
1129
|
normalized_path:
|
@@ -1151,7 +1151,7 @@
|
|
1151
1151
|
about: !ruby/object:Addressable::URI
|
1152
1152
|
authority: rdfa.digitalbazaar.com
|
1153
1153
|
fragment:
|
1154
|
-
hash:
|
1154
|
+
hash: 454659492
|
1155
1155
|
host: rdfa.digitalbazaar.com
|
1156
1156
|
normalized_host:
|
1157
1157
|
normalized_path:
|
@@ -1179,7 +1179,7 @@
|
|
1179
1179
|
about: !ruby/object:Addressable::URI
|
1180
1180
|
authority: rdfa.digitalbazaar.com
|
1181
1181
|
fragment:
|
1182
|
-
hash:
|
1182
|
+
hash: 454659491
|
1183
1183
|
host: rdfa.digitalbazaar.com
|
1184
1184
|
normalized_host:
|
1185
1185
|
normalized_path:
|
@@ -1207,7 +1207,7 @@
|
|
1207
1207
|
about: !ruby/object:Addressable::URI
|
1208
1208
|
authority: rdfa.digitalbazaar.com
|
1209
1209
|
fragment:
|
1210
|
-
hash:
|
1210
|
+
hash: 454659490
|
1211
1211
|
host: rdfa.digitalbazaar.com
|
1212
1212
|
normalized_host:
|
1213
1213
|
normalized_path:
|
@@ -1235,7 +1235,7 @@
|
|
1235
1235
|
about: !ruby/object:Addressable::URI
|
1236
1236
|
authority: rdfa.digitalbazaar.com
|
1237
1237
|
fragment:
|
1238
|
-
hash:
|
1238
|
+
hash: 454659489
|
1239
1239
|
host: rdfa.digitalbazaar.com
|
1240
1240
|
normalized_host:
|
1241
1241
|
normalized_path:
|
@@ -1263,7 +1263,7 @@
|
|
1263
1263
|
about: !ruby/object:Addressable::URI
|
1264
1264
|
authority: rdfa.digitalbazaar.com
|
1265
1265
|
fragment:
|
1266
|
-
hash:
|
1266
|
+
hash: 454659488
|
1267
1267
|
host: rdfa.digitalbazaar.com
|
1268
1268
|
normalized_host:
|
1269
1269
|
normalized_path:
|
@@ -1291,7 +1291,7 @@
|
|
1291
1291
|
about: !ruby/object:Addressable::URI
|
1292
1292
|
authority: rdfa.digitalbazaar.com
|
1293
1293
|
fragment:
|
1294
|
-
hash:
|
1294
|
+
hash: 454659487
|
1295
1295
|
host: rdfa.digitalbazaar.com
|
1296
1296
|
normalized_host:
|
1297
1297
|
normalized_path:
|
@@ -1319,7 +1319,7 @@
|
|
1319
1319
|
about: !ruby/object:Addressable::URI
|
1320
1320
|
authority: rdfa.digitalbazaar.com
|
1321
1321
|
fragment:
|
1322
|
-
hash:
|
1322
|
+
hash: 454659486
|
1323
1323
|
host: rdfa.digitalbazaar.com
|
1324
1324
|
normalized_host:
|
1325
1325
|
normalized_path:
|
@@ -1347,7 +1347,7 @@
|
|
1347
1347
|
about: !ruby/object:Addressable::URI
|
1348
1348
|
authority: rdfa.digitalbazaar.com
|
1349
1349
|
fragment:
|
1350
|
-
hash:
|
1350
|
+
hash: 454659485
|
1351
1351
|
host: rdfa.digitalbazaar.com
|
1352
1352
|
normalized_host:
|
1353
1353
|
normalized_path:
|
@@ -1375,7 +1375,7 @@
|
|
1375
1375
|
about: !ruby/object:Addressable::URI
|
1376
1376
|
authority: rdfa.digitalbazaar.com
|
1377
1377
|
fragment:
|
1378
|
-
hash:
|
1378
|
+
hash: 454591845
|
1379
1379
|
host: rdfa.digitalbazaar.com
|
1380
1380
|
normalized_host:
|
1381
1381
|
normalized_path:
|
@@ -1403,7 +1403,7 @@
|
|
1403
1403
|
about: !ruby/object:Addressable::URI
|
1404
1404
|
authority: rdfa.digitalbazaar.com
|
1405
1405
|
fragment:
|
1406
|
-
hash:
|
1406
|
+
hash: 454591844
|
1407
1407
|
host: rdfa.digitalbazaar.com
|
1408
1408
|
normalized_host:
|
1409
1409
|
normalized_path:
|
@@ -1431,7 +1431,7 @@
|
|
1431
1431
|
about: !ruby/object:Addressable::URI
|
1432
1432
|
authority: rdfa.digitalbazaar.com
|
1433
1433
|
fragment:
|
1434
|
-
hash:
|
1434
|
+
hash: 454591843
|
1435
1435
|
host: rdfa.digitalbazaar.com
|
1436
1436
|
normalized_host:
|
1437
1437
|
normalized_path:
|
@@ -1459,7 +1459,7 @@
|
|
1459
1459
|
about: !ruby/object:Addressable::URI
|
1460
1460
|
authority: rdfa.digitalbazaar.com
|
1461
1461
|
fragment:
|
1462
|
-
hash:
|
1462
|
+
hash: 454591842
|
1463
1463
|
host: rdfa.digitalbazaar.com
|
1464
1464
|
normalized_host:
|
1465
1465
|
normalized_path:
|
@@ -1487,7 +1487,7 @@
|
|
1487
1487
|
about: !ruby/object:Addressable::URI
|
1488
1488
|
authority: rdfa.digitalbazaar.com
|
1489
1489
|
fragment:
|
1490
|
-
hash:
|
1490
|
+
hash: 454591841
|
1491
1491
|
host: rdfa.digitalbazaar.com
|
1492
1492
|
normalized_host:
|
1493
1493
|
normalized_path:
|
@@ -1515,7 +1515,7 @@
|
|
1515
1515
|
about: !ruby/object:Addressable::URI
|
1516
1516
|
authority: rdfa.digitalbazaar.com
|
1517
1517
|
fragment:
|
1518
|
-
hash:
|
1518
|
+
hash: 454591840
|
1519
1519
|
host: rdfa.digitalbazaar.com
|
1520
1520
|
normalized_host:
|
1521
1521
|
normalized_path:
|
@@ -1543,7 +1543,7 @@
|
|
1543
1543
|
about: !ruby/object:Addressable::URI
|
1544
1544
|
authority: rdfa.digitalbazaar.com
|
1545
1545
|
fragment:
|
1546
|
-
hash:
|
1546
|
+
hash: 454591839
|
1547
1547
|
host: rdfa.digitalbazaar.com
|
1548
1548
|
normalized_host:
|
1549
1549
|
normalized_path:
|
@@ -1571,7 +1571,7 @@
|
|
1571
1571
|
about: !ruby/object:Addressable::URI
|
1572
1572
|
authority: rdfa.digitalbazaar.com
|
1573
1573
|
fragment:
|
1574
|
-
hash:
|
1574
|
+
hash: 454591838
|
1575
1575
|
host: rdfa.digitalbazaar.com
|
1576
1576
|
normalized_host:
|
1577
1577
|
normalized_path:
|
@@ -1599,7 +1599,7 @@
|
|
1599
1599
|
about: !ruby/object:Addressable::URI
|
1600
1600
|
authority: rdfa.digitalbazaar.com
|
1601
1601
|
fragment:
|
1602
|
-
hash:
|
1602
|
+
hash: 454591837
|
1603
1603
|
host: rdfa.digitalbazaar.com
|
1604
1604
|
normalized_host:
|
1605
1605
|
normalized_path:
|
@@ -1627,7 +1627,7 @@
|
|
1627
1627
|
about: !ruby/object:Addressable::URI
|
1628
1628
|
authority: rdfa.digitalbazaar.com
|
1629
1629
|
fragment:
|
1630
|
-
hash:
|
1630
|
+
hash: 454591836
|
1631
1631
|
host: rdfa.digitalbazaar.com
|
1632
1632
|
normalized_host:
|
1633
1633
|
normalized_path:
|
@@ -1655,7 +1655,7 @@
|
|
1655
1655
|
about: !ruby/object:Addressable::URI
|
1656
1656
|
authority: rdfa.digitalbazaar.com
|
1657
1657
|
fragment:
|
1658
|
-
hash:
|
1658
|
+
hash: 454524196
|
1659
1659
|
host: rdfa.digitalbazaar.com
|
1660
1660
|
normalized_host:
|
1661
1661
|
normalized_path:
|
@@ -1683,7 +1683,7 @@
|
|
1683
1683
|
about: !ruby/object:Addressable::URI
|
1684
1684
|
authority: rdfa.digitalbazaar.com
|
1685
1685
|
fragment:
|
1686
|
-
hash:
|
1686
|
+
hash: 454524195
|
1687
1687
|
host: rdfa.digitalbazaar.com
|
1688
1688
|
normalized_host:
|
1689
1689
|
normalized_path:
|
@@ -1711,7 +1711,7 @@
|
|
1711
1711
|
about: !ruby/object:Addressable::URI
|
1712
1712
|
authority: rdfa.digitalbazaar.com
|
1713
1713
|
fragment:
|
1714
|
-
hash:
|
1714
|
+
hash: 454524194
|
1715
1715
|
host: rdfa.digitalbazaar.com
|
1716
1716
|
normalized_host:
|
1717
1717
|
normalized_path:
|
@@ -1739,7 +1739,7 @@
|
|
1739
1739
|
about: !ruby/object:Addressable::URI
|
1740
1740
|
authority: rdfa.digitalbazaar.com
|
1741
1741
|
fragment:
|
1742
|
-
hash:
|
1742
|
+
hash: 454524193
|
1743
1743
|
host: rdfa.digitalbazaar.com
|
1744
1744
|
normalized_host:
|
1745
1745
|
normalized_path:
|
@@ -1767,7 +1767,7 @@
|
|
1767
1767
|
about: !ruby/object:Addressable::URI
|
1768
1768
|
authority: rdfa.digitalbazaar.com
|
1769
1769
|
fragment:
|
1770
|
-
hash:
|
1770
|
+
hash: 454524192
|
1771
1771
|
host: rdfa.digitalbazaar.com
|
1772
1772
|
normalized_host:
|
1773
1773
|
normalized_path:
|
@@ -1795,7 +1795,7 @@
|
|
1795
1795
|
about: !ruby/object:Addressable::URI
|
1796
1796
|
authority: rdfa.digitalbazaar.com
|
1797
1797
|
fragment:
|
1798
|
-
hash:
|
1798
|
+
hash: 454524191
|
1799
1799
|
host: rdfa.digitalbazaar.com
|
1800
1800
|
normalized_host:
|
1801
1801
|
normalized_path:
|
@@ -1823,7 +1823,7 @@
|
|
1823
1823
|
about: !ruby/object:Addressable::URI
|
1824
1824
|
authority: rdfa.digitalbazaar.com
|
1825
1825
|
fragment:
|
1826
|
-
hash:
|
1826
|
+
hash: 454524190
|
1827
1827
|
host: rdfa.digitalbazaar.com
|
1828
1828
|
normalized_host:
|
1829
1829
|
normalized_path:
|
@@ -1851,7 +1851,7 @@
|
|
1851
1851
|
about: !ruby/object:Addressable::URI
|
1852
1852
|
authority: rdfa.digitalbazaar.com
|
1853
1853
|
fragment:
|
1854
|
-
hash:
|
1854
|
+
hash: 454524189
|
1855
1855
|
host: rdfa.digitalbazaar.com
|
1856
1856
|
normalized_host:
|
1857
1857
|
normalized_path:
|
@@ -1879,7 +1879,7 @@
|
|
1879
1879
|
about: !ruby/object:Addressable::URI
|
1880
1880
|
authority: rdfa.digitalbazaar.com
|
1881
1881
|
fragment:
|
1882
|
-
hash:
|
1882
|
+
hash: 454524188
|
1883
1883
|
host: rdfa.digitalbazaar.com
|
1884
1884
|
normalized_host:
|
1885
1885
|
normalized_path:
|
@@ -1907,7 +1907,7 @@
|
|
1907
1907
|
about: !ruby/object:Addressable::URI
|
1908
1908
|
authority: rdfa.digitalbazaar.com
|
1909
1909
|
fragment:
|
1910
|
-
hash:
|
1910
|
+
hash: 454524187
|
1911
1911
|
host: rdfa.digitalbazaar.com
|
1912
1912
|
normalized_host:
|
1913
1913
|
normalized_path:
|
@@ -1935,7 +1935,7 @@
|
|
1935
1935
|
about: !ruby/object:Addressable::URI
|
1936
1936
|
authority: rdfa.digitalbazaar.com
|
1937
1937
|
fragment:
|
1938
|
-
hash:
|
1938
|
+
hash: 454456547
|
1939
1939
|
host: rdfa.digitalbazaar.com
|
1940
1940
|
normalized_host:
|
1941
1941
|
normalized_path:
|
@@ -1963,7 +1963,7 @@
|
|
1963
1963
|
about: !ruby/object:Addressable::URI
|
1964
1964
|
authority: rdfa.digitalbazaar.com
|
1965
1965
|
fragment:
|
1966
|
-
hash:
|
1966
|
+
hash: 454456546
|
1967
1967
|
host: rdfa.digitalbazaar.com
|
1968
1968
|
normalized_host:
|
1969
1969
|
normalized_path:
|
@@ -1991,7 +1991,7 @@
|
|
1991
1991
|
about: !ruby/object:Addressable::URI
|
1992
1992
|
authority: rdfa.digitalbazaar.com
|
1993
1993
|
fragment:
|
1994
|
-
hash:
|
1994
|
+
hash: 454456545
|
1995
1995
|
host: rdfa.digitalbazaar.com
|
1996
1996
|
normalized_host:
|
1997
1997
|
normalized_path:
|
@@ -2019,7 +2019,7 @@
|
|
2019
2019
|
about: !ruby/object:Addressable::URI
|
2020
2020
|
authority: rdfa.digitalbazaar.com
|
2021
2021
|
fragment:
|
2022
|
-
hash:
|
2022
|
+
hash: 454456544
|
2023
2023
|
host: rdfa.digitalbazaar.com
|
2024
2024
|
normalized_host:
|
2025
2025
|
normalized_path:
|
@@ -2047,7 +2047,7 @@
|
|
2047
2047
|
about: !ruby/object:Addressable::URI
|
2048
2048
|
authority: rdfa.digitalbazaar.com
|
2049
2049
|
fragment:
|
2050
|
-
hash:
|
2050
|
+
hash: 454456543
|
2051
2051
|
host: rdfa.digitalbazaar.com
|
2052
2052
|
normalized_host:
|
2053
2053
|
normalized_path:
|
@@ -2075,7 +2075,7 @@
|
|
2075
2075
|
about: !ruby/object:Addressable::URI
|
2076
2076
|
authority: rdfa.digitalbazaar.com
|
2077
2077
|
fragment:
|
2078
|
-
hash:
|
2078
|
+
hash: 454456542
|
2079
2079
|
host: rdfa.digitalbazaar.com
|
2080
2080
|
normalized_host:
|
2081
2081
|
normalized_path:
|
@@ -2103,7 +2103,7 @@
|
|
2103
2103
|
about: !ruby/object:Addressable::URI
|
2104
2104
|
authority: rdfa.digitalbazaar.com
|
2105
2105
|
fragment:
|
2106
|
-
hash:
|
2106
|
+
hash: 454456541
|
2107
2107
|
host: rdfa.digitalbazaar.com
|
2108
2108
|
normalized_host:
|
2109
2109
|
normalized_path:
|
@@ -2131,7 +2131,7 @@
|
|
2131
2131
|
about: !ruby/object:Addressable::URI
|
2132
2132
|
authority: rdfa.digitalbazaar.com
|
2133
2133
|
fragment:
|
2134
|
-
hash:
|
2134
|
+
hash: 454456540
|
2135
2135
|
host: rdfa.digitalbazaar.com
|
2136
2136
|
normalized_host:
|
2137
2137
|
normalized_path:
|
@@ -2159,7 +2159,7 @@
|
|
2159
2159
|
about: !ruby/object:Addressable::URI
|
2160
2160
|
authority: rdfa.digitalbazaar.com
|
2161
2161
|
fragment:
|
2162
|
-
hash:
|
2162
|
+
hash: 454456539
|
2163
2163
|
host: rdfa.digitalbazaar.com
|
2164
2164
|
normalized_host:
|
2165
2165
|
normalized_path:
|
@@ -2187,7 +2187,7 @@
|
|
2187
2187
|
about: !ruby/object:Addressable::URI
|
2188
2188
|
authority: rdfa.digitalbazaar.com
|
2189
2189
|
fragment:
|
2190
|
-
hash:
|
2190
|
+
hash: 454456538
|
2191
2191
|
host: rdfa.digitalbazaar.com
|
2192
2192
|
normalized_host:
|
2193
2193
|
normalized_path:
|
@@ -2215,7 +2215,7 @@
|
|
2215
2215
|
about: !ruby/object:Addressable::URI
|
2216
2216
|
authority: rdfa.digitalbazaar.com
|
2217
2217
|
fragment:
|
2218
|
-
hash:
|
2218
|
+
hash: 454388898
|
2219
2219
|
host: rdfa.digitalbazaar.com
|
2220
2220
|
normalized_host:
|
2221
2221
|
normalized_path:
|
@@ -2243,7 +2243,7 @@
|
|
2243
2243
|
about: !ruby/object:Addressable::URI
|
2244
2244
|
authority: rdfa.digitalbazaar.com
|
2245
2245
|
fragment:
|
2246
|
-
hash:
|
2246
|
+
hash: 454388897
|
2247
2247
|
host: rdfa.digitalbazaar.com
|
2248
2248
|
normalized_host:
|
2249
2249
|
normalized_path:
|
@@ -2271,7 +2271,7 @@
|
|
2271
2271
|
about: !ruby/object:Addressable::URI
|
2272
2272
|
authority: rdfa.digitalbazaar.com
|
2273
2273
|
fragment:
|
2274
|
-
hash:
|
2274
|
+
hash: 454388896
|
2275
2275
|
host: rdfa.digitalbazaar.com
|
2276
2276
|
normalized_host:
|
2277
2277
|
normalized_path:
|
@@ -2299,7 +2299,7 @@
|
|
2299
2299
|
about: !ruby/object:Addressable::URI
|
2300
2300
|
authority: rdfa.digitalbazaar.com
|
2301
2301
|
fragment:
|
2302
|
-
hash:
|
2302
|
+
hash: 454388895
|
2303
2303
|
host: rdfa.digitalbazaar.com
|
2304
2304
|
normalized_host:
|
2305
2305
|
normalized_path:
|
@@ -2327,7 +2327,7 @@
|
|
2327
2327
|
about: !ruby/object:Addressable::URI
|
2328
2328
|
authority: rdfa.digitalbazaar.com
|
2329
2329
|
fragment:
|
2330
|
-
hash:
|
2330
|
+
hash: 454388894
|
2331
2331
|
host: rdfa.digitalbazaar.com
|
2332
2332
|
normalized_host:
|
2333
2333
|
normalized_path:
|
@@ -2355,7 +2355,7 @@
|
|
2355
2355
|
about: !ruby/object:Addressable::URI
|
2356
2356
|
authority: rdfa.digitalbazaar.com
|
2357
2357
|
fragment:
|
2358
|
-
hash:
|
2358
|
+
hash: 454388893
|
2359
2359
|
host: rdfa.digitalbazaar.com
|
2360
2360
|
normalized_host:
|
2361
2361
|
normalized_path:
|
@@ -2383,7 +2383,7 @@
|
|
2383
2383
|
about: !ruby/object:Addressable::URI
|
2384
2384
|
authority: rdfa.digitalbazaar.com
|
2385
2385
|
fragment:
|
2386
|
-
hash:
|
2386
|
+
hash: 454388892
|
2387
2387
|
host: rdfa.digitalbazaar.com
|
2388
2388
|
normalized_host:
|
2389
2389
|
normalized_path:
|
@@ -2411,7 +2411,7 @@
|
|
2411
2411
|
about: !ruby/object:Addressable::URI
|
2412
2412
|
authority: rdfa.digitalbazaar.com
|
2413
2413
|
fragment:
|
2414
|
-
hash:
|
2414
|
+
hash: 454388891
|
2415
2415
|
host: rdfa.digitalbazaar.com
|
2416
2416
|
normalized_host:
|
2417
2417
|
normalized_path:
|
@@ -2439,7 +2439,7 @@
|
|
2439
2439
|
about: !ruby/object:Addressable::URI
|
2440
2440
|
authority: rdfa.digitalbazaar.com
|
2441
2441
|
fragment:
|
2442
|
-
hash:
|
2442
|
+
hash: 454388890
|
2443
2443
|
host: rdfa.digitalbazaar.com
|
2444
2444
|
normalized_host:
|
2445
2445
|
normalized_path:
|
@@ -2467,7 +2467,7 @@
|
|
2467
2467
|
about: !ruby/object:Addressable::URI
|
2468
2468
|
authority: rdfa.digitalbazaar.com
|
2469
2469
|
fragment:
|
2470
|
-
hash:
|
2470
|
+
hash: 454388889
|
2471
2471
|
host: rdfa.digitalbazaar.com
|
2472
2472
|
normalized_host:
|
2473
2473
|
normalized_path:
|
@@ -2495,7 +2495,7 @@
|
|
2495
2495
|
about: !ruby/object:Addressable::URI
|
2496
2496
|
authority: rdfa.digitalbazaar.com
|
2497
2497
|
fragment:
|
2498
|
-
hash:
|
2498
|
+
hash: 454321249
|
2499
2499
|
host: rdfa.digitalbazaar.com
|
2500
2500
|
normalized_host:
|
2501
2501
|
normalized_path:
|
@@ -2523,7 +2523,7 @@
|
|
2523
2523
|
about: !ruby/object:Addressable::URI
|
2524
2524
|
authority: rdfa.digitalbazaar.com
|
2525
2525
|
fragment:
|
2526
|
-
hash:
|
2526
|
+
hash: 454321248
|
2527
2527
|
host: rdfa.digitalbazaar.com
|
2528
2528
|
normalized_host:
|
2529
2529
|
normalized_path:
|
@@ -2551,7 +2551,7 @@
|
|
2551
2551
|
about: !ruby/object:Addressable::URI
|
2552
2552
|
authority: rdfa.digitalbazaar.com
|
2553
2553
|
fragment:
|
2554
|
-
hash:
|
2554
|
+
hash: 454321247
|
2555
2555
|
host: rdfa.digitalbazaar.com
|
2556
2556
|
normalized_host:
|
2557
2557
|
normalized_path:
|
@@ -2579,7 +2579,7 @@
|
|
2579
2579
|
about: !ruby/object:Addressable::URI
|
2580
2580
|
authority: rdfa.digitalbazaar.com
|
2581
2581
|
fragment:
|
2582
|
-
hash:
|
2582
|
+
hash: 454321246
|
2583
2583
|
host: rdfa.digitalbazaar.com
|
2584
2584
|
normalized_host:
|
2585
2585
|
normalized_path:
|
@@ -2607,7 +2607,7 @@
|
|
2607
2607
|
about: !ruby/object:Addressable::URI
|
2608
2608
|
authority: rdfa.digitalbazaar.com
|
2609
2609
|
fragment:
|
2610
|
-
hash:
|
2610
|
+
hash: 454321245
|
2611
2611
|
host: rdfa.digitalbazaar.com
|
2612
2612
|
normalized_host:
|
2613
2613
|
normalized_path:
|
@@ -2635,7 +2635,7 @@
|
|
2635
2635
|
about: !ruby/object:Addressable::URI
|
2636
2636
|
authority: rdfa.digitalbazaar.com
|
2637
2637
|
fragment:
|
2638
|
-
hash:
|
2638
|
+
hash: 454321244
|
2639
2639
|
host: rdfa.digitalbazaar.com
|
2640
2640
|
normalized_host:
|
2641
2641
|
normalized_path:
|
@@ -2663,7 +2663,7 @@
|
|
2663
2663
|
about: !ruby/object:Addressable::URI
|
2664
2664
|
authority: rdfa.digitalbazaar.com
|
2665
2665
|
fragment:
|
2666
|
-
hash:
|
2666
|
+
hash: 454321243
|
2667
2667
|
host: rdfa.digitalbazaar.com
|
2668
2668
|
normalized_host:
|
2669
2669
|
normalized_path:
|
@@ -2691,7 +2691,7 @@
|
|
2691
2691
|
about: !ruby/object:Addressable::URI
|
2692
2692
|
authority: rdfa.digitalbazaar.com
|
2693
2693
|
fragment:
|
2694
|
-
hash:
|
2694
|
+
hash: 454321242
|
2695
2695
|
host: rdfa.digitalbazaar.com
|
2696
2696
|
normalized_host:
|
2697
2697
|
normalized_path:
|
@@ -2719,7 +2719,7 @@
|
|
2719
2719
|
about: !ruby/object:Addressable::URI
|
2720
2720
|
authority: rdfa.digitalbazaar.com
|
2721
2721
|
fragment:
|
2722
|
-
hash:
|
2722
|
+
hash: 454321241
|
2723
2723
|
host: rdfa.digitalbazaar.com
|
2724
2724
|
normalized_host:
|
2725
2725
|
normalized_path:
|
@@ -2747,7 +2747,7 @@
|
|
2747
2747
|
about: !ruby/object:Addressable::URI
|
2748
2748
|
authority: rdfa.digitalbazaar.com
|
2749
2749
|
fragment:
|
2750
|
-
hash:
|
2750
|
+
hash: 454321240
|
2751
2751
|
host: rdfa.digitalbazaar.com
|
2752
2752
|
normalized_host:
|
2753
2753
|
normalized_path:
|
@@ -2775,7 +2775,7 @@
|
|
2775
2775
|
about: !ruby/object:Addressable::URI
|
2776
2776
|
authority: rdfa.digitalbazaar.com
|
2777
2777
|
fragment:
|
2778
|
-
hash:
|
2778
|
+
hash: 446410413
|
2779
2779
|
host: rdfa.digitalbazaar.com
|
2780
2780
|
normalized_host:
|
2781
2781
|
normalized_path:
|
@@ -2803,7 +2803,7 @@
|
|
2803
2803
|
about: !ruby/object:Addressable::URI
|
2804
2804
|
authority: rdfa.digitalbazaar.com
|
2805
2805
|
fragment:
|
2806
|
-
hash:
|
2806
|
+
hash: 446410412
|
2807
2807
|
host: rdfa.digitalbazaar.com
|
2808
2808
|
normalized_host:
|
2809
2809
|
normalized_path:
|
@@ -2831,7 +2831,7 @@
|
|
2831
2831
|
about: !ruby/object:Addressable::URI
|
2832
2832
|
authority: rdfa.digitalbazaar.com
|
2833
2833
|
fragment:
|
2834
|
-
hash:
|
2834
|
+
hash: 446410411
|
2835
2835
|
host: rdfa.digitalbazaar.com
|
2836
2836
|
normalized_host:
|
2837
2837
|
normalized_path:
|
@@ -2861,7 +2861,7 @@
|
|
2861
2861
|
about: !ruby/object:Addressable::URI
|
2862
2862
|
authority: rdfa.digitalbazaar.com
|
2863
2863
|
fragment:
|
2864
|
-
hash:
|
2864
|
+
hash: 446410410
|
2865
2865
|
host: rdfa.digitalbazaar.com
|
2866
2866
|
normalized_host:
|
2867
2867
|
normalized_path:
|
@@ -2889,7 +2889,7 @@
|
|
2889
2889
|
about: !ruby/object:Addressable::URI
|
2890
2890
|
authority: rdfa.digitalbazaar.com
|
2891
2891
|
fragment:
|
2892
|
-
hash:
|
2892
|
+
hash: 446410409
|
2893
2893
|
host: rdfa.digitalbazaar.com
|
2894
2894
|
normalized_host:
|
2895
2895
|
normalized_path:
|
@@ -2917,7 +2917,7 @@
|
|
2917
2917
|
about: !ruby/object:Addressable::URI
|
2918
2918
|
authority: rdfa.digitalbazaar.com
|
2919
2919
|
fragment:
|
2920
|
-
hash:
|
2920
|
+
hash: 446410408
|
2921
2921
|
host: rdfa.digitalbazaar.com
|
2922
2922
|
normalized_host:
|
2923
2923
|
normalized_path:
|
@@ -2945,7 +2945,7 @@
|
|
2945
2945
|
about: !ruby/object:Addressable::URI
|
2946
2946
|
authority: rdfa.digitalbazaar.com
|
2947
2947
|
fragment:
|
2948
|
-
hash:
|
2948
|
+
hash: 446410407
|
2949
2949
|
host: rdfa.digitalbazaar.com
|
2950
2950
|
normalized_host:
|
2951
2951
|
normalized_path:
|
@@ -2973,7 +2973,7 @@
|
|
2973
2973
|
about: !ruby/object:Addressable::URI
|
2974
2974
|
authority: rdfa.digitalbazaar.com
|
2975
2975
|
fragment:
|
2976
|
-
hash:
|
2976
|
+
hash: 446410406
|
2977
2977
|
host: rdfa.digitalbazaar.com
|
2978
2978
|
normalized_host:
|
2979
2979
|
normalized_path:
|
@@ -3001,7 +3001,7 @@
|
|
3001
3001
|
about: !ruby/object:Addressable::URI
|
3002
3002
|
authority: rdfa.digitalbazaar.com
|
3003
3003
|
fragment:
|
3004
|
-
hash:
|
3004
|
+
hash: 446410404
|
3005
3005
|
host: rdfa.digitalbazaar.com
|
3006
3006
|
normalized_host:
|
3007
3007
|
normalized_path:
|
@@ -3029,7 +3029,7 @@
|
|
3029
3029
|
about: !ruby/object:Addressable::URI
|
3030
3030
|
authority: rdfa.digitalbazaar.com
|
3031
3031
|
fragment:
|
3032
|
-
hash:
|
3032
|
+
hash: 446410403
|
3033
3033
|
host: rdfa.digitalbazaar.com
|
3034
3034
|
normalized_host:
|
3035
3035
|
normalized_path:
|
@@ -3057,7 +3057,7 @@
|
|
3057
3057
|
about: !ruby/object:Addressable::URI
|
3058
3058
|
authority: rdfa.digitalbazaar.com
|
3059
3059
|
fragment:
|
3060
|
-
hash:
|
3060
|
+
hash: 446342764
|
3061
3061
|
host: rdfa.digitalbazaar.com
|
3062
3062
|
normalized_host:
|
3063
3063
|
normalized_path:
|
@@ -3085,7 +3085,7 @@
|
|
3085
3085
|
about: !ruby/object:Addressable::URI
|
3086
3086
|
authority: rdfa.digitalbazaar.com
|
3087
3087
|
fragment:
|
3088
|
-
hash:
|
3088
|
+
hash: 446342763
|
3089
3089
|
host: rdfa.digitalbazaar.com
|
3090
3090
|
normalized_host:
|
3091
3091
|
normalized_path:
|
@@ -3113,7 +3113,7 @@
|
|
3113
3113
|
about: !ruby/object:Addressable::URI
|
3114
3114
|
authority: rdfa.digitalbazaar.com
|
3115
3115
|
fragment:
|
3116
|
-
hash:
|
3116
|
+
hash: 446342762
|
3117
3117
|
host: rdfa.digitalbazaar.com
|
3118
3118
|
normalized_host:
|
3119
3119
|
normalized_path:
|
@@ -3141,7 +3141,7 @@
|
|
3141
3141
|
about: !ruby/object:Addressable::URI
|
3142
3142
|
authority: rdfa.digitalbazaar.com
|
3143
3143
|
fragment:
|
3144
|
-
hash:
|
3144
|
+
hash: 446342761
|
3145
3145
|
host: rdfa.digitalbazaar.com
|
3146
3146
|
normalized_host:
|
3147
3147
|
normalized_path:
|
@@ -3169,7 +3169,7 @@
|
|
3169
3169
|
about: !ruby/object:Addressable::URI
|
3170
3170
|
authority: rdfa.digitalbazaar.com
|
3171
3171
|
fragment:
|
3172
|
-
hash:
|
3172
|
+
hash: 446342760
|
3173
3173
|
host: rdfa.digitalbazaar.com
|
3174
3174
|
normalized_host:
|
3175
3175
|
normalized_path:
|
@@ -3197,7 +3197,7 @@
|
|
3197
3197
|
about: !ruby/object:Addressable::URI
|
3198
3198
|
authority: rdfa.digitalbazaar.com
|
3199
3199
|
fragment:
|
3200
|
-
hash:
|
3200
|
+
hash: 446342759
|
3201
3201
|
host: rdfa.digitalbazaar.com
|
3202
3202
|
normalized_host:
|
3203
3203
|
normalized_path:
|
@@ -3225,7 +3225,7 @@
|
|
3225
3225
|
about: !ruby/object:Addressable::URI
|
3226
3226
|
authority: rdfa.digitalbazaar.com
|
3227
3227
|
fragment:
|
3228
|
-
hash:
|
3228
|
+
hash: 446342758
|
3229
3229
|
host: rdfa.digitalbazaar.com
|
3230
3230
|
normalized_host:
|
3231
3231
|
normalized_path:
|
@@ -3253,7 +3253,7 @@
|
|
3253
3253
|
about: !ruby/object:Addressable::URI
|
3254
3254
|
authority: rdfa.digitalbazaar.com
|
3255
3255
|
fragment:
|
3256
|
-
hash:
|
3256
|
+
hash: 446342757
|
3257
3257
|
host: rdfa.digitalbazaar.com
|
3258
3258
|
normalized_host:
|
3259
3259
|
normalized_path:
|
@@ -3281,7 +3281,7 @@
|
|
3281
3281
|
about: !ruby/object:Addressable::URI
|
3282
3282
|
authority: rdfa.digitalbazaar.com
|
3283
3283
|
fragment:
|
3284
|
-
hash:
|
3284
|
+
hash: 446342756
|
3285
3285
|
host: rdfa.digitalbazaar.com
|
3286
3286
|
normalized_host:
|
3287
3287
|
normalized_path:
|
@@ -3315,7 +3315,7 @@
|
|
3315
3315
|
about: !ruby/object:Addressable::URI
|
3316
3316
|
authority: rdfa.digitalbazaar.com
|
3317
3317
|
fragment:
|
3318
|
-
hash:
|
3318
|
+
hash: 446342754
|
3319
3319
|
host: rdfa.digitalbazaar.com
|
3320
3320
|
normalized_host:
|
3321
3321
|
normalized_path:
|
@@ -3343,7 +3343,7 @@
|
|
3343
3343
|
about: !ruby/object:Addressable::URI
|
3344
3344
|
authority: rdfa.digitalbazaar.com
|
3345
3345
|
fragment:
|
3346
|
-
hash:
|
3346
|
+
hash: 446275115
|
3347
3347
|
host: rdfa.digitalbazaar.com
|
3348
3348
|
normalized_host:
|
3349
3349
|
normalized_path:
|
@@ -3371,7 +3371,7 @@
|
|
3371
3371
|
about: !ruby/object:Addressable::URI
|
3372
3372
|
authority: rdfa.digitalbazaar.com
|
3373
3373
|
fragment:
|
3374
|
-
hash:
|
3374
|
+
hash: 446275114
|
3375
3375
|
host: rdfa.digitalbazaar.com
|
3376
3376
|
normalized_host:
|
3377
3377
|
normalized_path:
|
@@ -3399,7 +3399,7 @@
|
|
3399
3399
|
about: !ruby/object:Addressable::URI
|
3400
3400
|
authority: rdfa.digitalbazaar.com
|
3401
3401
|
fragment:
|
3402
|
-
hash:
|
3402
|
+
hash: 446275113
|
3403
3403
|
host: rdfa.digitalbazaar.com
|
3404
3404
|
normalized_host:
|
3405
3405
|
normalized_path:
|
@@ -3427,7 +3427,7 @@
|
|
3427
3427
|
about: !ruby/object:Addressable::URI
|
3428
3428
|
authority: rdfa.digitalbazaar.com
|
3429
3429
|
fragment:
|
3430
|
-
hash:
|
3430
|
+
hash: 446275112
|
3431
3431
|
host: rdfa.digitalbazaar.com
|
3432
3432
|
normalized_host:
|
3433
3433
|
normalized_path:
|
@@ -3455,7 +3455,7 @@
|
|
3455
3455
|
about: !ruby/object:Addressable::URI
|
3456
3456
|
authority: rdfa.digitalbazaar.com
|
3457
3457
|
fragment:
|
3458
|
-
hash:
|
3458
|
+
hash: 446275111
|
3459
3459
|
host: rdfa.digitalbazaar.com
|
3460
3460
|
normalized_host:
|
3461
3461
|
normalized_path:
|
@@ -3483,7 +3483,7 @@
|
|
3483
3483
|
about: !ruby/object:Addressable::URI
|
3484
3484
|
authority: rdfa.digitalbazaar.com
|
3485
3485
|
fragment:
|
3486
|
-
hash:
|
3486
|
+
hash: 446275110
|
3487
3487
|
host: rdfa.digitalbazaar.com
|
3488
3488
|
normalized_host:
|
3489
3489
|
normalized_path:
|
@@ -3511,7 +3511,7 @@
|
|
3511
3511
|
about: !ruby/object:Addressable::URI
|
3512
3512
|
authority: rdfa.digitalbazaar.com
|
3513
3513
|
fragment:
|
3514
|
-
hash:
|
3514
|
+
hash: 446275109
|
3515
3515
|
host: rdfa.digitalbazaar.com
|
3516
3516
|
normalized_host:
|
3517
3517
|
normalized_path:
|
@@ -3539,7 +3539,7 @@
|
|
3539
3539
|
about: !ruby/object:Addressable::URI
|
3540
3540
|
authority: rdfa.digitalbazaar.com
|
3541
3541
|
fragment:
|
3542
|
-
hash:
|
3542
|
+
hash: 446275108
|
3543
3543
|
host: rdfa.digitalbazaar.com
|
3544
3544
|
normalized_host:
|
3545
3545
|
normalized_path:
|
@@ -3567,7 +3567,7 @@
|
|
3567
3567
|
about: !ruby/object:Addressable::URI
|
3568
3568
|
authority: rdfa.digitalbazaar.com
|
3569
3569
|
fragment:
|
3570
|
-
hash:
|
3570
|
+
hash: 446275107
|
3571
3571
|
host: rdfa.digitalbazaar.com
|
3572
3572
|
normalized_host:
|
3573
3573
|
normalized_path:
|
@@ -3595,7 +3595,7 @@
|
|
3595
3595
|
about: !ruby/object:Addressable::URI
|
3596
3596
|
authority: rdfa.digitalbazaar.com
|
3597
3597
|
fragment:
|
3598
|
-
hash:
|
3598
|
+
hash: 446275106
|
3599
3599
|
host: rdfa.digitalbazaar.com
|
3600
3600
|
normalized_host:
|
3601
3601
|
normalized_path:
|
@@ -3623,7 +3623,7 @@
|
|
3623
3623
|
about: !ruby/object:Addressable::URI
|
3624
3624
|
authority: rdfa.digitalbazaar.com
|
3625
3625
|
fragment:
|
3626
|
-
hash:
|
3626
|
+
hash: 446207466
|
3627
3627
|
host: rdfa.digitalbazaar.com
|
3628
3628
|
normalized_host:
|
3629
3629
|
normalized_path:
|
@@ -3651,7 +3651,7 @@
|
|
3651
3651
|
about: !ruby/object:Addressable::URI
|
3652
3652
|
authority: rdfa.digitalbazaar.com
|
3653
3653
|
fragment:
|
3654
|
-
hash:
|
3654
|
+
hash: 446207464
|
3655
3655
|
host: rdfa.digitalbazaar.com
|
3656
3656
|
normalized_host:
|
3657
3657
|
normalized_path:
|
@@ -3679,7 +3679,7 @@
|
|
3679
3679
|
about: !ruby/object:Addressable::URI
|
3680
3680
|
authority: rdfa.digitalbazaar.com
|
3681
3681
|
fragment:
|
3682
|
-
hash:
|
3682
|
+
hash: 446207463
|
3683
3683
|
host: rdfa.digitalbazaar.com
|
3684
3684
|
normalized_host:
|
3685
3685
|
normalized_path:
|
@@ -3707,7 +3707,7 @@
|
|
3707
3707
|
about: !ruby/object:Addressable::URI
|
3708
3708
|
authority: rdfa.digitalbazaar.com
|
3709
3709
|
fragment:
|
3710
|
-
hash:
|
3710
|
+
hash: 446207461
|
3711
3711
|
host: rdfa.digitalbazaar.com
|
3712
3712
|
normalized_host:
|
3713
3713
|
normalized_path:
|
@@ -3735,7 +3735,7 @@
|
|
3735
3735
|
about: !ruby/object:Addressable::URI
|
3736
3736
|
authority: rdfa.digitalbazaar.com
|
3737
3737
|
fragment:
|
3738
|
-
hash:
|
3738
|
+
hash: 446207460
|
3739
3739
|
host: rdfa.digitalbazaar.com
|
3740
3740
|
normalized_host:
|
3741
3741
|
normalized_path:
|
@@ -3763,7 +3763,7 @@
|
|
3763
3763
|
about: !ruby/object:Addressable::URI
|
3764
3764
|
authority: rdfa.digitalbazaar.com
|
3765
3765
|
fragment:
|
3766
|
-
hash:
|
3766
|
+
hash: 446207459
|
3767
3767
|
host: rdfa.digitalbazaar.com
|
3768
3768
|
normalized_host:
|
3769
3769
|
normalized_path:
|
@@ -3791,7 +3791,7 @@
|
|
3791
3791
|
about: !ruby/object:Addressable::URI
|
3792
3792
|
authority: rdfa.digitalbazaar.com
|
3793
3793
|
fragment:
|
3794
|
-
hash:
|
3794
|
+
hash: 446207458
|
3795
3795
|
host: rdfa.digitalbazaar.com
|
3796
3796
|
normalized_host:
|
3797
3797
|
normalized_path:
|
@@ -3819,7 +3819,7 @@
|
|
3819
3819
|
about: !ruby/object:Addressable::URI
|
3820
3820
|
authority: rdfa.digitalbazaar.com
|
3821
3821
|
fragment:
|
3822
|
-
hash:
|
3822
|
+
hash: 446207457
|
3823
3823
|
host: rdfa.digitalbazaar.com
|
3824
3824
|
normalized_host:
|
3825
3825
|
normalized_path:
|
@@ -3847,7 +3847,7 @@
|
|
3847
3847
|
about: !ruby/object:Addressable::URI
|
3848
3848
|
authority: rdfa.digitalbazaar.com
|
3849
3849
|
fragment:
|
3850
|
-
hash:
|
3850
|
+
hash: 446139816
|
3851
3851
|
host: rdfa.digitalbazaar.com
|
3852
3852
|
normalized_host:
|
3853
3853
|
normalized_path:
|
@@ -3875,7 +3875,7 @@
|
|
3875
3875
|
about: !ruby/object:Addressable::URI
|
3876
3876
|
authority: rdfa.digitalbazaar.com
|
3877
3877
|
fragment:
|
3878
|
-
hash:
|
3878
|
+
hash: 446139814
|
3879
3879
|
host: rdfa.digitalbazaar.com
|
3880
3880
|
normalized_host:
|
3881
3881
|
normalized_path:
|
@@ -3903,7 +3903,7 @@
|
|
3903
3903
|
about: !ruby/object:Addressable::URI
|
3904
3904
|
authority: rdfa.digitalbazaar.com
|
3905
3905
|
fragment:
|
3906
|
-
hash:
|
3906
|
+
hash: 446139813
|
3907
3907
|
host: rdfa.digitalbazaar.com
|
3908
3908
|
normalized_host:
|
3909
3909
|
normalized_path:
|
@@ -3931,7 +3931,7 @@
|
|
3931
3931
|
about: !ruby/object:Addressable::URI
|
3932
3932
|
authority: rdfa.digitalbazaar.com
|
3933
3933
|
fragment:
|
3934
|
-
hash:
|
3934
|
+
hash: 446139812
|
3935
3935
|
host: rdfa.digitalbazaar.com
|
3936
3936
|
normalized_host:
|
3937
3937
|
normalized_path:
|
@@ -3959,7 +3959,7 @@
|
|
3959
3959
|
about: !ruby/object:Addressable::URI
|
3960
3960
|
authority: rdfa.digitalbazaar.com
|
3961
3961
|
fragment:
|
3962
|
-
hash:
|
3962
|
+
hash: 446139811
|
3963
3963
|
host: rdfa.digitalbazaar.com
|
3964
3964
|
normalized_host:
|
3965
3965
|
normalized_path:
|
@@ -3987,7 +3987,7 @@
|
|
3987
3987
|
about: !ruby/object:Addressable::URI
|
3988
3988
|
authority: rdfa.digitalbazaar.com
|
3989
3989
|
fragment:
|
3990
|
-
hash:
|
3990
|
+
hash: 446139809
|
3991
3991
|
host: rdfa.digitalbazaar.com
|
3992
3992
|
normalized_host:
|
3993
3993
|
normalized_path:
|
@@ -4015,7 +4015,7 @@
|
|
4015
4015
|
about: !ruby/object:Addressable::URI
|
4016
4016
|
authority: rdfa.digitalbazaar.com
|
4017
4017
|
fragment:
|
4018
|
-
hash:
|
4018
|
+
hash: 446139808
|
4019
4019
|
host: rdfa.digitalbazaar.com
|
4020
4020
|
normalized_host:
|
4021
4021
|
normalized_path:
|
@@ -4043,7 +4043,7 @@
|
|
4043
4043
|
about: !ruby/object:Addressable::URI
|
4044
4044
|
authority: rdfa.digitalbazaar.com
|
4045
4045
|
fragment:
|
4046
|
-
hash:
|
4046
|
+
hash: 446072168
|
4047
4047
|
host: rdfa.digitalbazaar.com
|
4048
4048
|
normalized_host:
|
4049
4049
|
normalized_path:
|
@@ -4071,7 +4071,7 @@
|
|
4071
4071
|
about: !ruby/object:Addressable::URI
|
4072
4072
|
authority: rdfa.digitalbazaar.com
|
4073
4073
|
fragment:
|
4074
|
-
hash:
|
4074
|
+
hash: 446072167
|
4075
4075
|
host: rdfa.digitalbazaar.com
|
4076
4076
|
normalized_host:
|
4077
4077
|
normalized_path:
|
@@ -4099,7 +4099,7 @@
|
|
4099
4099
|
about: !ruby/object:Addressable::URI
|
4100
4100
|
authority: rdfa.digitalbazaar.com
|
4101
4101
|
fragment:
|
4102
|
-
hash:
|
4102
|
+
hash: 446072166
|
4103
4103
|
host: rdfa.digitalbazaar.com
|
4104
4104
|
normalized_host:
|
4105
4105
|
normalized_path:
|
@@ -4127,7 +4127,7 @@
|
|
4127
4127
|
about: !ruby/object:Addressable::URI
|
4128
4128
|
authority: rdfa.digitalbazaar.com
|
4129
4129
|
fragment:
|
4130
|
-
hash:
|
4130
|
+
hash: 446072165
|
4131
4131
|
host: rdfa.digitalbazaar.com
|
4132
4132
|
normalized_host:
|
4133
4133
|
normalized_path:
|
@@ -4155,7 +4155,7 @@
|
|
4155
4155
|
about: !ruby/object:Addressable::URI
|
4156
4156
|
authority: rdfa.digitalbazaar.com
|
4157
4157
|
fragment:
|
4158
|
-
hash:
|
4158
|
+
hash: 446072163
|
4159
4159
|
host: rdfa.digitalbazaar.com
|
4160
4160
|
normalized_host:
|
4161
4161
|
normalized_path:
|
@@ -4183,7 +4183,7 @@
|
|
4183
4183
|
about: !ruby/object:Addressable::URI
|
4184
4184
|
authority: rdfa.digitalbazaar.com
|
4185
4185
|
fragment:
|
4186
|
-
hash:
|
4186
|
+
hash: 446072162
|
4187
4187
|
host: rdfa.digitalbazaar.com
|
4188
4188
|
normalized_host:
|
4189
4189
|
normalized_path:
|
@@ -4211,7 +4211,7 @@
|
|
4211
4211
|
about: !ruby/object:Addressable::URI
|
4212
4212
|
authority: rdfa.digitalbazaar.com
|
4213
4213
|
fragment:
|
4214
|
-
hash:
|
4214
|
+
hash: 446072161
|
4215
4215
|
host: rdfa.digitalbazaar.com
|
4216
4216
|
normalized_host:
|
4217
4217
|
normalized_path:
|
@@ -4239,7 +4239,7 @@
|
|
4239
4239
|
about: !ruby/object:Addressable::URI
|
4240
4240
|
authority: rdfa.digitalbazaar.com
|
4241
4241
|
fragment:
|
4242
|
-
hash:
|
4242
|
+
hash: 446072159
|
4243
4243
|
host: rdfa.digitalbazaar.com
|
4244
4244
|
normalized_host:
|
4245
4245
|
normalized_path:
|
@@ -4267,7 +4267,7 @@
|
|
4267
4267
|
about: !ruby/object:Addressable::URI
|
4268
4268
|
authority: rdfa.digitalbazaar.com
|
4269
4269
|
fragment:
|
4270
|
-
hash:
|
4270
|
+
hash: 446004518
|
4271
4271
|
host: rdfa.digitalbazaar.com
|
4272
4272
|
normalized_host:
|
4273
4273
|
normalized_path:
|
@@ -4295,7 +4295,7 @@
|
|
4295
4295
|
about: !ruby/object:Addressable::URI
|
4296
4296
|
authority: rdfa.digitalbazaar.com
|
4297
4297
|
fragment:
|
4298
|
-
hash:
|
4298
|
+
hash: 446004516
|
4299
4299
|
host: rdfa.digitalbazaar.com
|
4300
4300
|
normalized_host:
|
4301
4301
|
normalized_path:
|
@@ -4323,7 +4323,7 @@
|
|
4323
4323
|
about: !ruby/object:Addressable::URI
|
4324
4324
|
authority: rdfa.digitalbazaar.com
|
4325
4325
|
fragment:
|
4326
|
-
hash:
|
4326
|
+
hash: 446004514
|
4327
4327
|
host: rdfa.digitalbazaar.com
|
4328
4328
|
normalized_host:
|
4329
4329
|
normalized_path:
|
@@ -4351,7 +4351,7 @@
|
|
4351
4351
|
about: !ruby/object:Addressable::URI
|
4352
4352
|
authority: rdfa.digitalbazaar.com
|
4353
4353
|
fragment:
|
4354
|
-
hash:
|
4354
|
+
hash: 446004513
|
4355
4355
|
host: rdfa.digitalbazaar.com
|
4356
4356
|
normalized_host:
|
4357
4357
|
normalized_path:
|
@@ -4379,7 +4379,7 @@
|
|
4379
4379
|
about: !ruby/object:Addressable::URI
|
4380
4380
|
authority: rdfa.digitalbazaar.com
|
4381
4381
|
fragment:
|
4382
|
-
hash:
|
4382
|
+
hash: 446004512
|
4383
4383
|
host: rdfa.digitalbazaar.com
|
4384
4384
|
normalized_host:
|
4385
4385
|
normalized_path:
|
@@ -4407,7 +4407,7 @@
|
|
4407
4407
|
about: !ruby/object:Addressable::URI
|
4408
4408
|
authority: rdfa.digitalbazaar.com
|
4409
4409
|
fragment:
|
4410
|
-
hash:
|
4410
|
+
hash: 446004511
|
4411
4411
|
host: rdfa.digitalbazaar.com
|
4412
4412
|
normalized_host:
|
4413
4413
|
normalized_path:
|
@@ -4435,7 +4435,7 @@
|
|
4435
4435
|
about: !ruby/object:Addressable::URI
|
4436
4436
|
authority: rdfa.digitalbazaar.com
|
4437
4437
|
fragment:
|
4438
|
-
hash:
|
4438
|
+
hash: 446004510
|
4439
4439
|
host: rdfa.digitalbazaar.com
|
4440
4440
|
normalized_host:
|
4441
4441
|
normalized_path:
|
@@ -4463,7 +4463,7 @@
|
|
4463
4463
|
about: !ruby/object:Addressable::URI
|
4464
4464
|
authority: rdfa.digitalbazaar.com
|
4465
4465
|
fragment:
|
4466
|
-
hash:
|
4466
|
+
hash: 445936870
|
4467
4467
|
host: rdfa.digitalbazaar.com
|
4468
4468
|
normalized_host:
|
4469
4469
|
normalized_path:
|
@@ -4491,7 +4491,7 @@
|
|
4491
4491
|
about: !ruby/object:Addressable::URI
|
4492
4492
|
authority: rdfa.digitalbazaar.com
|
4493
4493
|
fragment:
|
4494
|
-
hash:
|
4494
|
+
hash: 445936869
|
4495
4495
|
host: rdfa.digitalbazaar.com
|
4496
4496
|
normalized_host:
|
4497
4497
|
normalized_path:
|
@@ -4519,7 +4519,7 @@
|
|
4519
4519
|
about: !ruby/object:Addressable::URI
|
4520
4520
|
authority: rdfa.digitalbazaar.com
|
4521
4521
|
fragment:
|
4522
|
-
hash:
|
4522
|
+
hash: 445936868
|
4523
4523
|
host: rdfa.digitalbazaar.com
|
4524
4524
|
normalized_host:
|
4525
4525
|
normalized_path:
|
@@ -4547,7 +4547,7 @@
|
|
4547
4547
|
about: !ruby/object:Addressable::URI
|
4548
4548
|
authority: rdfa.digitalbazaar.com
|
4549
4549
|
fragment:
|
4550
|
-
hash:
|
4550
|
+
hash: 445936866
|
4551
4551
|
host: rdfa.digitalbazaar.com
|
4552
4552
|
normalized_host:
|
4553
4553
|
normalized_path:
|
@@ -4575,7 +4575,7 @@
|
|
4575
4575
|
about: !ruby/object:Addressable::URI
|
4576
4576
|
authority: rdfa.digitalbazaar.com
|
4577
4577
|
fragment:
|
4578
|
-
hash:
|
4578
|
+
hash: 445936865
|
4579
4579
|
host: rdfa.digitalbazaar.com
|
4580
4580
|
normalized_host:
|
4581
4581
|
normalized_path:
|
@@ -4603,7 +4603,7 @@
|
|
4603
4603
|
about: !ruby/object:Addressable::URI
|
4604
4604
|
authority: rdfa.digitalbazaar.com
|
4605
4605
|
fragment:
|
4606
|
-
hash:
|
4606
|
+
hash: 445936864
|
4607
4607
|
host: rdfa.digitalbazaar.com
|
4608
4608
|
normalized_host:
|
4609
4609
|
normalized_path:
|
@@ -4631,7 +4631,7 @@
|
|
4631
4631
|
about: !ruby/object:Addressable::URI
|
4632
4632
|
authority: rdfa.digitalbazaar.com
|
4633
4633
|
fragment:
|
4634
|
-
hash:
|
4634
|
+
hash: 445936863
|
4635
4635
|
host: rdfa.digitalbazaar.com
|
4636
4636
|
normalized_host:
|
4637
4637
|
normalized_path:
|
@@ -4659,7 +4659,7 @@
|
|
4659
4659
|
about: !ruby/object:Addressable::URI
|
4660
4660
|
authority: rdfa.digitalbazaar.com
|
4661
4661
|
fragment:
|
4662
|
-
hash:
|
4662
|
+
hash: 445936862
|
4663
4663
|
host: rdfa.digitalbazaar.com
|
4664
4664
|
normalized_host:
|
4665
4665
|
normalized_path:
|
@@ -4687,7 +4687,7 @@
|
|
4687
4687
|
about: !ruby/object:Addressable::URI
|
4688
4688
|
authority: rdfa.digitalbazaar.com
|
4689
4689
|
fragment:
|
4690
|
-
hash:
|
4690
|
+
hash: 445869221
|
4691
4691
|
host: rdfa.digitalbazaar.com
|
4692
4692
|
normalized_host:
|
4693
4693
|
normalized_path:
|
@@ -4715,7 +4715,7 @@
|
|
4715
4715
|
about: !ruby/object:Addressable::URI
|
4716
4716
|
authority: rdfa.digitalbazaar.com
|
4717
4717
|
fragment:
|
4718
|
-
hash:
|
4718
|
+
hash: 445869219
|
4719
4719
|
host: rdfa.digitalbazaar.com
|
4720
4720
|
normalized_host:
|
4721
4721
|
normalized_path:
|
@@ -4743,7 +4743,7 @@
|
|
4743
4743
|
about: !ruby/object:Addressable::URI
|
4744
4744
|
authority: rdfa.digitalbazaar.com
|
4745
4745
|
fragment:
|
4746
|
-
hash:
|
4746
|
+
hash: 445869217
|
4747
4747
|
host: rdfa.digitalbazaar.com
|
4748
4748
|
normalized_host:
|
4749
4749
|
normalized_path:
|
@@ -4771,7 +4771,7 @@
|
|
4771
4771
|
about: !ruby/object:Addressable::URI
|
4772
4772
|
authority: rdfa.digitalbazaar.com
|
4773
4773
|
fragment:
|
4774
|
-
hash:
|
4774
|
+
hash: 445869216
|
4775
4775
|
host: rdfa.digitalbazaar.com
|
4776
4776
|
normalized_host:
|
4777
4777
|
normalized_path:
|
@@ -4799,7 +4799,7 @@
|
|
4799
4799
|
about: !ruby/object:Addressable::URI
|
4800
4800
|
authority: rdfa.digitalbazaar.com
|
4801
4801
|
fragment:
|
4802
|
-
hash:
|
4802
|
+
hash: 445869215
|
4803
4803
|
host: rdfa.digitalbazaar.com
|
4804
4804
|
normalized_host:
|
4805
4805
|
normalized_path:
|
@@ -4827,7 +4827,7 @@
|
|
4827
4827
|
about: !ruby/object:Addressable::URI
|
4828
4828
|
authority: rdfa.digitalbazaar.com
|
4829
4829
|
fragment:
|
4830
|
-
hash:
|
4830
|
+
hash: 445869214
|
4831
4831
|
host: rdfa.digitalbazaar.com
|
4832
4832
|
normalized_host:
|
4833
4833
|
normalized_path:
|
@@ -4855,7 +4855,7 @@
|
|
4855
4855
|
about: !ruby/object:Addressable::URI
|
4856
4856
|
authority: rdfa.digitalbazaar.com
|
4857
4857
|
fragment:
|
4858
|
-
hash:
|
4858
|
+
hash: 445869213
|
4859
4859
|
host: rdfa.digitalbazaar.com
|
4860
4860
|
normalized_host:
|
4861
4861
|
normalized_path:
|
@@ -4883,7 +4883,7 @@
|
|
4883
4883
|
about: !ruby/object:Addressable::URI
|
4884
4884
|
authority: rdfa.digitalbazaar.com
|
4885
4885
|
fragment:
|
4886
|
-
hash:
|
4886
|
+
hash: 445801572
|
4887
4887
|
host: rdfa.digitalbazaar.com
|
4888
4888
|
normalized_host:
|
4889
4889
|
normalized_path:
|
@@ -4911,7 +4911,7 @@
|
|
4911
4911
|
about: !ruby/object:Addressable::URI
|
4912
4912
|
authority: rdfa.digitalbazaar.com
|
4913
4913
|
fragment:
|
4914
|
-
hash:
|
4914
|
+
hash: -350050460
|
4915
4915
|
host: rdfa.digitalbazaar.com
|
4916
4916
|
normalized_host:
|
4917
4917
|
normalized_path:
|