tidy_json 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +18 -5
- data/lib/tidy_json.rb +80 -78
- data/lib/tidy_json/version.rb +1 -1
- data/test/JsonableObject.json +1 -0
- data/test/codecov_runner.rb +16 -0
- data/test/test_tidy_json.rb +25 -9
- data/tidy_json.gemspec +3 -1
- metadata +35 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 595bfb60293652c3aec843420229bfe1c55c84a8387c7f60e5b4d5a62f47a9df
|
4
|
+
data.tar.gz: 5ac9762a852f6753ff1bb8c52a2eac9224a55455bd14c9cf817377138fe21233
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e1bbd8d6caf301d83b83793188a0d4d8620876ed7930a4d38103aea5e5e9b79106762bb1b4caf0b03828d8e4713a0e1703bebe17dd12551f6d094d389865df3
|
7
|
+
data.tar.gz: dfac6e1f21f516cd8311d3777497c0f2ab1563d4303b719c5faf2b3b7250d16ac4e4ffd429fe6abde5b67b78908dc1c3f6651854269253b747cb3b1ef10399b7
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# tidy_json
|
2
2
|
|
3
|
-
[![
|
3
|
+
[![Travis CI][travis_build_status_badge]][travis_build_status] [![Circle CI][cci_build_status_badge]][cci_build_status] [![codecov][codecov_badge]][codecov_status] [![Gem Version][gem_version_badge]][gem_version]
|
4
4
|
|
5
5
|
A mixin providing (recursive) JSON serialization and pretty printing.
|
6
6
|
|
@@ -27,21 +27,26 @@ require 'tidy_json'
|
|
27
27
|
class Jsonable
|
28
28
|
attr_reader :a, :b
|
29
29
|
def initialize
|
30
|
-
@a = { a: 'uno', f: ['I', 'II', 'III', ['i.', 'ii.', 'iii.', { 'ichi': "\u{4e00}", 'ni': "\u{4e8c}", 'san': "\u{4e09}", 'yon': "\u{56db}" }]], b: 'dos' }
|
31
|
-
@b = { z: { iv: 4, ii: 'duos', iii: 3, i: 'one' }, b: ['two', 3, '<abbr title="four">IV</abbr>'], a: 1, f: %w[x y z] }
|
30
|
+
@a = { a: 'uno', f: ['I', 'II', 'III', ['i.', 'ii.', 'iii.', { 'ichi': "\u{4e00}", 'ni': "\u{4e8c}", 'san': "\u{4e09}", 'yon': "\u{56db}" }]], c: {}, b: 'dos', e: [[]] }
|
31
|
+
@b = { z: { iv: 4, ii: 'duos', iii: 3, i: 'one' }, b: ['two', 3, '<abbr title="four">IV</abbr>'], a: 1, g: [{ none: [] }], f: %w[x y z] }
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
35
|
my_jsonable = Jsonable.new
|
36
|
+
# => #<Jsonable:0x0055b2aa0ff660 @a={:a=>"uno", :f=>["I", "II", "III", ["i.", "ii.", "iii.", {:ichi=>"一", :ni=>"二", :san=>"三", :yon=>"四"}]], :c=>{}, :b=>"dos", :e=>[[]]}, @b={:z=>{:iv=>4, :ii=>"duos", :iii=>3, :i=>"one"}, :b=>["two", 3, "<abbr title=\"four\">IV</abbr>"], :a=>1, :g=>[{:none=>[]}], :f=>["x", "y", "z"]}>
|
36
37
|
|
37
38
|
JSON.parse my_jsonable.stringify
|
38
|
-
# => {"class"=>"Jsonable", "a"=>{"a"=>"uno", "f"=>["I", "II", "III", ["i.", "ii.", "iii.", {"ichi"=>"一", "ni"=>"二", "san"=>"三", "yon"=>"四"}]], "b"=>"dos"}, "b"=>{"z"=>{"iv"=>4, "ii"=>"duos", "iii"=>3, "i"=>"one"}, "b"=>["two", 3, "<abbr title=\"four\">IV</abbr>"], "a"=>1, "f"=>["x", "y", "z"]}}
|
39
|
+
# => {"class"=>"Jsonable", "a"=>{"a"=>"uno", "f"=>["I", "II", "III", ["i.", "ii.", "iii.", {"ichi"=>"一", "ni"=>"二", "san"=>"三", "yon"=>"四"}]], "c"=>{}, "b"=>"dos", "e"=>[[]]}, "b"=>{"z"=>{"iv"=>4, "ii"=>"duos", "iii"=>3, "i"=>"one"}, "b"=>["two", 3, "<abbr title=\"four\">IV</abbr>"], "a"=>1, "g"=>[{"none"=>[]}], "f"=>["x", "y", "z"]}}
|
39
40
|
|
40
41
|
puts my_jsonable.to_tidy_json(indent: 4, sort: true)
|
41
42
|
# {
|
42
43
|
# "a": {
|
43
44
|
# "a": "uno",
|
44
45
|
# "b": "dos",
|
46
|
+
# "c": {},
|
47
|
+
# "e": [
|
48
|
+
# []
|
49
|
+
# ],
|
45
50
|
# "f": [
|
46
51
|
# "I",
|
47
52
|
# "II",
|
@@ -71,6 +76,11 @@ puts my_jsonable.to_tidy_json(indent: 4, sort: true)
|
|
71
76
|
# "y",
|
72
77
|
# "z"
|
73
78
|
# ],
|
79
|
+
# "g": [
|
80
|
+
# {
|
81
|
+
# "none": []
|
82
|
+
# }
|
83
|
+
# ],
|
74
84
|
# "z": {
|
75
85
|
# "i": "one",
|
76
86
|
# "ii": "duos",
|
@@ -97,8 +107,11 @@ puts my_jsonable.to_tidy_json(indent: 4, sort: true)
|
|
97
107
|
|
98
108
|
|
99
109
|
[travis_build_status]: https://travis-ci.com/rdipardo/tidy_json
|
110
|
+
[travis_build_status_badge]: https://travis-ci.com/rdipardo/tidy_json.svg?branch=master
|
100
111
|
[cci_build_status]: https://circleci.com/gh/rdipardo/tidy_json/tree/master
|
101
112
|
[cci_build_status_badge]: https://circleci.com/gh/rdipardo/tidy_json.svg?style=svg
|
102
|
-
[
|
113
|
+
[codecov_status]: https://codecov.io/gh/rdipardo/tidy_json
|
114
|
+
[codecov_badge]: https://codecov.io/gh/rdipardo/tidy_json/badge.svg
|
103
115
|
[gem_version]: https://badge.fury.io/rb/tidy_json
|
104
116
|
[gem_version_badge]: https://badge.fury.io/rb/tidy_json.svg
|
117
|
+
|
data/lib/tidy_json.rb
CHANGED
@@ -40,12 +40,7 @@ module TidyJson
|
|
40
40
|
str << "]\n"
|
41
41
|
end
|
42
42
|
|
43
|
-
|
44
|
-
str = str.sub(extra_comma[:trail],
|
45
|
-
extra_comma[:trail].slice(1, str.length.pred))
|
46
|
-
end
|
47
|
-
|
48
|
-
str
|
43
|
+
formatter.trim str
|
49
44
|
end
|
50
45
|
|
51
46
|
##
|
@@ -100,10 +95,10 @@ module TidyJson
|
|
100
95
|
# @option (see Formatter#initialize)
|
101
96
|
# @return [String] A pretty-printed JSON string.
|
102
97
|
def to_tidy_json(opts = {})
|
103
|
-
if
|
104
|
-
TidyJson.tidy(JSON.parse(stringify), opts)
|
105
|
-
else
|
98
|
+
if instance_variables.empty?
|
106
99
|
TidyJson.tidy(self, opts)
|
100
|
+
else
|
101
|
+
TidyJson.tidy(JSON.parse(stringify), opts)
|
107
102
|
end
|
108
103
|
end
|
109
104
|
|
@@ -139,19 +134,14 @@ module TidyJson
|
|
139
134
|
|
140
135
|
File.open("#{out}.json", 'w') do |f|
|
141
136
|
path =
|
142
|
-
f << if
|
143
|
-
|
144
|
-
|
145
|
-
end
|
146
|
-
else
|
147
|
-
if opts[:tidy] then to_tidy_json(opts)
|
148
|
-
else to_json
|
149
|
-
end
|
137
|
+
f << if opts[:tidy] then to_tidy_json(opts)
|
138
|
+
elsif instance_variables.empty? then to_json
|
139
|
+
else stringify
|
150
140
|
end
|
151
141
|
end
|
152
142
|
|
153
143
|
path&.path
|
154
|
-
rescue IOError, RuntimeError, NoMethodError => e
|
144
|
+
rescue Errno::ENOENT, Errno::EACCES, IOError, RuntimeError, NoMethodError => e
|
155
145
|
warn "#{__FILE__}.#{__LINE__}: #{e.message}"
|
156
146
|
end
|
157
147
|
|
@@ -209,13 +199,16 @@ module TidyJson
|
|
209
199
|
val.each do |elem|
|
210
200
|
i = val.index(elem)
|
211
201
|
|
212
|
-
# member is a multi-dimensional
|
213
|
-
if elem.
|
202
|
+
# member is a multi-dimensional collection
|
203
|
+
if elem.respond_to?(:each)
|
214
204
|
nested = []
|
215
205
|
elem.each do |e|
|
216
|
-
j = elem.
|
206
|
+
j = if elem.respond_to?(:key)
|
207
|
+
elem.key(e)
|
208
|
+
else elem.index(e)
|
209
|
+
end
|
217
210
|
|
218
|
-
# nested
|
211
|
+
# nested element is a class object
|
219
212
|
if !e.instance_variables.empty?
|
220
213
|
json_hash[key][j] = { class: e.class.name }
|
221
214
|
|
@@ -225,10 +218,15 @@ module TidyJson
|
|
225
218
|
# some kind of collection?
|
226
219
|
elsif e.respond_to?(:each)
|
227
220
|
temp = []
|
228
|
-
e.each
|
221
|
+
e.each do |el|
|
222
|
+
temp << if el.instance_variables.empty? then el
|
223
|
+
else JSON.parse(el.stringify)
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
229
227
|
nested << temp
|
230
228
|
|
231
|
-
#
|
229
|
+
# scalar type
|
232
230
|
else nested << e
|
233
231
|
end
|
234
232
|
end
|
@@ -237,25 +235,12 @@ module TidyJson
|
|
237
235
|
json_hash[key] << nested
|
238
236
|
|
239
237
|
# member is a flat array
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
# leverage 1:1 mapping of Hash:object
|
247
|
-
elsif elem.instance_of?(Hash)
|
248
|
-
json_hash[key] = val
|
249
|
-
|
250
|
-
# some kind of collection
|
251
|
-
elsif elem.respond_to?(:each)
|
252
|
-
temp = []
|
253
|
-
elem.each { |e| temp << e }
|
254
|
-
json_hash[key] << temp
|
255
|
-
|
256
|
-
# primitive type
|
257
|
-
else json_hash[key] << elem
|
258
|
-
end
|
238
|
+
elsif !elem.instance_variables.empty? # class object?
|
239
|
+
json_hash[key] << { class: elem.class.name }
|
240
|
+
serialize(elem, json_hash[key][i])
|
241
|
+
|
242
|
+
# scalar type
|
243
|
+
else json_hash[key] << elem
|
259
244
|
end
|
260
245
|
end
|
261
246
|
# ~iteration of top-level array elements
|
@@ -273,22 +258,19 @@ module TidyJson
|
|
273
258
|
end
|
274
259
|
|
275
260
|
# process uncollected class members
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
json_hash[key] = { class: val.class.name }
|
280
|
-
serialize(val, json_hash[key])
|
261
|
+
elsif !val.instance_variables.empty? # member is a class object
|
262
|
+
json_hash[key] = { class: val.class.name }
|
263
|
+
serialize(val, json_hash[key])
|
281
264
|
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
265
|
+
# member belongs to a contained object
|
266
|
+
elsif json_hash.key?(key) &&
|
267
|
+
!json_hash[key].has_val?(val) &&
|
268
|
+
json_hash[key].instance_of?(Hash)
|
286
269
|
|
287
|
-
|
270
|
+
json_hash[key][key] = val
|
288
271
|
|
289
|
-
|
290
|
-
|
291
|
-
end
|
272
|
+
# scalar member
|
273
|
+
else json_hash[key] = val
|
292
274
|
end
|
293
275
|
rescue NoMethodError
|
294
276
|
# we expected an array to behave like a hash, or vice-versa
|
@@ -352,36 +334,35 @@ module TidyJson
|
|
352
334
|
str = ''
|
353
335
|
indent = @indent
|
354
336
|
|
355
|
-
# BUG: arrays containing repeated elements may produce a trailing comma
|
356
|
-
# since Array#index returns the first occurance; in this case the last
|
357
|
-
# element can't be detected by index; a temporary hack in TidyJson::tidy
|
358
|
-
# attempts to correct for this
|
359
337
|
is_last = (obj.length <= 1) ||
|
360
338
|
(obj.length > 1 &&
|
361
|
-
|
362
|
-
|
363
|
-
|
339
|
+
(obj.instance_of?(Array) &&
|
340
|
+
!(node === obj.first) &&
|
341
|
+
(obj.size.pred == obj.rindex(node))))
|
364
342
|
|
365
343
|
if node.instance_of?(Array)
|
366
|
-
str <<
|
344
|
+
str << '['
|
345
|
+
str << "\n" unless node.empty?
|
367
346
|
|
368
347
|
# format array elements
|
369
348
|
node.each do |elem|
|
370
349
|
if elem.instance_of?(Hash)
|
371
|
-
str << "#{
|
350
|
+
str << "#{indent * 2}{"
|
351
|
+
str << "\n" unless elem.empty?
|
372
352
|
|
373
353
|
elem.each_with_index do |inner_h, h_idx|
|
374
|
-
str << "#{
|
354
|
+
str << "#{indent * 3}\"#{inner_h.first}\": "
|
375
355
|
str << node_to_str(inner_h.last, 4)
|
376
356
|
str << ', ' unless h_idx == elem.to_a.length.pred
|
377
357
|
str << "\n"
|
378
358
|
end
|
379
359
|
|
380
|
-
str <<
|
360
|
+
str << (indent * 2).to_s unless elem.empty?
|
361
|
+
str << '}'
|
381
362
|
str << ',' unless node.index(elem) == node.length.pred
|
382
363
|
str << "\n" unless node.index(elem) == node.length.pred
|
383
364
|
|
384
|
-
# element a
|
365
|
+
# element a scalar, or a nested array
|
385
366
|
else
|
386
367
|
is_nested_array = elem.instance_of?(Array) &&
|
387
368
|
elem.any? { |e| e.instance_of?(Array) }
|
@@ -395,10 +376,12 @@ module TidyJson
|
|
395
376
|
end
|
396
377
|
end
|
397
378
|
|
398
|
-
str << "\n#{indent}
|
379
|
+
str << "\n#{indent}" unless node.empty?
|
380
|
+
str << "]\n"
|
399
381
|
|
400
382
|
elsif node.instance_of?(Hash)
|
401
|
-
str <<
|
383
|
+
str << '{'
|
384
|
+
str << "\n" unless node.empty?
|
402
385
|
|
403
386
|
# format elements as key-value pairs
|
404
387
|
node.each_with_index do |h, idx|
|
@@ -410,7 +393,8 @@ module TidyJson
|
|
410
393
|
"#{indent * 2}\"#{h.first}\": "
|
411
394
|
end
|
412
395
|
|
413
|
-
str << key <<
|
396
|
+
str << key << '{'
|
397
|
+
str << "\n" unless h.last.empty?
|
414
398
|
|
415
399
|
h.last.each_with_index do |inner_h, inner_h_idx|
|
416
400
|
str << "#{indent * 3}\"#{inner_h.first}\": "
|
@@ -418,9 +402,10 @@ module TidyJson
|
|
418
402
|
str << ",\n" unless inner_h_idx == h.last.to_a.length.pred
|
419
403
|
end
|
420
404
|
|
421
|
-
str << "\n#{indent * 2}
|
405
|
+
str << "\n#{indent * 2}" unless h.last.empty?
|
406
|
+
str << '}'
|
422
407
|
|
423
|
-
# format
|
408
|
+
# format scalar values
|
424
409
|
else
|
425
410
|
str << "#{indent * 2}\"#{h.first}\": " << node_to_str(h.last)
|
426
411
|
end
|
@@ -428,20 +413,21 @@ module TidyJson
|
|
428
413
|
str << ",\n" unless idx == node.to_a.length.pred
|
429
414
|
end
|
430
415
|
|
431
|
-
str << "\n#{indent}
|
416
|
+
str << "\n#{indent}" unless node.empty?
|
417
|
+
str << '}'
|
432
418
|
str << ', ' unless is_last
|
433
419
|
str << "\n"
|
434
420
|
|
435
|
-
#
|
421
|
+
# scalars
|
436
422
|
else
|
437
423
|
str << node_to_str(node)
|
438
424
|
str << ', ' unless is_last
|
439
425
|
str << "\n"
|
440
426
|
end
|
441
427
|
|
442
|
-
str.gsub(/(#{indent})+[\n\r]+/, '')
|
443
|
-
|
444
|
-
|
428
|
+
trim str.gsub(/(#{indent})+[\n\r]+/, '')
|
429
|
+
.gsub(/\}\,+/, '},')
|
430
|
+
.gsub(/\]\,+/, '],')
|
445
431
|
end
|
446
432
|
# ~Formatter#format_node
|
447
433
|
|
@@ -485,6 +471,22 @@ module TidyJson
|
|
485
471
|
graft.strip
|
486
472
|
end
|
487
473
|
# ~Formatter#node_to_str
|
474
|
+
|
475
|
+
##
|
476
|
+
# Removes any trailing comma from serialized object members.
|
477
|
+
#
|
478
|
+
# @param node [String] A serialized object member.
|
479
|
+
# @return [String] A copy of +node+ without a trailing comma.
|
480
|
+
def trim(node)
|
481
|
+
if (extra_comma = /(?<trail>,\s*[\]\}])$/.match(node))
|
482
|
+
node.sub(extra_comma[:trail],
|
483
|
+
extra_comma[:trail]
|
484
|
+
.slice(1, node.length.pred)
|
485
|
+
.sub(/^\s/, ''))
|
486
|
+
else node
|
487
|
+
end
|
488
|
+
end
|
489
|
+
# ~Formatter#trim
|
488
490
|
end
|
489
491
|
# ~Formatter
|
490
492
|
|
data/lib/tidy_json/version.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]],"cinque":{"ichi":"一","ni":"二","san":"三","yon":"四"},"sei":{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]],"five":{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}}],"e":{}}},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}}},"a":[{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]],"five":{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}}],"e":{}}},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}},[13,14,15,5.6],"k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"c":null,"d":[],"e":{}}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
if ENV['COVERAGE']
|
4
|
+
begin
|
5
|
+
require 'simplecov'
|
6
|
+
SimpleCov.start
|
7
|
+
SimpleCov.command_name 'Unit Tests'
|
8
|
+
|
9
|
+
if ENV['CI']
|
10
|
+
require 'codecov'
|
11
|
+
SimpleCov.formatter = SimpleCov::Formatter::Codecov
|
12
|
+
end
|
13
|
+
rescue LoadError
|
14
|
+
warn 'Can''t locate coverage drivers! Try running: `gem install` first.'
|
15
|
+
end
|
16
|
+
end
|
data/test/test_tidy_json.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative 'codecov_runner'
|
3
4
|
require 'test/unit'
|
4
5
|
require 'tidy_json'
|
5
6
|
|
@@ -7,22 +8,29 @@ require 'tidy_json'
|
|
7
8
|
# Tests.
|
8
9
|
#
|
9
10
|
class JsonableObject
|
10
|
-
attr_reader(:h, :a)
|
11
|
+
attr_reader(:h, :a, :d, :e)
|
12
|
+
attr_writer :c
|
11
13
|
|
12
14
|
def initialize
|
13
15
|
@h = { one: 'uno', two: 'dos', three: %w[eine zwei drei], cuatro: ['I', 'II', 'III', ['i.', 'ii.', 'iii.', 'iv.']] }
|
14
16
|
@a = ['k', 'l', %w[M N O P], 'q', 'r', 's', [10, 456, ['<abbr title="Reel 2, Dialog Track 2">R2D2</abbr>', 'R', 2, 'D', ['two']]], 'u', 'v', 'x', 'y', %w[Z AB]]
|
17
|
+
@c = { 'visible': false }
|
18
|
+
@d = []
|
19
|
+
@e = {}
|
15
20
|
end
|
16
21
|
end
|
17
22
|
|
18
23
|
class TidyJsonTest < Test::Unit::TestCase
|
19
24
|
@@t = JsonableObject.new
|
20
|
-
|
21
|
-
|
25
|
+
t2 = JsonableObject.new
|
26
|
+
t3 = JsonableObject.new
|
27
|
+
|
28
|
+
100.times { |_| t3.d << JsonableObject.new }
|
29
|
+
t2.h[:five] = t3
|
30
|
+
|
22
31
|
@@t.h[:cinque] = { 'ichi' => "\u{4e00}", 'ni' => "\u{4e8c}", 'san' => "\u{4e09}", 'yon' => "\u{56db}" }
|
23
|
-
@@t.h[:sei] =
|
24
|
-
@@
|
25
|
-
@@t.a.unshift([@@t2, 13, 14, 15, 5.6])
|
32
|
+
@@t.h[:sei] = t2
|
33
|
+
@@t.a.unshift([t2, 13, 14, 15, 5.6])
|
26
34
|
|
27
35
|
def test_version_number
|
28
36
|
refute_nil ::TidyJson::VERSION
|
@@ -73,11 +81,15 @@ class TidyJsonTest < Test::Unit::TestCase
|
|
73
81
|
assert_equal({}.to_tidy_json, "{\n}\n")
|
74
82
|
assert_equal([].to_tidy_json, "[\n]\n")
|
75
83
|
assert_equal(Object.new.to_tidy_json, '')
|
76
|
-
assert_equal(JsonableObject.new.to_tidy_json.length,
|
84
|
+
assert_equal(JsonableObject.new.to_tidy_json.length, 684)
|
77
85
|
end
|
78
86
|
|
79
87
|
def test_stringify_instance
|
80
|
-
|
88
|
+
File.open("#{__dir__}/JsonableObject.json", 'r') do |json|
|
89
|
+
assert_equal(@@t.stringify, json.read.strip)
|
90
|
+
end
|
91
|
+
rescue Errno::ENOENT, Errno::EACCES, IOError => e
|
92
|
+
flunk "#{__FILE__}.#{__LINE__}: #{e.message}"
|
81
93
|
end
|
82
94
|
|
83
95
|
def test_writers
|
@@ -93,11 +105,15 @@ class TidyJsonTest < Test::Unit::TestCase
|
|
93
105
|
end
|
94
106
|
|
95
107
|
pretty_output = \
|
96
|
-
json_array.write_json('prettified', tidy: true, sort: true, indent:
|
108
|
+
json_array.write_json('prettified', tidy: true, sort: true, indent: 4)
|
109
|
+
|
97
110
|
assert(File.exist?(pretty_output))
|
111
|
+
|
98
112
|
assert_nothing_thrown 'Formatted JSON should be valid' do
|
99
113
|
File.open(pretty_output, 'r') { |f| JSON.parse(f.read) }
|
100
114
|
end
|
115
|
+
|
116
|
+
assert_nil json_array.write_json('/invalid/file/name/')
|
101
117
|
end
|
102
118
|
|
103
119
|
def test_indent_bounds_checking
|
data/tidy_json.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.authors = ['Robert Di Pardo']
|
13
13
|
spec.email = 'dipardo.r@gmail.com'
|
14
14
|
spec.homepage = 'https://github.com/rdipardo/tidy_json'
|
15
|
-
spec.metadata = { 'documentation_uri' => 'https://rubydoc.org/github/rdipardo/tidy_json
|
15
|
+
spec.metadata = { 'documentation_uri' => 'https://rubydoc.org/github/rdipardo/tidy_json' }
|
16
16
|
spec.license = 'MIT'
|
17
17
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
18
18
|
['.yardopts'].concat(`git ls-files -z`.split("\x0").reject { |f| f.match(/^(\.[\w+\.]+|test|spec|features)/) })
|
@@ -21,6 +21,8 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.require_paths = ['lib']
|
22
22
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.3')
|
23
23
|
spec.add_runtime_dependency 'json', '~> 2.2'
|
24
|
+
spec.add_development_dependency 'codecov', '~>0.2.5'
|
25
|
+
spec.add_development_dependency 'simplecov', '~> 0.17.1'
|
24
26
|
spec.add_development_dependency 'test-unit', '~> 3.3'
|
25
27
|
spec.add_development_dependency 'yard', '~> 0.9'
|
26
28
|
spec.rdoc_options = ['-x test/*']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tidy_json
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Di Pardo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -24,6 +24,34 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '2.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: codecov
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.2.5
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.2.5
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: simplecov
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.17.1
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.17.1
|
27
55
|
- !ruby/object:Gem::Dependency
|
28
56
|
name: test-unit
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +94,15 @@ files:
|
|
66
94
|
- lib/tidy_json.rb
|
67
95
|
- lib/tidy_json/dedication.rb
|
68
96
|
- lib/tidy_json/version.rb
|
97
|
+
- test/JsonableObject.json
|
98
|
+
- test/codecov_runner.rb
|
69
99
|
- test/test_tidy_json.rb
|
70
100
|
- tidy_json.gemspec
|
71
101
|
homepage: https://github.com/rdipardo/tidy_json
|
72
102
|
licenses:
|
73
103
|
- MIT
|
74
104
|
metadata:
|
75
|
-
documentation_uri: https://rubydoc.org/github/rdipardo/tidy_json
|
105
|
+
documentation_uri: https://rubydoc.org/github/rdipardo/tidy_json
|
76
106
|
post_install_message: |2+
|
77
107
|
|
78
108
|
....................................................
|
@@ -107,4 +137,6 @@ signing_key:
|
|
107
137
|
specification_version: 4
|
108
138
|
summary: Serialize any Ruby object as readable JSON
|
109
139
|
test_files:
|
140
|
+
- test/JsonableObject.json
|
110
141
|
- test/test_tidy_json.rb
|
142
|
+
- test/codecov_runner.rb
|