libxml-ruby 2.9.0-x64-mingw32

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.
Files changed (211) hide show
  1. checksums.yaml +7 -0
  2. data/HISTORY +790 -0
  3. data/LICENSE +21 -0
  4. data/MANIFEST +166 -0
  5. data/README.rdoc +184 -0
  6. data/Rakefile +81 -0
  7. data/ext/libxml/extconf.h +4 -0
  8. data/ext/libxml/extconf.rb +57 -0
  9. data/ext/libxml/libxml.c +80 -0
  10. data/ext/libxml/libxml_ruby.def +35 -0
  11. data/ext/libxml/ruby_libxml.h +75 -0
  12. data/ext/libxml/ruby_xml.c +977 -0
  13. data/ext/libxml/ruby_xml.h +20 -0
  14. data/ext/libxml/ruby_xml_attr.c +333 -0
  15. data/ext/libxml/ruby_xml_attr.h +12 -0
  16. data/ext/libxml/ruby_xml_attr_decl.c +153 -0
  17. data/ext/libxml/ruby_xml_attr_decl.h +11 -0
  18. data/ext/libxml/ruby_xml_attributes.c +275 -0
  19. data/ext/libxml/ruby_xml_attributes.h +15 -0
  20. data/ext/libxml/ruby_xml_cbg.c +85 -0
  21. data/ext/libxml/ruby_xml_document.c +1133 -0
  22. data/ext/libxml/ruby_xml_document.h +11 -0
  23. data/ext/libxml/ruby_xml_dtd.c +261 -0
  24. data/ext/libxml/ruby_xml_dtd.h +9 -0
  25. data/ext/libxml/ruby_xml_encoding.c +262 -0
  26. data/ext/libxml/ruby_xml_encoding.h +19 -0
  27. data/ext/libxml/ruby_xml_error.c +996 -0
  28. data/ext/libxml/ruby_xml_error.h +12 -0
  29. data/ext/libxml/ruby_xml_html_parser.c +92 -0
  30. data/ext/libxml/ruby_xml_html_parser.h +10 -0
  31. data/ext/libxml/ruby_xml_html_parser_context.c +337 -0
  32. data/ext/libxml/ruby_xml_html_parser_context.h +10 -0
  33. data/ext/libxml/ruby_xml_html_parser_options.c +46 -0
  34. data/ext/libxml/ruby_xml_html_parser_options.h +10 -0
  35. data/ext/libxml/ruby_xml_input_cbg.c +191 -0
  36. data/ext/libxml/ruby_xml_input_cbg.h +20 -0
  37. data/ext/libxml/ruby_xml_io.c +52 -0
  38. data/ext/libxml/ruby_xml_io.h +10 -0
  39. data/ext/libxml/ruby_xml_namespace.c +153 -0
  40. data/ext/libxml/ruby_xml_namespace.h +10 -0
  41. data/ext/libxml/ruby_xml_namespaces.c +293 -0
  42. data/ext/libxml/ruby_xml_namespaces.h +9 -0
  43. data/ext/libxml/ruby_xml_node.c +1446 -0
  44. data/ext/libxml/ruby_xml_node.h +11 -0
  45. data/ext/libxml/ruby_xml_parser.c +94 -0
  46. data/ext/libxml/ruby_xml_parser.h +12 -0
  47. data/ext/libxml/ruby_xml_parser_context.c +999 -0
  48. data/ext/libxml/ruby_xml_parser_context.h +10 -0
  49. data/ext/libxml/ruby_xml_parser_options.c +66 -0
  50. data/ext/libxml/ruby_xml_parser_options.h +12 -0
  51. data/ext/libxml/ruby_xml_reader.c +1226 -0
  52. data/ext/libxml/ruby_xml_reader.h +17 -0
  53. data/ext/libxml/ruby_xml_relaxng.c +110 -0
  54. data/ext/libxml/ruby_xml_relaxng.h +10 -0
  55. data/ext/libxml/ruby_xml_sax2_handler.c +326 -0
  56. data/ext/libxml/ruby_xml_sax2_handler.h +10 -0
  57. data/ext/libxml/ruby_xml_sax_parser.c +120 -0
  58. data/ext/libxml/ruby_xml_sax_parser.h +10 -0
  59. data/ext/libxml/ruby_xml_schema.c +300 -0
  60. data/ext/libxml/ruby_xml_schema.h +809 -0
  61. data/ext/libxml/ruby_xml_schema_attribute.c +109 -0
  62. data/ext/libxml/ruby_xml_schema_attribute.h +15 -0
  63. data/ext/libxml/ruby_xml_schema_element.c +94 -0
  64. data/ext/libxml/ruby_xml_schema_element.h +14 -0
  65. data/ext/libxml/ruby_xml_schema_facet.c +52 -0
  66. data/ext/libxml/ruby_xml_schema_facet.h +13 -0
  67. data/ext/libxml/ruby_xml_schema_type.c +259 -0
  68. data/ext/libxml/ruby_xml_schema_type.h +9 -0
  69. data/ext/libxml/ruby_xml_version.h +9 -0
  70. data/ext/libxml/ruby_xml_writer.c +1136 -0
  71. data/ext/libxml/ruby_xml_writer.h +10 -0
  72. data/ext/libxml/ruby_xml_xinclude.c +16 -0
  73. data/ext/libxml/ruby_xml_xinclude.h +11 -0
  74. data/ext/libxml/ruby_xml_xpath.c +188 -0
  75. data/ext/libxml/ruby_xml_xpath.h +13 -0
  76. data/ext/libxml/ruby_xml_xpath_context.c +360 -0
  77. data/ext/libxml/ruby_xml_xpath_context.h +9 -0
  78. data/ext/libxml/ruby_xml_xpath_expression.c +81 -0
  79. data/ext/libxml/ruby_xml_xpath_expression.h +10 -0
  80. data/ext/libxml/ruby_xml_xpath_object.c +335 -0
  81. data/ext/libxml/ruby_xml_xpath_object.h +17 -0
  82. data/ext/libxml/ruby_xml_xpointer.c +99 -0
  83. data/ext/libxml/ruby_xml_xpointer.h +11 -0
  84. data/ext/vc/libxml_ruby.sln +26 -0
  85. data/lib/2.3/libxml_ruby.so +0 -0
  86. data/lib/libs/libiconv-2.dll +0 -0
  87. data/lib/libs/libxml2-2.dll +0 -0
  88. data/lib/libs/zlib1.dll +0 -0
  89. data/lib/libxml.rb +35 -0
  90. data/lib/libxml/attr.rb +123 -0
  91. data/lib/libxml/attr_decl.rb +80 -0
  92. data/lib/libxml/attributes.rb +14 -0
  93. data/lib/libxml/document.rb +194 -0
  94. data/lib/libxml/error.rb +95 -0
  95. data/lib/libxml/hpricot.rb +78 -0
  96. data/lib/libxml/html_parser.rb +96 -0
  97. data/lib/libxml/namespace.rb +62 -0
  98. data/lib/libxml/namespaces.rb +38 -0
  99. data/lib/libxml/node.rb +399 -0
  100. data/lib/libxml/ns.rb +22 -0
  101. data/lib/libxml/parser.rb +367 -0
  102. data/lib/libxml/properties.rb +23 -0
  103. data/lib/libxml/reader.rb +29 -0
  104. data/lib/libxml/sax_callbacks.rb +180 -0
  105. data/lib/libxml/sax_parser.rb +58 -0
  106. data/lib/libxml/schema.rb +67 -0
  107. data/lib/libxml/schema/attribute.rb +19 -0
  108. data/lib/libxml/schema/element.rb +27 -0
  109. data/lib/libxml/schema/type.rb +29 -0
  110. data/lib/libxml/tree.rb +29 -0
  111. data/lib/libxml/xpath_object.rb +16 -0
  112. data/lib/xml.rb +14 -0
  113. data/lib/xml/libxml.rb +10 -0
  114. data/libxml-ruby.gemspec +47 -0
  115. data/script/benchmark/depixelate +634 -0
  116. data/script/benchmark/hamlet.xml +9055 -0
  117. data/script/benchmark/parsecount +170 -0
  118. data/script/benchmark/sock_entries.xml +507 -0
  119. data/script/benchmark/throughput +41 -0
  120. data/script/test +6 -0
  121. data/setup.rb +1585 -0
  122. data/test/c14n/given/doc.dtd +1 -0
  123. data/test/c14n/given/example-1.xml +14 -0
  124. data/test/c14n/given/example-2.xml +11 -0
  125. data/test/c14n/given/example-3.xml +18 -0
  126. data/test/c14n/given/example-4.xml +9 -0
  127. data/test/c14n/given/example-5.xml +12 -0
  128. data/test/c14n/given/example-6.xml +2 -0
  129. data/test/c14n/given/example-7.xml +11 -0
  130. data/test/c14n/given/example-8.xml +11 -0
  131. data/test/c14n/given/example-8.xpath +10 -0
  132. data/test/c14n/given/world.txt +1 -0
  133. data/test/c14n/result/1-1-without-comments/example-1 +4 -0
  134. data/test/c14n/result/1-1-without-comments/example-2 +11 -0
  135. data/test/c14n/result/1-1-without-comments/example-3 +14 -0
  136. data/test/c14n/result/1-1-without-comments/example-4 +9 -0
  137. data/test/c14n/result/1-1-without-comments/example-5 +3 -0
  138. data/test/c14n/result/1-1-without-comments/example-6 +1 -0
  139. data/test/c14n/result/1-1-without-comments/example-7 +1 -0
  140. data/test/c14n/result/1-1-without-comments/example-8 +1 -0
  141. data/test/c14n/result/with-comments/example-1 +6 -0
  142. data/test/c14n/result/with-comments/example-2 +11 -0
  143. data/test/c14n/result/with-comments/example-3 +14 -0
  144. data/test/c14n/result/with-comments/example-4 +9 -0
  145. data/test/c14n/result/with-comments/example-5 +4 -0
  146. data/test/c14n/result/with-comments/example-6 +1 -0
  147. data/test/c14n/result/with-comments/example-7 +1 -0
  148. data/test/c14n/result/without-comments/example-1 +4 -0
  149. data/test/c14n/result/without-comments/example-2 +11 -0
  150. data/test/c14n/result/without-comments/example-3 +14 -0
  151. data/test/c14n/result/without-comments/example-4 +9 -0
  152. data/test/c14n/result/without-comments/example-5 +3 -0
  153. data/test/c14n/result/without-comments/example-6 +1 -0
  154. data/test/c14n/result/without-comments/example-7 +1 -0
  155. data/test/model/atom.xml +13 -0
  156. data/test/model/bands.iso-8859-1.xml +5 -0
  157. data/test/model/bands.utf-8.xml +5 -0
  158. data/test/model/bands.xml +5 -0
  159. data/test/model/books.xml +154 -0
  160. data/test/model/merge_bug_data.xml +58 -0
  161. data/test/model/ruby-lang.html +238 -0
  162. data/test/model/rubynet.xml +79 -0
  163. data/test/model/rubynet_project +1 -0
  164. data/test/model/shiporder.rnc +28 -0
  165. data/test/model/shiporder.rng +86 -0
  166. data/test/model/shiporder.xml +23 -0
  167. data/test/model/shiporder.xsd +40 -0
  168. data/test/model/soap.xml +27 -0
  169. data/test/model/xinclude.xml +5 -0
  170. data/test/tc_attr.rb +181 -0
  171. data/test/tc_attr_decl.rb +132 -0
  172. data/test/tc_attributes.rb +142 -0
  173. data/test/tc_canonicalize.rb +124 -0
  174. data/test/tc_deprecated_require.rb +12 -0
  175. data/test/tc_document.rb +125 -0
  176. data/test/tc_document_write.rb +195 -0
  177. data/test/tc_dtd.rb +128 -0
  178. data/test/tc_encoding.rb +126 -0
  179. data/test/tc_encoding_sax.rb +115 -0
  180. data/test/tc_error.rb +179 -0
  181. data/test/tc_html_parser.rb +161 -0
  182. data/test/tc_html_parser_context.rb +23 -0
  183. data/test/tc_namespace.rb +61 -0
  184. data/test/tc_namespaces.rb +209 -0
  185. data/test/tc_node.rb +215 -0
  186. data/test/tc_node_cdata.rb +50 -0
  187. data/test/tc_node_comment.rb +32 -0
  188. data/test/tc_node_copy.rb +41 -0
  189. data/test/tc_node_edit.rb +174 -0
  190. data/test/tc_node_pi.rb +39 -0
  191. data/test/tc_node_text.rb +70 -0
  192. data/test/tc_node_write.rb +107 -0
  193. data/test/tc_node_xlink.rb +28 -0
  194. data/test/tc_parser.rb +375 -0
  195. data/test/tc_parser_context.rb +204 -0
  196. data/test/tc_properties.rb +38 -0
  197. data/test/tc_reader.rb +399 -0
  198. data/test/tc_relaxng.rb +53 -0
  199. data/test/tc_sax_parser.rb +319 -0
  200. data/test/tc_schema.rb +161 -0
  201. data/test/tc_traversal.rb +152 -0
  202. data/test/tc_writer.rb +447 -0
  203. data/test/tc_xinclude.rb +20 -0
  204. data/test/tc_xml.rb +225 -0
  205. data/test/tc_xpath.rb +244 -0
  206. data/test/tc_xpath_context.rb +88 -0
  207. data/test/tc_xpath_expression.rb +37 -0
  208. data/test/tc_xpointer.rb +72 -0
  209. data/test/test_helper.rb +16 -0
  210. data/test/test_suite.rb +49 -0
  211. metadata +344 -0
@@ -0,0 +1,170 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Each test has an XML Parser open a 98k XML document and count one type of leaf
4
+ # element (466 entries). This is repeated a total of 100 times, twice for each Parser.
5
+ # Summary measurements are from the second test.
6
+ #
7
+ # Tests run on a MacBook Pro, Mac OS X 10.5.5, 4GB memory, 2.5 GHz Intel Core 2 Duo.
8
+ #
9
+ # Library versions:
10
+ # hpricot 0.6.164
11
+ # libxml: 0.9.2
12
+ #
13
+ # All benchmarks were run twice in sequence and the measurements presented here are from
14
+ # the second run. Java automatically optimizes JRuby code which is run many times and the
15
+ # speedup from the first to the second test is from 40 to 75%. There is no essential
16
+ # difference in the speed of the C version of Ruby between the first test and the second.
17
+ #
18
+ # Summary:
19
+ #
20
+ # 100 times: Open 98k XML document and count one type of leaf element (466 entries)
21
+ #
22
+ # JRuby (Java 1.6.0_03-p3-Soylatte using server mode): jdom_document_builder 0.360
23
+ # MRI: libxml v0.9.2 0.383
24
+ # JRuby (Java 1.6.0_07): jdom_document_builder 0.401
25
+ # JRuby (Java 1.5.0_16): jdom_document_builder 0.428
26
+ # JRuby (Java 1.6.0_03-p3-Soylatte using server mode): hpricot 1.977
27
+ # JRuby (Java 1.5.0_16): hpricot 2.027
28
+ # JRuby (Java 1.6.0_07): hpricot 2.094
29
+ # MRI: hpricot 2.140
30
+ # JRuby (Java 1.6.0_03-p3-Soylatte using server mode): rexml 5.488
31
+ # JRuby (Java 1.5.0_16): rexml 5.569
32
+ # JRuby (Java 1.5.0_16): rexml 5.578
33
+ # MRI: rexml 8.606
34
+ #
35
+ # Ruby version: MRI 1.8.6 (2008-03-03 rev 114), platform: universal-darwin9.0
36
+ # --------------------------------------------------------------------------------
37
+ # user system total real
38
+ # rexml 8.170000 0.100000 8.270000 ( 8.606676)
39
+ # hpricot 1.990000 0.040000 2.030000 ( 2.140865)
40
+ # libxml 0.350000 0.020000 0.370000 ( 0.383475)
41
+ #
42
+ # JRuby 1.1.5 (svn r8078) on Java 1.5.0_16
43
+ # --------------------------------------------------------------------------------
44
+ # user system total real
45
+ # rexml 5.578000 0.000000 5.578000 ( 5.578371)
46
+ # hpricot 2.028000 0.000000 2.028000 ( 2.027348)
47
+ # jdom_document_builder 0.429000 0.000000 0.429000 ( 0.428713)
48
+ #
49
+ # JRuby 1.1.5 (svn r8078) on Java 1.6.0_07
50
+ # --------------------------------------------------------------------------------
51
+ # user system total real
52
+ # rexml 5.569000 0.000000 5.569000 ( 5.569135)
53
+ # hpricot 2.094000 0.000000 2.094000 ( 2.093635)
54
+ # jdom_document_builder 0.401000 0.000000 0.401000 ( 0.401115)
55
+ #
56
+ # JRuby 1.1.5 (svn r8078) on Java 1.6.0_07 using server mode (-J-server)
57
+ # --------------------------------------------------------------------------------
58
+ # user system total real
59
+ # rexml 5.489000 0.000000 5.489000 ( 5.488560)
60
+ # hpricot 1.977000 0.000000 1.977000 ( 1.976845)
61
+ # jdom_document_builder 0.377000 0.000000 0.377000 ( 0.377808)
62
+ #
63
+ # JRuby 1.1.5 (svn r8078) on Java 1.6.0_03-p3 (Soylatte) using server mode (-J-server)
64
+ # --------------------------------------------------------------------------------
65
+ # user system total real
66
+ # rexml 5.596000 0.000000 5.596000 ( 5.596212)
67
+ # hpricot 1.937000 0.000000 1.937000 ( 1.937312)
68
+ # jdom_document_builder 0.360000 0.000000 0.360000 ( 0.360068)
69
+
70
+ require 'rubygems'
71
+ require 'benchmark'
72
+ require "rexml/document"
73
+ require 'hpricot'
74
+
75
+ if RUBY_PLATFORM =~ /java/
76
+ include Java
77
+ import javax.xml.parsers.DocumentBuilder
78
+ import javax.xml.parsers.DocumentBuilderFactory
79
+ @dbf = DocumentBuilderFactory.new_instance
80
+ @ruby_info = "Ruby version: JRuby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE} rev #{RUBY_PATCHLEVEL}) [i386-jruby#{JRUBY_VERSION}]"
81
+ @ruby_info << ", platform: Java, version #{java.lang.System.getProperty('java.version')}"
82
+ else
83
+ @ruby_info = "Ruby version: MRI #{RUBY_VERSION} (#{RUBY_RELEASE_DATE} rev #{RUBY_PATCHLEVEL})"
84
+ @ruby_info << ", platform: #{RUBY_PLATFORM}"
85
+
86
+ gem 'nokogiri', '>= 1.0.6'
87
+ require 'nokogiri'
88
+
89
+ gem 'libxml-ruby', '>= 0.9.2'
90
+ require 'libxml'
91
+ @xml_parser = LibXML::XML::Parser.new
92
+ end
93
+
94
+ file = File.expand_path(File.join(File.dirname(__FILE__), "sock_entries.xml"))
95
+ @bundle_with_466_sock_entries = File.read(file)
96
+
97
+ def rexml_count_socks
98
+ doc = REXML::Document.new(@bundle_with_466_sock_entries).root
99
+ socks = doc.elements.to_a('./sockEntries').length
100
+ end
101
+
102
+ unless RUBY_PLATFORM =~ /java/
103
+ def nokogiri_count_socks
104
+ #doc = Nokogiri(@bundle_with_466_sock_entries)
105
+ #socks = doc.search('//sockEntries').length
106
+ end
107
+
108
+ def libxml_count_socks
109
+ @xml_parser = LibXML::XML::Parser.new
110
+ @xml_parser.string = @bundle_with_466_sock_entries
111
+ doc = @xml_parser.parse
112
+ socks = doc.find('//sockEntries').length
113
+ end
114
+ end
115
+
116
+ def hpricot_count_socks
117
+ doc = Hpricot.XML(@bundle_with_466_sock_entries)
118
+ socks = doc.search("//sockEntries").length
119
+ end
120
+
121
+ if RUBY_PLATFORM =~ /java/
122
+ def jdom_document_builder_count_socks
123
+ file = File.expand_path(File.join(File.dirname(__FILE__), "sock_entries.xml"))
124
+ doc = @dbf.new_document_builder.parse(file).get_document_element
125
+ socks = doc.getElementsByTagName("sockEntries")
126
+ socks.get_length
127
+ end
128
+ end
129
+
130
+ n = 100
131
+ test_iterations = ARGV.first.to_i
132
+ test_iterations = 1 unless test_iterations > 1
133
+ puts
134
+ puts @ruby_info
135
+ puts
136
+ puts "#{n} times: Open 98k XML document and count one type of leaf element (466 entries)"
137
+ puts
138
+ print "running benchmark "
139
+ if test_iterations == 1
140
+ puts "once.\n\n"
141
+ else
142
+ puts "#{test_iterations} times.\n\n"
143
+ end
144
+ test_iterations.times do
145
+ Benchmark.bmbm do |x|
146
+ x.report("rexml") { n.times {rexml_count_socks} }
147
+ x.report("hpricot") { n.times {hpricot_count_socks} }
148
+ x.report("jdom_document_builder") { n.times {jdom_document_builder_count_socks} } if RUBY_PLATFORM =~ /java/
149
+ #x.report("nokogiri") { n.times {nokogiri_count_socks} } unless RUBY_PLATFORM =~ /java/
150
+ x.report("libxml") { n.times {libxml_count_socks} } unless RUBY_PLATFORM =~ /java/
151
+ end
152
+ puts
153
+ end
154
+
155
+ #
156
+ # jrexml doesn't appear to have any speedup in this test
157
+ #
158
+ # if RUBY_PLATFORM =~ /java/
159
+ # require 'jrexml'
160
+ # def rexml_with_jrexml_count_socks
161
+ # doc = REXML::Document.new(@bundle_with_466_sock_entries).root
162
+ # socks = doc.elements.to_a('./sockEntries').length
163
+ # end
164
+ #
165
+ # puts "\nNow add in JREXML to see if it speeds up rexml\n"
166
+ # Benchmark.bmbm do |x|
167
+ # x.report("rexml+jrexml") { n.times {rexml_with_jrexml_count_socks} }
168
+ # end
169
+ # puts
170
+ # end
@@ -0,0 +1,507 @@
1
+ <sessionBundles xmlns:xmi="http://www.omg.org/XMI" xmlns:sailuserdata="sailuserdata" start="2007-06-18T15:49:48.185-0400" stop="2007-06-18T16:56:52.121-0400" curnitUUID="3f28a7ab-1db4-11dc-a30a-bbe5dcc6a749" sessionUUID="880aa75e-e79f-43de-9148-13af1eef9403">
2
+ <sockParts podId="cccccccc-0001-6126-0000-000000000000" rimName="curnit_map">
3
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;pas_curnit_map&gt;&lt;project podUUID=&quot;cccccccc-0001-6126-0000-000000000000&quot; title=&quot;Rock Cycle: Igneous Rocks&quot;&gt;&lt;activity podUUID=&quot;dddddddd-6004-0000-0000-000000000000&quot; title=&quot;The Rock Cycle&quot; number=&quot;0&quot;&gt;&lt;step podUUID=&quot;dddddddd-6004-0001-0000-000000000000&quot; title=&quot;An Introduction to the Rock Cycle&quot; number=&quot;0&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;/activity&gt;&lt;activity podUUID=&quot;dddddddd-6004-0002-0000-000000000000&quot; title=&quot;Why do these rocks look so different?&quot; number=&quot;1&quot;&gt;&lt;step podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; title=&quot;Scenery from our backyard&quot; number=&quot;0&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0004-0000-000000000000&quot; title=&quot;Two Rocks&quot; number=&quot;1&quot; type=&quot;Evidence&quot; classname=&quot;org.telscenter.pas.steps.Evidence&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0005-0000-000000000000&quot; title=&quot;Our initial observations&quot; number=&quot;2&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0006-0000-000000000000&quot; title=&quot;Two rocks made of same minerals&quot; number=&quot;3&quot; type=&quot;Evidence&quot; classname=&quot;org.telscenter.pas.steps.Evidence&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0007-0000-000000000000&quot; title=&quot;Our initial thoughts&quot; number=&quot;4&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.steps.WobbleModule&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; title=&quot;Examining Granite&quot; number=&quot;5&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; title=&quot;Examining Rhyolite&quot; number=&quot;6&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0010-0000-000000000000&quot; title=&quot;A Microscopic View&quot; number=&quot;7&quot; type=&quot;Evidence&quot; classname=&quot;org.telscenter.pas.steps.Evidence&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; title=&quot;Take a closer look&quot; number=&quot;8&quot; type=&quot;Evidence&quot; classname=&quot;org.telscenter.pas.steps.Evidence&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; title=&quot;Our More Detailed Observations&quot; number=&quot;9&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0013-0000-000000000000&quot; title=&quot;A note about crystal size&quot; number=&quot;10&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0014-0000-000000000000&quot; title=&quot;Reflecting on our initial thoughts&quot; number=&quot;11&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.steps.WobbleModule&quot; /&gt;&lt;/activity&gt;&lt;activity podUUID=&quot;dddddddd-6004-0015-0000-000000000000&quot; title=&quot;How are different crystal sizes formed?&quot; number=&quot;2&quot;&gt;&lt;step podUUID=&quot;dddddddd-6004-0016-0000-000000000000&quot; title=&quot;Investigating Crystal Size&quot; number=&quot;0&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0017-0000-000000000000&quot; title=&quot;What is the purpose of models?&quot; number=&quot;1&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0018-0000-000000000000&quot; title=&quot;How Igneous Rocks are Formed&quot; number=&quot;2&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; title=&quot;Modeling Magma&quot; number=&quot;3&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0020-0000-000000000000&quot; title=&quot;The Set Up&quot; number=&quot;4&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0021-0000-000000000000&quot; title=&quot;Data collection&quot; number=&quot;5&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.steps.WobbleModule&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0022-0000-000000000000&quot; title=&quot;Explain your data.&quot; number=&quot;6&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0023-0000-000000000000&quot; title=&quot;Summarize your conclusions.&quot; number=&quot;7&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0024-0000-000000000000&quot; title=&quot;Connecting your Model to the Rock Cycle&quot; number=&quot;8&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0025-0000-000000000000&quot; title=&quot;Relating the model to nature&quot; number=&quot;9&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.otrunk.OTrunkStep&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; title=&quot;Recording information in your journal&quot; number=&quot;10&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0027-0000-000000000000&quot; title=&quot;Reflecting on what you have learned&quot; number=&quot;11&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.steps.WobbleModule&quot; /&gt;&lt;/activity&gt;&lt;activity podUUID=&quot;dddddddd-6004-0028-0000-000000000000&quot; title=&quot;How are rocks formed through magmatic processes?&quot; number=&quot;3&quot;&gt;&lt;step podUUID=&quot;dddddddd-6004-0029-0000-000000000000&quot; title=&quot;Where are granite and rhyolite formed?&quot; number=&quot;0&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0030-0000-000000000000&quot; title=&quot;Our Ideas: A Hypothesis&quot; number=&quot;1&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0031-0000-000000000000&quot; title=&quot;Creating the Model&quot; number=&quot;2&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0032-0000-000000000000&quot; title=&quot;Modeling Magmatic Activity&quot; number=&quot;3&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.otrunk.OTrunkStep&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; title=&quot;Using the Model&quot; number=&quot;4&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; title=&quot;Magma Model Movie&quot; number=&quot;5&quot; type=&quot;Evidence&quot; classname=&quot;org.telscenter.pas.steps.Evidence&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0035-0000-000000000000&quot; title=&quot;Relating your model to the natural world&quot; number=&quot;6&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0036-0000-000000000000&quot; title=&quot;Modeling Rock Formation&quot; number=&quot;7&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.otrunk.OTrunkStep&quot; /&gt;&lt;/activity&gt;&lt;activity podUUID=&quot;dddddddd-6004-0037-0000-000000000000&quot; title=&quot;What do the models tell us about granite and rhyolite?&quot; number=&quot;4&quot;&gt;&lt;step podUUID=&quot;dddddddd-6004-0038-0000-000000000000&quot; title=&quot;Reflecting on our Initial Hypothesis&quot; number=&quot;0&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0039-0000-000000000000&quot; title=&quot;Revising our Hypothesis&quot; number=&quot;1&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; title=&quot;Revising our initial hypothesis&quot; number=&quot;2&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0041-0000-000000000000&quot; title=&quot;Where the Rocks Are&quot; number=&quot;3&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0042-0000-000000000000&quot; title=&quot;Revisiting the Sierra Nevada Mountains&quot; number=&quot;4&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0043-0000-000000000000&quot; title=&quot;Write a short story&quot; number=&quot;5&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0044-0000-000000000000&quot; title=&quot;Story Discussion&quot; number=&quot;6&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.steps.WobbleModule&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0045-0000-000000000000&quot; title=&quot;Extending your knowledge&quot; number=&quot;7&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;/activity&gt;&lt;activity podUUID=&quot;dddddddd-6004-0046-0000-000000000000&quot; title=&quot;Extension Activity - More about Rock Formation&quot; number=&quot;5&quot;&gt;&lt;step podUUID=&quot;dddddddd-6004-0047-0000-000000000000&quot; title=&quot;Connecting Rocks to Processes&quot; number=&quot;0&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; title=&quot;Defining granite and rhyolite&quot; number=&quot;1&quot; type=&quot;Note&quot; classname=&quot;org.telscenter.pas.steps.Note&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; title=&quot;Try another rock&quot; number=&quot;2&quot; type=&quot;Display&quot; classname=&quot;org.telscenter.pas.steps.DisplayPage&quot; /&gt;&lt;step podUUID=&quot;dddddddd-6004-0050-0000-000000000000&quot; title=&quot;How is obsidian formed?&quot; number=&quot;3&quot; type=&quot;Pas Step&quot; classname=&quot;org.telscenter.pas.steps.WobbleModule&quot; /&gt;&lt;/activity&gt;&lt;/project&gt;&lt;/pas_curnit_map&gt;&#13;&#10;" millisecondsOffset="1803"/>
4
+ </sockParts>
5
+ <sockParts podId="cccccccc-0001-6126-0000-000000000000" rimName="navigation_log">
6
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;project_open podUUID=&quot;cccccccc-0001-6126-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1873"/>
7
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;null&quot; /&gt;&#13;&#10;" millisecondsOffset="1903"/>
8
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0001-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1903"/>
9
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0001-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="24736"/>
10
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="24736"/>
11
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="26769"/>
12
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0004-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="26769"/>
13
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0004-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="29192"/>
14
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0005-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="29192"/>
15
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0005-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="36443"/>
16
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0006-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="36443"/>
17
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0006-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="38616"/>
18
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0007-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="38616"/>
19
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0007-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="60728"/>
20
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="60728"/>
21
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="62620"/>
22
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="62630"/>
23
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="64383"/>
24
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0010-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="64393"/>
25
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0010-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="67597"/>
26
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="67607"/>
27
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="79885"/>
28
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="79885"/>
29
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="84562"/>
30
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0013-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="84562"/>
31
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0013-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="87977"/>
32
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0014-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="87977"/>
33
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0014-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="97661"/>
34
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0016-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="97671"/>
35
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0016-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="99984"/>
36
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0017-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="99994"/>
37
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0017-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="105121"/>
38
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0018-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="105131"/>
39
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0018-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="111220"/>
40
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="111230"/>
41
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="125661"/>
42
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0020-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="125661"/>
43
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0020-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="128936"/>
44
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0021-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="128946"/>
45
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0021-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="146261"/>
46
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0022-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="146261"/>
47
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0022-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="154623"/>
48
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0023-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="154633"/>
49
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0023-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="157907"/>
50
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0024-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="157907"/>
51
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0024-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="159640"/>
52
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0025-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="159650"/>
53
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0025-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="189342"/>
54
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="189342"/>
55
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="225154"/>
56
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0027-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="225164"/>
57
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0027-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="236350"/>
58
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0029-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="236350"/>
59
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0029-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="239745"/>
60
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0030-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="239745"/>
61
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0030-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="245473"/>
62
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0031-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="245473"/>
63
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0031-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="272592"/>
64
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0032-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="272592"/>
65
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0032-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="282206"/>
66
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="282216"/>
67
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="286122"/>
68
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="286132"/>
69
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="288235"/>
70
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0036-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="288245"/>
71
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0036-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="445190"/>
72
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0038-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="445190"/>
73
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0038-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="447734"/>
74
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0039-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="447744"/>
75
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0039-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="460522"/>
76
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="460532"/>
77
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="465480"/>
78
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0041-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="465490"/>
79
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0041-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="468083"/>
80
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0042-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="468093"/>
81
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0042-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="471158"/>
82
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0043-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="471168"/>
83
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0043-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="475985"/>
84
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0044-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="475985"/>
85
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0044-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="483786"/>
86
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0045-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="483806"/>
87
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0045-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="501802"/>
88
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0050-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="501822"/>
89
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0050-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="503975"/>
90
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="504115"/>
91
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="508511"/>
92
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="508511"/>
93
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="885473"/>
94
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0032-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="885483"/>
95
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0032-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="890731"/>
96
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="890731"/>
97
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="895278"/>
98
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="895278"/>
99
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="899233"/>
100
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0001-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="899243"/>
101
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0001-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="913163"/>
102
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0006-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="913173"/>
103
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0006-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="915847"/>
104
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0005-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="915867"/>
105
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0005-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="917580"/>
106
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0004-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="917590"/>
107
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0004-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="922597"/>
108
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="922597"/>
109
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="928615"/>
110
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0021-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="928626"/>
111
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0021-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="941063"/>
112
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0027-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="941073"/>
113
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0027-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="957016"/>
114
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="957026"/>
115
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="967822"/>
116
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0035-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="967832"/>
117
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0035-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="969444"/>
118
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="969454"/>
119
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="971828"/>
120
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0036-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="971838"/>
121
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0036-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="977606"/>
122
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="977616"/>
123
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="984716"/>
124
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0044-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="984726"/>
125
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0044-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1007108"/>
126
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1007118"/>
127
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1018635"/>
128
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0050-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1018645"/>
129
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0050-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1028709"/>
130
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1028719"/>
131
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1030442"/>
132
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="1030452"/>
133
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2330932"/>
134
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2330932"/>
135
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2332975"/>
136
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0050-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2332985"/>
137
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0050-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2349699"/>
138
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2349709"/>
139
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2357540"/>
140
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0001-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2357540"/>
141
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0001-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2386302"/>
142
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2386302"/>
143
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2425408"/>
144
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0004-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2425418"/>
145
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0004-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2439117"/>
146
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0005-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2439128"/>
147
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0005-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2447109"/>
148
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0006-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2447119"/>
149
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0006-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2469551"/>
150
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0007-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2469561"/>
151
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0007-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2611956"/>
152
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2611966"/>
153
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2621840"/>
154
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2621850"/>
155
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2632365"/>
156
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0010-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2632365"/>
157
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0010-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2639235"/>
158
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2639245"/>
159
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2651323"/>
160
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2651333"/>
161
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2664201"/>
162
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0013-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2664211"/>
163
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0013-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2687985"/>
164
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2687995"/>
165
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2694935"/>
166
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2694935"/>
167
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2697279"/>
168
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2697289"/>
169
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2700634"/>
170
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2700644"/>
171
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2703017"/>
172
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2703027"/>
173
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2709877"/>
174
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0010-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2709887"/>
175
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0010-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2714103"/>
176
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2714113"/>
177
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0011-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2717167"/>
178
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2717177"/>
179
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0012-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2723677"/>
180
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0013-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2723687"/>
181
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0013-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2732960"/>
182
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0014-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2732970"/>
183
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0014-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2784795"/>
184
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0007-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2784805"/>
185
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0007-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2786557"/>
186
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0014-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2786567"/>
187
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0014-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2803501"/>
188
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0016-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2803511"/>
189
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0016-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2807177"/>
190
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0017-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2807187"/>
191
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0017-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2847645"/>
192
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0018-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2847655"/>
193
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0018-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2854365"/>
194
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2854375"/>
195
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2867033"/>
196
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0020-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2867043"/>
197
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0020-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2911407"/>
198
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0021-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="2911417"/>
199
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0021-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3010539"/>
200
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0022-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3010559"/>
201
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0022-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3056295"/>
202
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0023-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3056305"/>
203
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0023-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3069324"/>
204
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0024-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3069334"/>
205
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0024-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3072628"/>
206
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0025-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3072628"/>
207
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0025-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3192160"/>
208
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3192160"/>
209
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3212910"/>
210
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0022-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3212920"/>
211
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0022-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3217156"/>
212
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3217166"/>
213
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0019-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3223656"/>
214
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0017-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3223666"/>
215
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0017-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3229384"/>
216
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3229404"/>
217
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3263924"/>
218
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0027-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3263934"/>
219
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0027-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3359251"/>
220
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0029-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3359261"/>
221
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0029-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3363397"/>
222
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0030-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3363407"/>
223
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0030-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3376996"/>
224
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3377006"/>
225
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0026-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3387641"/>
226
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0030-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3387651"/>
227
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0030-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3392699"/>
228
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0031-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3392709"/>
229
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0031-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3395002"/>
230
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0032-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3395012"/>
231
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0032-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3488516"/>
232
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3488526"/>
233
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3506452"/>
234
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3506462"/>
235
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0034-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3555623"/>
236
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0035-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3555633"/>
237
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0035-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3560230"/>
238
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0036-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3560240"/>
239
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0036-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3606596"/>
240
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0038-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3606616"/>
241
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0038-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3619865"/>
242
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0039-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3619875"/>
243
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0039-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3636980"/>
244
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3636990"/>
245
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0040-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3643850"/>
246
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0041-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3643860"/>
247
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0041-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3648617"/>
248
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0042-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3648627"/>
249
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0042-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3702724"/>
250
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3702734"/>
251
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3705458"/>
252
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3705478"/>
253
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0008-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3706920"/>
254
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3706931"/>
255
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0003-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3721672"/>
256
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0041-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3721682"/>
257
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0041-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3725898"/>
258
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0042-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3725908"/>
259
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0042-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3735602"/>
260
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0043-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3735612"/>
261
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0043-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3780606"/>
262
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3780616"/>
263
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3782890"/>
264
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0031-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3782910"/>
265
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0031-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3784522"/>
266
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0029-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3784542"/>
267
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0029-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3790290"/>
268
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0020-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3790310"/>
269
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0020-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3797851"/>
270
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3797861"/>
271
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0009-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3803770"/>
272
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3803780"/>
273
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0033-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3808477"/>
274
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0043-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3808487"/>
275
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0043-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3810780"/>
276
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0044-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3810790"/>
277
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0044-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3893158"/>
278
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0045-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3893168"/>
279
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0045-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3900329"/>
280
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0047-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3900339"/>
281
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0047-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3910433"/>
282
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3910443"/>
283
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3924734"/>
284
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0047-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3924754"/>
285
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0047-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3936791"/>
286
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3936811"/>
287
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0048-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3945844"/>
288
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0047-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3945854"/>
289
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0047-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3951873"/>
290
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3951883"/>
291
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_close podUUID=&quot;dddddddd-6004-0049-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3955568"/>
292
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;step_open podUUID=&quot;dddddddd-6004-0050-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="3955588"/>
293
+ <sockEntries value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;project_close podUUID=&quot;cccccccc-0001-6126-0000-000000000000&quot; /&gt;&#13;&#10;" millisecondsOffset="4023936"/>
294
+ </sockParts>
295
+ <sockParts podId="cccccccc-0001-6126-0000-000000000000" rimName="session_state">
296
+ <sockEntries value="dddddddd-6004-0001-0000-000000000000" millisecondsOffset="2013"/>
297
+ <sockEntries value="dddddddd-6004-0003-0000-000000000000" millisecondsOffset="24806"/>
298
+ <sockEntries value="dddddddd-6004-0004-0000-000000000000" millisecondsOffset="26869"/>
299
+ <sockEntries value="dddddddd-6004-0005-0000-000000000000" millisecondsOffset="30955"/>
300
+ <sockEntries value="dddddddd-6004-0006-0000-000000000000" millisecondsOffset="36493"/>
301
+ <sockEntries value="dddddddd-6004-0007-0000-000000000000" millisecondsOffset="38676"/>
302
+ <sockEntries value="dddddddd-6004-0008-0000-000000000000" millisecondsOffset="60798"/>
303
+ <sockEntries value="dddddddd-6004-0009-0000-000000000000" millisecondsOffset="62690"/>
304
+ <sockEntries value="dddddddd-6004-0010-0000-000000000000" millisecondsOffset="64443"/>
305
+ <sockEntries value="dddddddd-6004-0011-0000-000000000000" millisecondsOffset="67668"/>
306
+ <sockEntries value="dddddddd-6004-0012-0000-000000000000" millisecondsOffset="80075"/>
307
+ <sockEntries value="dddddddd-6004-0013-0000-000000000000" millisecondsOffset="84842"/>
308
+ <sockEntries value="dddddddd-6004-0014-0000-000000000000" millisecondsOffset="88037"/>
309
+ <sockEntries value="dddddddd-6004-0016-0000-000000000000" millisecondsOffset="97741"/>
310
+ <sockEntries value="dddddddd-6004-0017-0000-000000000000" millisecondsOffset="100024"/>
311
+ <sockEntries value="dddddddd-6004-0018-0000-000000000000" millisecondsOffset="105181"/>
312
+ <sockEntries value="dddddddd-6004-0019-0000-000000000000" millisecondsOffset="111280"/>
313
+ <sockEntries value="dddddddd-6004-0019-0000-000000000000" millisecondsOffset="120433"/>
314
+ <sockEntries value="dddddddd-6004-0020-0000-000000000000" millisecondsOffset="125731"/>
315
+ <sockEntries value="dddddddd-6004-0021-0000-000000000000" millisecondsOffset="129006"/>
316
+ <sockEntries value="dddddddd-6004-0021-0000-000000000000" millisecondsOffset="136486"/>
317
+ <sockEntries value="dddddddd-6004-0022-0000-000000000000" millisecondsOffset="146281"/>
318
+ <sockEntries value="dddddddd-6004-0023-0000-000000000000" millisecondsOffset="154773"/>
319
+ <sockEntries value="dddddddd-6004-0024-0000-000000000000" millisecondsOffset="157977"/>
320
+ <sockEntries value="dddddddd-6004-0025-0000-000000000000" millisecondsOffset="160291"/>
321
+ <sockEntries value="dddddddd-6004-0026-0000-000000000000" millisecondsOffset="189463"/>
322
+ <sockEntries value="dddddddd-6004-0027-0000-000000000000" millisecondsOffset="225184"/>
323
+ <sockEntries value="dddddddd-6004-0027-0000-000000000000" millisecondsOffset="231243"/>
324
+ <sockEntries value="dddddddd-6004-0029-0000-000000000000" millisecondsOffset="236420"/>
325
+ <sockEntries value="dddddddd-6004-0030-0000-000000000000" millisecondsOffset="240015"/>
326
+ <sockEntries value="dddddddd-6004-0031-0000-000000000000" millisecondsOffset="245563"/>
327
+ <sockEntries value="dddddddd-6004-0032-0000-000000000000" millisecondsOffset="272652"/>
328
+ <sockEntries value="dddddddd-6004-0033-0000-000000000000" millisecondsOffset="282286"/>
329
+ <sockEntries value="dddddddd-6004-0034-0000-000000000000" millisecondsOffset="286192"/>
330
+ <sockEntries value="dddddddd-6004-0036-0000-000000000000" millisecondsOffset="288315"/>
331
+ <sockEntries value="dddddddd-6004-0038-0000-000000000000" millisecondsOffset="445270"/>
332
+ <sockEntries value="dddddddd-6004-0039-0000-000000000000" millisecondsOffset="448034"/>
333
+ <sockEntries value="dddddddd-6004-0040-0000-000000000000" millisecondsOffset="460693"/>
334
+ <sockEntries value="dddddddd-6004-0041-0000-000000000000" millisecondsOffset="465550"/>
335
+ <sockEntries value="dddddddd-6004-0042-0000-000000000000" millisecondsOffset="468153"/>
336
+ <sockEntries value="dddddddd-6004-0043-0000-000000000000" millisecondsOffset="471218"/>
337
+ <sockEntries value="dddddddd-6004-0044-0000-000000000000" millisecondsOffset="476045"/>
338
+ <sockEntries value="dddddddd-6004-0045-0000-000000000000" millisecondsOffset="483926"/>
339
+ <sockEntries value="dddddddd-6004-0050-0000-000000000000" millisecondsOffset="501892"/>
340
+ <sockEntries value="dddddddd-6004-0049-0000-000000000000" millisecondsOffset="505457"/>
341
+ <sockEntries value="dddddddd-6004-0048-0000-000000000000" millisecondsOffset="508772"/>
342
+ <sockEntries value="dddddddd-6004-0032-0000-000000000000" millisecondsOffset="885684"/>
343
+ <sockEntries value="dddddddd-6004-0019-0000-000000000000" millisecondsOffset="890761"/>
344
+ <sockEntries value="dddddddd-6004-0008-0000-000000000000" millisecondsOffset="895348"/>
345
+ <sockEntries value="dddddddd-6004-0001-0000-000000000000" millisecondsOffset="899313"/>
346
+ <sockEntries value="dddddddd-6004-0006-0000-000000000000" millisecondsOffset="913233"/>
347
+ <sockEntries value="dddddddd-6004-0005-0000-000000000000" millisecondsOffset="916007"/>
348
+ <sockEntries value="dddddddd-6004-0004-0000-000000000000" millisecondsOffset="917650"/>
349
+ <sockEntries value="dddddddd-6004-0011-0000-000000000000" millisecondsOffset="922657"/>
350
+ <sockEntries value="dddddddd-6004-0021-0000-000000000000" millisecondsOffset="928686"/>
351
+ <sockEntries value="dddddddd-6004-0027-0000-000000000000" millisecondsOffset="941133"/>
352
+ <sockEntries value="dddddddd-6004-0034-0000-000000000000" millisecondsOffset="957096"/>
353
+ <sockEntries value="dddddddd-6004-0035-0000-000000000000" millisecondsOffset="967892"/>
354
+ <sockEntries value="dddddddd-6004-0034-0000-000000000000" millisecondsOffset="969514"/>
355
+ <sockEntries value="dddddddd-6004-0036-0000-000000000000" millisecondsOffset="971898"/>
356
+ <sockEntries value="dddddddd-6004-0040-0000-000000000000" millisecondsOffset="977766"/>
357
+ <sockEntries value="dddddddd-6004-0044-0000-000000000000" millisecondsOffset="984746"/>
358
+ <sockEntries value="dddddddd-6004-0048-0000-000000000000" millisecondsOffset="1007379"/>
359
+ <sockEntries value="dddddddd-6004-0050-0000-000000000000" millisecondsOffset="1018705"/>
360
+ <sockEntries value="dddddddd-6004-0049-0000-000000000000" millisecondsOffset="1028780"/>
361
+ <sockEntries value="dddddddd-6004-0048-0000-000000000000" millisecondsOffset="1030702"/>
362
+ <sockEntries value="dddddddd-6004-0049-0000-000000000000" millisecondsOffset="2331002"/>
363
+ <sockEntries value="dddddddd-6004-0050-0000-000000000000" millisecondsOffset="2333045"/>
364
+ <sockEntries value="dddddddd-6004-0040-0000-000000000000" millisecondsOffset="2349849"/>
365
+ <sockEntries value="dddddddd-6004-0001-0000-000000000000" millisecondsOffset="2357610"/>
366
+ <sockEntries value="dddddddd-6004-0003-0000-000000000000" millisecondsOffset="2386362"/>
367
+ <sockEntries value="dddddddd-6004-0004-0000-000000000000" millisecondsOffset="2425488"/>
368
+ <sockEntries value="dddddddd-6004-0005-0000-000000000000" millisecondsOffset="2439258"/>
369
+ <sockEntries value="dddddddd-6004-0006-0000-000000000000" millisecondsOffset="2447169"/>
370
+ <sockEntries value="dddddddd-6004-0007-0000-000000000000" millisecondsOffset="2469621"/>
371
+ <sockEntries value="dddddddd-6004-0007-0000-000000000000" millisecondsOffset="2551870"/>
372
+ <sockEntries value="dddddddd-6004-0007-0000-000000000000" millisecondsOffset="2586590"/>
373
+ <sockEntries value="dddddddd-6004-0008-0000-000000000000" millisecondsOffset="2612016"/>
374
+ <sockEntries value="dddddddd-6004-0009-0000-000000000000" millisecondsOffset="2621910"/>
375
+ <sockEntries value="dddddddd-6004-0010-0000-000000000000" millisecondsOffset="2632425"/>
376
+ <sockEntries value="dddddddd-6004-0011-0000-000000000000" millisecondsOffset="2639305"/>
377
+ <sockEntries value="dddddddd-6004-0011-0000-000000000000" millisecondsOffset="2647357"/>
378
+ <sockEntries value="dddddddd-6004-0012-0000-000000000000" millisecondsOffset="2651473"/>
379
+ <sockEntries value="dddddddd-6004-0013-0000-000000000000" millisecondsOffset="2664452"/>
380
+ <sockEntries value="dddddddd-6004-0012-0000-000000000000" millisecondsOffset="2688136"/>
381
+ <sockEntries value="dddddddd-6004-0009-0000-000000000000" millisecondsOffset="2694995"/>
382
+ <sockEntries value="dddddddd-6004-0008-0000-000000000000" millisecondsOffset="2697349"/>
383
+ <sockEntries value="dddddddd-6004-0009-0000-000000000000" millisecondsOffset="2700714"/>
384
+ <sockEntries value="dddddddd-6004-0008-0000-000000000000" millisecondsOffset="2703097"/>
385
+ <sockEntries value="dddddddd-6004-0010-0000-000000000000" millisecondsOffset="2709947"/>
386
+ <sockEntries value="dddddddd-6004-0010-0000-000000000000" millisecondsOffset="2712260"/>
387
+ <sockEntries value="dddddddd-6004-0011-0000-000000000000" millisecondsOffset="2714183"/>
388
+ <sockEntries value="dddddddd-6004-0012-0000-000000000000" millisecondsOffset="2717318"/>
389
+ <sockEntries value="dddddddd-6004-0013-0000-000000000000" millisecondsOffset="2723907"/>
390
+ <sockEntries value="dddddddd-6004-0014-0000-000000000000" millisecondsOffset="2733020"/>
391
+ <sockEntries value="dddddddd-6004-0007-0000-000000000000" millisecondsOffset="2784875"/>
392
+ <sockEntries value="dddddddd-6004-0014-0000-000000000000" millisecondsOffset="2786627"/>
393
+ <sockEntries value="dddddddd-6004-0016-0000-000000000000" millisecondsOffset="2803592"/>
394
+ <sockEntries value="dddddddd-6004-0017-0000-000000000000" millisecondsOffset="2807207"/>
395
+ <sockEntries value="dddddddd-6004-0017-0000-000000000000" millisecondsOffset="2835918"/>
396
+ <sockEntries value="dddddddd-6004-0018-0000-000000000000" millisecondsOffset="2847725"/>
397
+ <sockEntries value="dddddddd-6004-0019-0000-000000000000" millisecondsOffset="2854435"/>
398
+ <sockEntries value="dddddddd-6004-0020-0000-000000000000" millisecondsOffset="2867113"/>
399
+ <sockEntries value="dddddddd-6004-0021-0000-000000000000" millisecondsOffset="2911477"/>
400
+ <sockEntries value="dddddddd-6004-0021-0000-000000000000" millisecondsOffset="2915833"/>
401
+ <sockEntries value="dddddddd-6004-0021-0000-000000000000" millisecondsOffset="2917105"/>
402
+ <sockEntries value="dddddddd-6004-0022-0000-000000000000" millisecondsOffset="3010579"/>
403
+ <sockEntries value="dddddddd-6004-0023-0000-000000000000" millisecondsOffset="3056435"/>
404
+ <sockEntries value="dddddddd-6004-0024-0000-000000000000" millisecondsOffset="3069404"/>
405
+ <sockEntries value="dddddddd-6004-0025-0000-000000000000" millisecondsOffset="3072729"/>
406
+ <sockEntries value="dddddddd-6004-0026-0000-000000000000" millisecondsOffset="3192240"/>
407
+ <sockEntries value="dddddddd-6004-0022-0000-000000000000" millisecondsOffset="3212950"/>
408
+ <sockEntries value="dddddddd-6004-0019-0000-000000000000" millisecondsOffset="3217196"/>
409
+ <sockEntries value="dddddddd-6004-0017-0000-000000000000" millisecondsOffset="3223686"/>
410
+ <sockEntries value="dddddddd-6004-0026-0000-000000000000" millisecondsOffset="3229464"/>
411
+ <sockEntries value="dddddddd-6004-0027-0000-000000000000" millisecondsOffset="3264014"/>
412
+ <sockEntries value="dddddddd-6004-0029-0000-000000000000" millisecondsOffset="3359331"/>
413
+ <sockEntries value="dddddddd-6004-0030-0000-000000000000" millisecondsOffset="3363997"/>
414
+ <sockEntries value="dddddddd-6004-0026-0000-000000000000" millisecondsOffset="3377076"/>
415
+ <sockEntries value="dddddddd-6004-0030-0000-000000000000" millisecondsOffset="3387882"/>
416
+ <sockEntries value="dddddddd-6004-0031-0000-000000000000" millisecondsOffset="3392769"/>
417
+ <sockEntries value="dddddddd-6004-0032-0000-000000000000" millisecondsOffset="3395082"/>
418
+ <sockEntries value="dddddddd-6004-0033-0000-000000000000" millisecondsOffset="3488577"/>
419
+ <sockEntries value="dddddddd-6004-0034-0000-000000000000" millisecondsOffset="3506532"/>
420
+ <sockEntries value="dddddddd-6004-0035-0000-000000000000" millisecondsOffset="3555693"/>
421
+ <sockEntries value="dddddddd-6004-0036-0000-000000000000" millisecondsOffset="3560300"/>
422
+ <sockEntries value="dddddddd-6004-0038-0000-000000000000" millisecondsOffset="3606666"/>
423
+ <sockEntries value="dddddddd-6004-0038-0000-000000000000" millisecondsOffset="3615048"/>
424
+ <sockEntries value="dddddddd-6004-0039-0000-000000000000" millisecondsOffset="3620106"/>
425
+ <sockEntries value="dddddddd-6004-0039-0000-000000000000" millisecondsOffset="3626435"/>
426
+ <sockEntries value="dddddddd-6004-0040-0000-000000000000" millisecondsOffset="3637120"/>
427
+ <sockEntries value="dddddddd-6004-0041-0000-000000000000" millisecondsOffset="3643920"/>
428
+ <sockEntries value="dddddddd-6004-0042-0000-000000000000" millisecondsOffset="3648697"/>
429
+ <sockEntries value="dddddddd-6004-0003-0000-000000000000" millisecondsOffset="3702805"/>
430
+ <sockEntries value="dddddddd-6004-0008-0000-000000000000" millisecondsOffset="3705539"/>
431
+ <sockEntries value="dddddddd-6004-0003-0000-000000000000" millisecondsOffset="3707001"/>
432
+ <sockEntries value="dddddddd-6004-0041-0000-000000000000" millisecondsOffset="3721752"/>
433
+ <sockEntries value="dddddddd-6004-0042-0000-000000000000" millisecondsOffset="3725978"/>
434
+ <sockEntries value="dddddddd-6004-0043-0000-000000000000" millisecondsOffset="3735682"/>
435
+ <sockEntries value="dddddddd-6004-0033-0000-000000000000" millisecondsOffset="3780687"/>
436
+ <sockEntries value="dddddddd-6004-0031-0000-000000000000" millisecondsOffset="3782970"/>
437
+ <sockEntries value="dddddddd-6004-0029-0000-000000000000" millisecondsOffset="3784602"/>
438
+ <sockEntries value="dddddddd-6004-0020-0000-000000000000" millisecondsOffset="3790370"/>
439
+ <sockEntries value="dddddddd-6004-0009-0000-000000000000" millisecondsOffset="3797931"/>
440
+ <sockEntries value="dddddddd-6004-0033-0000-000000000000" millisecondsOffset="3803850"/>
441
+ <sockEntries value="dddddddd-6004-0043-0000-000000000000" millisecondsOffset="3808557"/>
442
+ <sockEntries value="dddddddd-6004-0044-0000-000000000000" millisecondsOffset="3810850"/>
443
+ <sockEntries value="dddddddd-6004-0045-0000-000000000000" millisecondsOffset="3893228"/>
444
+ <sockEntries value="dddddddd-6004-0047-0000-000000000000" millisecondsOffset="3900409"/>
445
+ <sockEntries value="dddddddd-6004-0048-0000-000000000000" millisecondsOffset="3910673"/>
446
+ <sockEntries value="dddddddd-6004-0047-0000-000000000000" millisecondsOffset="3924834"/>
447
+ <sockEntries value="dddddddd-6004-0048-0000-000000000000" millisecondsOffset="3937051"/>
448
+ <sockEntries value="dddddddd-6004-0048-0000-000000000000" millisecondsOffset="3941017"/>
449
+ <sockEntries value="dddddddd-6004-0047-0000-000000000000" millisecondsOffset="3945924"/>
450
+ <sockEntries value="dddddddd-6004-0049-0000-000000000000" millisecondsOffset="3951943"/>
451
+ <sockEntries value="dddddddd-6004-0050-0000-000000000000" millisecondsOffset="3955648"/>
452
+ </sockParts>
453
+ <sockParts podId="dddddddd-6004-0005-0000-000000000000" rimName="undefined4">
454
+ <sockEntries value="The similarities we observe are... The differences we observe are... " millisecondsOffset="34740"/>
455
+ </sockParts>
456
+ <sockParts podId="dddddddd-6004-0012-0000-000000000000" rimName="undefined5">
457
+ <sockEntries value="The similarities we observe are... The differences we observe are... " millisecondsOffset="83640"/>
458
+ <sockEntries value="The similarities we observe are... The differences we observe are... saljfdJSLFLSFSDLFDSAFLKFSJLKSF LLKLaldsaflksadfjlk " millisecondsOffset="2662859"/>
459
+ </sockParts>
460
+ <sockParts podId="dddddddd-6004-0025-0000-000000000000" rimName="otrunk_drawing" rimShape="[B">
461
+ <sockEntries value="H4sIAAAAAAAAAJVTTW/CMAy9T9p/iHJvQ2DdWimF224TEh+7TqFxUQdNUBqm8e9n+gFd16FySmLHz8/2s5h953vyBbbIjI4p90eUgE6MyvQ2puvVqxfS2fTxQRhnj3qHN0JElh+MdUX5uDxJspdFEVNjt35iEMIqvwry56ulkw4WxjjKBkcdC7AYuoAULFKCN3m4P3qNx3zzCUmTWbA2e2FK36WU2+RJpmL6wsPxKNmEHlcq8DhXibeBZ+WFPAiexhOVRiNOazxEPPNA5hcDmkA7eyI7OJVgk2gSRMPA/qPY06mGasCjVA5Hrwl3bDezXjvc5LyzojqDljlMpTb6o0Dt7eHjjC9Yaf5Dhw3h062M9ZQm8l+zqf51bbfStZveHjIrp3zVAesKQaTG5tK9V6u3dBarnuL+CdbnqPXZR6QlUPxWafwqa7w3m/sDZtlUn+wDAAA=" millisecondsOffset="171096"/>
462
+ <sockEntries value="H4sIAAAAAAAAAM2XTY+bMBCG75X6HxDnELANASTCXqqeWm21m+115S9SuoAj402T/fU1kGRpQrIENUq4BBt75p3HA5mJ7lZ5Ziy5LFNRTE0wdkyDF1SwtJhPzafZVysw7+LPnyKh5Gvxou8MI0rzhZCqrAe7oUEzXJZTU8j5mAptQrJxs2l8P3tUWPEHIZRp9971WnKptz7whEstiX/Hi/N3P+mfe/Kb016e5xIvfo1fVZqNy0qxNvBF4j+axUyIDA408UOkhZrxlfqGCc82RiK7TTEStcYd0tMQjZRNTR8E0KEksABjngUAoxbhE2YFwPNciFgSOsDc2NMWKx6a4G5CT/FCybXxwte1MRQiL+xn7JjEjhPbSvVAmOD+1jeC9+ZOen0/6a3PMyPaeChwzmNciOK51Oee8efKfmTX0wdy7D569iOzO0KL8n/O5vCEtGaXTVyg4yFuEw9GDrYI4R6jdIJ9N+yM54z8rsEhAhHBFTOmffQHp10pni8ybdZKWeeCXZ4bkieVr15B2d3O7I+8RXW0mGS8PKrmnBe3oZPgkCWIn0+ndriKkf7ERvbq+BIqMiFjZ5XUV2Q346PLlZYXj2i+HL0t35ajYlSBWe3nXGvDOrZAWItYH8Nin8Xl/8F1YZhwRpLBcH10AbiVxh5QoQNvE6pLExgyZzjUS2Rsb6joNqH6hCcTCoZ/BuD1oIIgvE2ooQ99BOHwTPWumam3CdUDAcMeRMMzdeJckao7uU2qHgAhoe5gqm5wPajI8y8NNbJPFl8fumhXpR1Vd10XH5TV+yX0qeq83aO0e6I9002t3l4TJULmWP1sOuZHJbXMuP6H7Hqwaee6hLT6Ob2saQnfu0B9v224/wK8IOa4ow8AAA==" millisecondsOffset="3187193"/>
463
+ </sockParts>
464
+ <sockParts podId="dddddddd-6004-0030-0000-000000000000" rimName="undefined10">
465
+ <sockEntries value="We think magma cools slowly... " millisecondsOffset="247827"/>
466
+ </sockParts>
467
+ <sockParts podId="dddddddd-6004-0032-0000-000000000000" rimName="otrunk_drawing" rimShape="[B">
468
+ <sockEntries value="H4sIAAAAAAAAAO1YW4+aQBh9b9L/QHhHLnJNkH1p+tZssuv2dTOXD6WLjBnGrv77DuACVbAQa9ISfZFvPHO+y3EET/iw36TKT+B5wrKFas4MVYGMMJpkq4X6svyq+epD9PlTyATfZW/ySlHCZLNlXORlUIcKSVGeL1TGVzPCJAWns2rT7HH5LJCAJ8aEqg/etcuBy61PEAOXJcE3tB2/+0W+PeIfQAZlXnG0Xc92IklneVGxJPjC0bucxZKx1LqO4nmNtnCkCPX2DENWVlgP9PIIlYQuVGz7VoB90ExKHc00KdEwuFTzTcexrTmNA8NUj3ySsZiGnF+9IJcgE/ygvMGhJouHkfWV2KFXq9TAGM5+LPhk7WLWRuf2eEZ0dMyQoQ1EKGPZay4lS+G14A/1cvmsHH1IPaed6R2thZvftDlXyLYc4mDPk/1gu+oHzQ2kYQwOJcRFnh109jPi210NzjPnyMXzsYOTqQRstqmk1RLaCai/5wqHuMg1qCm9O5n+p2xh2S3CKeS91Qw/th+zIQQ8e/xsynRrSFZrEWmmI39lQ/0Y9sL3kRW4BXDfjyEsZTwy9kb5CvUq7oW/J1SsIzOYF7RV0IsVhy1EXKqFimMg513EveiDbMu0CtpDPyhO0nRZ0JAUkDxUddyjjz5CoL+nMcQICnmv0dgYJrBxC3mNG4hrTEdZ965sg56Isr7hzC3k3ZVt0JNS1r/yjusFw7R1nZvcby3nJvfb6ungv1eYIMdzg/vZbdBTObsEU5CP83dla/RUlKUxti18V7ZBT0VZkH//Cbkr26D/QWVD/aK5MTRB6fp0uFql73RmW51aVJfcr7YH2PYcT6grL6yNCWPGN0h8r/zoZ8FlmVFpl3R9cLRLuwpp+aUSVlmujcsqrz/s7F+gdHUMARcAAA==" millisecondsOffset="282226"/>
469
+ <sockEntries value="H4sIAAAAAAAAAO2aXW+bMBSG7yftP0TcE2y+kQjVpG3axaZObbrbyjaHhpVABHRN/v0M5KtJSIARNYucm2BzfHz8PjiBw3Fv5tNo8AfSLEzikYSHSBpAzBI/jJ9G0sP4q2xLN97HD26Spy/xMz8aDNxwOkvSPCsb6+aARSTLRlKSPg1Zwl2k/rAaNLwd3+ckh7skySWl8aiXDFI+9A4CSHlI8IPM2o9+4F+39DewRjM/pWQ2Gb7kYTTMioi5g88peeVajJMkUv/Nxf2EzKCji59JGOdjmOffCYVo6cRVtkG4SbnMNZXjHAahP5KobqsOtUHGvm/IGPtMpmD6so0NQ1c1P3AQlpb+uMdCUg5h3cG7IM7TxeAZFmtnQTNndSEegL4VqoOae18GvNN3dNbNxbItT4sVLWeIyRQ8EifxY8a5R/BY+HeVsnsvHKVJPLsrUw4szZ2+YbNPSFcNZlDL4uuherUeoiEiUwqGz5hJLN05uJ4WW6QSzsIaManWVjg+Veme0Aiyg+cbB1NutlUwjIGltw+mnG7uqY45RK4yr7eZQPg0yT0ZG7iwXDZrzVkSJamH5qj8uErVrjXPFzPwUn4RkOJacpWyXWv9Gvr5xMOOVkRSNWptgzCKxoU3FgHhF+i6XTtiwReJ1cL1oo6P0gJQf4whIFDg7cgYNSOMLgQvOhNcdKlkTUF2Y3klZG1kaCqxBNmN5VWRtTuTxabT8B/Xci6ELlaNc/3h6tYFEmbEsExH7N2N5bXsXUZ94A8Fguza8lrI+gHVVSrIbiyvhSzw523GBNmN5X9J9m2Wr2SLkGESSssUnX8OtiteQfk5zYtH5xUhclTF4dnkfKtFj4JiAIr8QAjaq6CAhKB9Cao5DKsMC0H7FVQVgvYmKAnABk0I2q+guhC0N0F9ZiBsCEH7FdQUgvYmaBCYdvkyVgjao6B2Z0E1HTeWlNnMbibpl09342+nNZWxbry/rHupBRz4mAbQ9V50laa3zSapA47APvWqvWV6ocoSWFaDjEGZeYjC+GQSooBlHt0D7fMP75I3UrHFsG53vS9ukxVq/nPVCmyTTFALrlcEteu9uYB6mVAdbGG96/OBgHrBULs+owioZ4fqKkfLEZtOUBZG7o13lbI0c6ffVXarOI8ViG6XyW4N2nVdlYtu27hBkk5J/quq+77PUx6mV97+HjpRjToYyFZJMTcrDLnZuhCZH6/Kxv8C/70eV2kuAAA=" millisecondsOffset="3488546"/>
470
+ </sockParts>
471
+ <sockParts podId="dddddddd-6004-0036-0000-000000000000" rimName="otrunk_drawing" rimShape="[B">
472
+ <sockEntries value="H4sIAAAAAAAAAJVTTW+DMAy9T9p/iHKHlG1sVAr0tttUqR+7VkBMxQpJFdJp/fdzgQKjDNFTEjt+fraf+eInz8g36CJV0qeOPaMEZKxEKvc+3W7eLY8ugscHrow+yQPeCOFpflTaFOWjeZI4C4vCp0rv7VghhBZ2FWQvN2sTGlgpZSibHHUqQGPoChLQSAk+wuP90Vs8ltEXxNfMnHXZc1X6mlLGyZNU+DQSwpu/ecJyhHAtxxGxFcGrsDzHdV+enkUynzm0xkPECw9k3hjQBNLoMznAuQGDaWD/URzoVJdqMh29JtyzjWZtO9zNeUdFdQYZ5hCEUsldgdrLYHfB56w039BhU/j0K2MDpfH8z2yqf33bWLpu07tDZuWUWx2wvhB4onQems9q9dZGY9UB7h9nQ45an0NEOgLFb5XGW1nj/bq5vwmF3OvsAwAA" millisecondsOffset="305970"/>
473
+ <sockEntries value="H4sIAAAAAAAAAO2aXW/aMBSG7yftP0S5D/FHPqWQ3ky7myq1dLeVHTuQNcQoSVf493McyhglLAyQJsu9aey+Puf4PLFOwSe5Wy9L6yevm0JUUxtOgG3xKhOsqOZT+2n21Ynsu/Tzp0S09Wv1Ip8sKymWK1G3jRrshlZWkqaZ2qKeTzIhTdRs0i+a3M8eW9LyByFa2x296rXhtVz6wHNey5D4N7I6f/WT/HVPf/BslOd5TVaLyWtblJOmi1ga+FKTN5mLmRAluszE44Ks+NZE4u7nMBEqwl1CT6fQKtjUpoxFcRgxBzLmOxCyzKE8YE4Efd9DmOUxgPbWnrTYZUPmbzchp3jV1hvrhW92xvg4Y0MhHuG1H2o+3vo24IO5k15/c973ecaOth4qsuQpqUT13EhkJX/u7Ceumv4QjjsmnsOduUe2liz/YPORkIciSiLW4aZevx+CAXEo5T7LsoCEXnx0P2e83SpxAaQeieOoSxw7I3HSVcuXq1KadQp2VLB7z62a552vUZtyjztz/+YtUbsltOTNYDTjj+17bgIMcHx+bpS7BS/mizZ1UDwBibsdDarXKYRhJ1wPazJRijoFa6B+ErcfD8rfCtYuUoQ7q/3zoLTdrHhaFhWXie4eB4Wb1IEo6ixuhkV5UZazzkxWciJP0248AMY9g8zV4CIGeC7fvovggnFowS3AgutyBfpApQaqEuoClQcezTIDVQm1gsourK3hyNKK0S24OkF85dqKAqwDXExoCPr/xs2J1eXE9lBzA1UJdYFKcy+gwEBVQl2gZiBjPrz0c+vI2orgTWqrB69dW7EWtdWLJN0YmROrhJqcWC9iMcbYQFVCXaASGMS+Z6AqoTZQEc9z/9LaOvaDK4huUlz98NrFFWhB14eUoCAwR1YJNTmyPdTQQFVCXaBiiAL8D/eWyp2B+h9DvfTCNR554eqFNwHrbL9tvuaVq6cF3hBGEWbmyrUXanJme6jmyrUX6gIVMQ5ic+XaC7WCeuGVq4F6O6iJe7KJbawD1d33YX3iqv7Cg/nEPWxFPNXluN/rubfo0HTf87ivSXJRL0n7ve87fmxrGWaqvuA/9od+1dFA9vpipawTStmum1Y+v7ct/wKRNbD96SwAAA==" millisecondsOffset="3606636"/>
474
+ </sockParts>
475
+ <sockParts podId="dddddddd-6004-0039-0000-000000000000" rimName="undefined14">
476
+ <sockEntries value="choice0" millisecondsOffset="458990"/>
477
+ <sockEntries value="choice1" millisecondsOffset="3624522"/>
478
+ </sockParts>
479
+ <sockParts podId="dddddddd-6004-0039-0000-000000000000" rimName="undefined15">
480
+ <sockEntries value="From our model, we learned that... " millisecondsOffset="459000"/>
481
+ <sockEntries value="From our model, we learned that... knlkll" millisecondsOffset="3635398"/>
482
+ </sockParts>
483
+ <sockParts podId="dddddddd-6004-0040-0000-000000000000" rimName="undefined16">
484
+ <sockEntries value="Our hypothesis was: confrimed disconfirmed because... " millisecondsOffset="464158"/>
485
+ <sockEntries value="Our hypothesis was: confrimed disconfirmed because... klkljlkjlkj" millisecondsOffset="3642638"/>
486
+ </sockParts>
487
+ <sockParts podId="dddddddd-6004-0013-0000-000000000000" rimName="undefined6">
488
+ <sockEntries value="The crystals in the granite look... The crystals in the rhyolite look... clcZLCjLZclCZL cljlj " millisecondsOffset="2679673"/>
489
+ </sockParts>
490
+ <sockParts podId="dddddddd-6004-0013-0000-000000000000" rimName="undefined7">
491
+ <sockEntries value="The .... rock has larger crystals. cLXZcjlcXZlcCjlZCjLj" millisecondsOffset="2679683"/>
492
+ </sockParts>
493
+ <sockParts podId="dddddddd-6004-0023-0000-000000000000" rimName="undefined8">
494
+ <sockEntries value="Large crystals were created when ... Small crystals were created when ...sdfsdafdfdafsddsfd " millisecondsOffset="3068242"/>
495
+ </sockParts>
496
+ <sockParts podId="dddddddd-6004-0048-0000-000000000000" rimName="undefined17">
497
+ <sockEntries value="We think granite is ... We think rhyolite is ... bmbkjbkj" millisecondsOffset="3920438"/>
498
+ </sockParts>
499
+ <sockParts podId="dddddddd-6004-0048-0000-000000000000" rimName="undefined18">
500
+ <sockEntries value="The name we are giving to the family of rocks is... We came up with that name because... kb.kkj" millisecondsOffset="3920458"/>
501
+ </sockParts>
502
+ <agents role="RUN_WORKGROUP">
503
+ <users>a0a5c490-b78e-11db-b2b3-0014c2c34555</users>
504
+ </agents>
505
+ <sdsReturnAddresses>http://saildataservice.concord.org/3/offering/1562/bundle/3693/1</sdsReturnAddresses>
506
+ <launchProperties key="maven.jnlp.version" value="plr-everything-jdic-snapshot-0.1.0-20070618.192517"/>
507
+ </sessionBundles>