Advertisement
lafur

Untitled

May 19th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 106.85 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 92672
  3. local genv={}
  4. local Scripts = {
  5. function() -- HoverSeat script by TankLeadfoot
  6.  
  7. local SavedYPosition = script.Parent.Position.Y
  8. local Speed = 0
  9.  
  10. while (script.Parent:findFirstChild("CanFly") == nil) do wait(0.1) end
  11. while (script.Parent:findFirstChild("VMode") == nil) do wait(0.1) end
  12.  
  13. script.Parent.CanFly.Value = "No"
  14. script.Parent.VMode.Value = "Hover"
  15.  
  16. if (script.Parent:findFirstChild("BodyPosition") == nil) then
  17. p = Instance.new("BodyPosition")
  18. p.Name = "BodyPosition"
  19. p.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  20. p.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  21. p.Parent = script.Parent
  22. end
  23. if (script.Parent:findFirstChild("BodyGyro") == nil) then
  24. g = Instance.new("BodyGyro")
  25. g.Name = "BodyGyro"
  26. g.maxTorque = Vector3.new(math.huge,math.huge,math.huge)
  27. g.cframe = script.Parent.CFrame
  28. g.Parent = script.Parent
  29. end
  30.  
  31. while true do
  32. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  33. if (script.Parent.CanFly.Value == "Yes") and (script.Parent.VMode.Value == "Warp") then
  34. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * script.Parent.MaxSpeed
  35. Speed = script.Parent.MaxSpeed * 4
  36. elseif (script.Parent.CanFly.Value == "Yes") then
  37. if (script.Parent.Throttle ~= 0) then
  38. if (script.Parent.Throttle > 0) then
  39. if (Speed < script.Parent.MaxSpeed) then
  40. Speed = Speed + 1
  41. end
  42. elseif (script.Parent.Throttle < 0) then
  43. if (-Speed < script.Parent.MaxSpeed) then
  44. Speed = Speed - 1
  45. end
  46. end
  47. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * Speed/4
  48. elseif (script.Parent.Throttle == 0) then
  49. if (Speed ~= 0) then
  50. if (Speed > 0) then
  51. Speed = Speed - 1
  52. elseif (Speed < 0) then
  53. Speed = Speed + 1
  54. end
  55. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * Speed/4
  56. elseif (Speed == 0) then
  57. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  58. end
  59. end
  60.  
  61. if (script.Parent.Steer > 0) then
  62. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe * CFrame.fromEulerAnglesXYZ(0, -script.Parent.TurnSpeed/8, 0)
  63. elseif (script.Parent.Steer < 0) then
  64. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe * CFrame.fromEulerAnglesXYZ(0, script.Parent.TurnSpeed/8, 0)
  65. elseif (script.Parent.Steer == 0) then
  66. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe
  67. end
  68.  
  69. if (script.Parent:findFirstChild("VMode") ~= nil) then
  70. if (script.Parent.VMode.Value == "Up") then
  71. SavedYPosition = SavedYPosition + 1
  72. elseif (script.Parent.VMode.Value == "Down") then
  73. SavedYPosition = SavedYPosition - 1
  74. end
  75. end
  76. elseif (script.Parent.CanFly.Value == "No") then
  77. if (Speed ~= 0) then
  78. Speed = 0
  79. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  80. end
  81. end
  82. end
  83. wait(0.1)
  84. end
  85. end;
  86. function() -- HoverSeatGUI script by TankLeadfoot
  87.  
  88. local Lock = nil
  89.  
  90. while (script.Parent:findFirstChild("CanFly") == nil) do wait(0.1) end
  91. while (script.Parent:findFirstChild("VMode") == nil) do wait(0.1) end
  92.  
  93. script.Parent.CanFly.Value = "No"
  94. script.Parent.VMode.Value = "Hover"
  95.  
  96. function SelectedButton(hit)
  97. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  98. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  99. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.WarpButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  100. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  101. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  102.  
  103. if (script.Parent.VMode.Value == "Up") then
  104. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.BackgroundColor3 = Color3.new(1,1,0.8)
  105. elseif (script.Parent.VMode.Value == "Down") then
  106. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.BackgroundColor3 = Color3.new(1,1,0.8)
  107. elseif (script.Parent.VMode.Value == "Warp") then
  108. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.WarpButton.BackgroundColor3 = Color3.new(1,1,0.8)
  109. elseif (script.Parent.VMode.Value == "Hover") then
  110. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.BackgroundColor3 = Color3.new(1,1,0.8)
  111. elseif (script.Parent.VMode.Value == "AllStop") then
  112. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.BackgroundColor3 = Color3.new(1,1,0.8)
  113. end
  114. end
  115.  
  116. function Pilot(hit)
  117. if (Lock == nil) then
  118. Lock = true
  119.  
  120. if (hit == nil) then Lock = nil; return end
  121. if (hit.Parent:findFirstChild("Humanoid") == nil) then Lock = nil; return end
  122. if (game.Players:findFirstChild(hit.Parent.Name) == nil) then Lock = nil; return end
  123. wait(2)
  124. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  125. script.Parent.CanFly.Value = "Yes"
  126. end
  127. if (script.Parent:findFirstChild("VMode") ~= nil) then
  128. script.Parent.VMode.Value = "Hover"
  129. end
  130.  
  131. if (game.Players:findFirstChild(hit.Parent.Name).PlayerGui:findFirstChild("HoverSeat") == nil) then
  132. script.HoverSeat:Clone().Parent = game.Players:findFirstChild(hit.Parent.Name).PlayerGui
  133. SelectedButton(hit)
  134. end
  135.  
  136. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.MouseButton1Click:connect(function()
  137. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  138. if (script.Parent.CanFly.Value == "Yes") then
  139. script.Parent.VMode.Value = "Up"
  140. SelectedButton(hit)
  141. end
  142. end
  143. end)
  144. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.MouseButton1Click:connect(function()
  145. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  146. if (script.Parent.CanFly.Value == "Yes") then
  147. script.Parent.VMode.Value = "Down"
  148. SelectedButton(hit)
  149. end
  150. end
  151. end)
  152. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.WarpButton.MouseButton1Click:connect(function()
  153. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  154. if (script.Parent.CanFly.Value == "Yes") then
  155. script.Parent.VMode.Value = "Warp"
  156. shared.Warp = false
  157. SelectedButton(hit)
  158. end
  159. end
  160. end)
  161. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.MouseButton1Click:connect(function()
  162. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  163. script.Parent.VMode.Value = "Hover"
  164. script.Parent.CanFly.Value = "Yes"
  165. SelectedButton(hit)
  166. end
  167. end)
  168. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.MouseButton1Click:connect(function()
  169. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  170. script.Parent.VMode.Value = "AllStop"
  171. script.Parent.CanFly.Value = "No"
  172. SelectedButton(hit)
  173. end
  174. end)
  175.  
  176. while (hit.Parent.Humanoid.Health > 0) and (hit.Parent.Humanoid.Sit == true) do wait(0.1) end
  177. if (game.Players:findFirstChild(hit.Parent.Name).PlayerGui:findFirstChild("HoverSeat") ~= nil) then
  178. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat:Remove()
  179. end
  180.  
  181. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  182. script.Parent.CanFly.Value = "No"
  183. end
  184. Lock = nil
  185. end
  186. end
  187.  
  188. script.Parent.Touched:connect(Pilot)
  189. end;
  190. function() function onClicked(mouse)
  191. script.Parent.Transparency = 0.5
  192. script.Parent.CanCollide = false
  193. wait(5)
  194. script.Parent.Transparency = 0
  195. script.Parent.CanCollide = true-- Put the function right here.
  196. end
  197.  
  198. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  199. end;
  200. function() function onClicked(mouse)
  201. script.Parent.Transparency = 0.5
  202. script.Parent.CanCollide = false
  203. wait(5)
  204. script.Parent.Transparency = 0
  205. script.Parent.CanCollide = true-- Put the function right here.
  206. end
  207.  
  208. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  209. end;
  210. function() function onClicked(mouse)
  211. script.Parent.Transparency = 0.5
  212. script.Parent.CanCollide = false
  213. wait(5)
  214. script.Parent.Transparency = 0
  215. script.Parent.CanCollide = true-- Put the function right here.
  216. end
  217.  
  218. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  219. end;
  220. function() function onClicked(mouse)
  221. script.Parent.Transparency = 0.5
  222. script.Parent.CanCollide = false
  223. wait(5)
  224. script.Parent.Transparency = 0
  225. script.Parent.CanCollide = true-- Put the function right here.
  226. end
  227.  
  228. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  229. end;
  230. function() function onClicked(mouse)
  231. script.Parent.Transparency = 0.5
  232. script.Parent.CanCollide = false
  233. wait(5)
  234. script.Parent.Transparency = 0
  235. script.Parent.CanCollide = true-- Put the function right here.
  236. end
  237.  
  238. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  239. end;
  240. function() function onClicked(mouse)
  241. script.Parent.Transparency = 0.5
  242. script.Parent.CanCollide = false
  243. wait(5)
  244. script.Parent.Transparency = 0
  245. script.Parent.CanCollide = true-- Put the function right here.
  246. end
  247.  
  248. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  249. end;
  250. function() function onClicked(mouse)
  251. script.Parent.Transparency = 0.5
  252. script.Parent.CanCollide = false
  253. wait(5)
  254. script.Parent.Transparency = 0
  255. script.Parent.CanCollide = true-- Put the function right here.
  256. end
  257.  
  258. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  259. end;
  260. function() function onClicked(mouse)
  261. script.Parent.Transparency = 0.5
  262. script.Parent.CanCollide = false
  263. wait(5)
  264. script.Parent.Transparency = 0
  265. script.Parent.CanCollide = true-- Put the function right here.
  266. end
  267.  
  268. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  269. end;
  270. function() function onClicked(mouse)
  271. script.Parent.Transparency = 0.5
  272. script.Parent.CanCollide = false
  273. wait(5)
  274. script.Parent.Transparency = 0
  275. script.Parent.CanCollide = true-- Put the function right here.
  276. end
  277.  
  278. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  279. end;
  280. function() function onClicked(mouse)
  281. script.Parent.Transparency = 0.5
  282. script.Parent.CanCollide = false
  283. wait(5)
  284. script.Parent.Transparency = 0
  285. script.Parent.CanCollide = true-- Put the function right here.
  286. end
  287.  
  288. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  289. end;
  290. function() function onClicked(mouse)
  291. script.Parent.Transparency = 0.5
  292. script.Parent.CanCollide = false
  293. wait(5)
  294. script.Parent.Transparency = 0
  295. script.Parent.CanCollide = true-- Put the function right here.
  296. end
  297.  
  298. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  299. end;
  300. function() function onClicked(mouse)
  301. script.Parent.Transparency = 0.5
  302. script.Parent.CanCollide = false
  303. wait(5)
  304. script.Parent.Transparency = 0
  305. script.Parent.CanCollide = true-- Put the function right here.
  306. end
  307.  
  308. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  309. end;}local ActualScripts = {}
  310. function s(var)
  311. local func = table.remove(Scripts,1)
  312. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  313. __index = getfenv(func),
  314. }))
  315. table.insert(ActualScripts,coroutine.wrap(func))
  316. end
  317. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  318. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  319. function(t,f)
  320. for a,b in pairs(t) do
  321. f(a,b)
  322. end
  323. end
  324. local Types = {
  325. Color3 = Color3.new,
  326. Vector3 = Vector3.new,
  327. Vector2 = Vector2.new,
  328. UDim = UDim.new,
  329. UDim2 = UDim2.new,
  330. CFrame = CFrame.new,
  331. Rect = Rect.new,
  332. NumberRange = NumberRange.new,
  333. BrickColor = BrickColor.new,
  334. PhysicalProperties = PhysicalProperties.new,
  335. NumberSequence = function(...)
  336. local a = {...}
  337. local t = {}
  338. repeat
  339. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  340. until #a==0
  341. return NumberSequence.new(t)
  342. end,
  343. ColorSequence = function(...)
  344. local a = {...}
  345. local t = {}
  346. repeat
  347. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  348. until #a==0
  349. return ColorSequence.new(t)
  350. end,
  351. number = tonumber,
  352. boolean = function(a)
  353. return a=="1"
  354. end
  355. }
  356. split = function(str,sep)
  357. if not str then return end
  358. local fields = {}
  359. local ConcatNext = false
  360. str:gsub(("([^%s]+)"):format(sep),function(c)
  361. if ConcatNext == true then
  362. fields[#fields] = fields[#fields]..sep..c
  363. ConcatNext = false
  364. else
  365. fields[#fields+1] = c
  366. end
  367. if c:sub(#c)=="\\" then
  368. c = fields[#fields]
  369. fields[#fields] = c:sub(1,#c-1)
  370. ConcatNext = true
  371. end
  372. end)
  373. return fields
  374. end
  375. RemoveAndSplit = function(t)
  376. return split(table_remove(t,1),comma)
  377. end
  378. t = split(str,";")
  379. props = RemoveAndSplit(t)
  380. classes = RemoveAndSplit(t)
  381. values = split(table_remove(t,1),'|')
  382. ICList = RemoveAndSplit(t)
  383. InstanceList = {}
  384. Model = inst"Model"
  385. CurPar = Model
  386. table_foreach(t,function(ct,c)
  387. if c=="n" or c=="p" then
  388. CurPar = c=="n" and LastIns or CurPar[parnt]
  389. else
  390. ct = split(c,"|")
  391. local class = classes[tonum(table_remove(ct,1))]
  392. if class=="UnionOperation" then
  393. LastIns = {UsePartColor="1"}
  394. else
  395. LastIns = inst(class)
  396. if LastIns:IsA"Script" then
  397. s(LastIns)
  398. elseif LastIns:IsA("ModuleScript") then
  399. ms(LastIns)
  400. end
  401. end
  402.  
  403. local function SetProperty(LastIns,p,str,s)
  404. s = Types[typeof(LastIns[p])]
  405. if p=="CustomPhysicalProperties" then
  406. s = PhysicalProperties.new
  407. end
  408. if s then
  409. LastIns[p] = s(unpack(split(str,comma)))
  410. else
  411. LastIns[p] = str
  412. end
  413. end
  414.  
  415. local UnionData
  416. table_foreach(ct,function(s,p,a,str)
  417. a = p:find":"
  418. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  419. if p=="UnionData" then
  420. UnionData = split(str," ")
  421. return
  422. end
  423. if class=="UnionOperation" then
  424. LastIns[p] = str
  425. return
  426. end
  427. SetProperty(LastIns,p,str)
  428. end)
  429.  
  430. if UnionData then
  431. local LI_Data = LastIns
  432. LastIns = DecodeUnion(UnionData)
  433. table_foreach(LI_Data,function(p,str)
  434. SetProperty(LastIns,p,str)
  435. end)
  436. end
  437. table.insert(InstanceList,LastIns)
  438. LastIns[parnt] = CurPar
  439. end
  440. end)
  441. table_remove(ICList,1)
  442. table_foreach(ICList,function(a,b)
  443. b = split(b,">")
  444. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  445. end)
  446.  
  447. return Model:GetChildren()
  448. end
  449.  
  450. local Objects = Decode('Name,Position,Orientation,Size,BackSurface,BottomSurface,LeftSurface,RightSurface,TopSurface,C0,C1,Part0,Part1,Color,Offset,Scale,Transparency,FrontSurface,Torque,MaxSpeed,Value,MaxForce,MaxTorque,CFrame,BackgroundColor3,BackgroundTransparency,BorderSizePixel,SizeConstraint,Text,TextColor3,VertexColor;Part,Model,BlockMesh,Weld,Seat,CylinderMesh,VehicleSeat,StringValue,BodyPosition,BodyGyro,ManualWeld,Script,ScreenGui,Frame,TextButton,WedgePart,ClickDetector,TrussPart;Part|92.6008,32.0004,21.2532|0,180,-90|12,1,23|2|0,-0.5,0,1,0,0,-0,-0,-1,0,1,0|5.4999,15,63.5,1,0,0,0,0,-1,0,1,0|0,0,-11.5,-1,-0,-0,0,1,0,-0,-0,-'
  451. ..'1|-2.5001,0,35.5,-1,0,0,0,1,0,0,0,-1|92.6008,48.0004,62.2532|4,1,81|-5,5.5,-29,1,0,0,0,0,-1,0,1,0|94.6008,54.5004,67.7532|9,1,2|Table|Workers Seat|101.1008,38.2004,38.7532|0,180,0|2,0.4,2|0.4705,0.5647,0.5098|101.1008,38.6004,38.7532|0,-0.3001,0|0.8999,1,0.8999|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|0,0.2,0,1,0,0,0,0,-1,0,1,-0|101.1008,39.5004,37.5532|-90,-180,0|2,0.4,3|0,0,-1.5,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,7,47.1999,-0,-0,1,-1,-0,0,-0,-1,0|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|0,-0.2001,0.1999,-1,0,0,0,0,1,0,1,0|0,-0.2001,-1,-1,0,0,0,0,1,0,1,0|0,0.8999,0.9999,-1,0,0,0,1,0,0,0,-1|0,1.3,0.9999,-1,-0,-0,0,1,0,-0,-0,-1|101.1008'
  452. ..',40.5004,37.9532|2,0.4,1|0.8999,1,0.6999|101.1008,39.3004,37.9532|0.8999,1,1.2|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0.2,0.7999,-1,0,0,0,0,-1,0,-1,0|98.1008,38.2004,41.7532|0,-90,0|-0.5,10,43,0,0,1,0,1,0,-1,0,0|0,-0.2001,0,-1,0,0,0,0,1,0,1,0|0,0,1,1,0,0,0,1,0,0,0,1|0,0.1999,-1.3001,1,0,0,0,0,-1,0,1,0|98.1008,38.6004,41.7532|96.9008,39.5004,41.7532|-90,-90,0|-0.5,11.1999,43,0,0,1,0,-1,0,1,0,0|0,0.8999,1,-1,0,0,0,1,0,0,0,-1|97.3008,40.5004,41.7532|0,0.1999,1,1,0,0,0,0,-1,0,1,0|97.3008,39.3004,41.7532|0,0.2,0.8,-1,0,0,0,0,-1,0,-1,0|0,0.1999,-0.2,1,0,0,0,0,-1,0,1,0|104.1008,38.2004,41.7532|0,90,0|-0.5,4,43,0,-0,1,0,-'
  453. ..'1,0,1,-0,0|0,0.1999,-1.3001,1,-0,-0,0,-0,-1,0,1,0|104.1008,38.6004,41.7532|105.3008,39.5004,41.7532|-90,90,0|104.9008,40.5004,41.7532|104.9008,39.3004,41.7532|0,0.2,0.8,-1,0,-0,0,0,-1,0,-1,0|0,0.1999,-0.2,1,-0,-0,0,-0,-1,0,1,0|0.3882,0.3725,0.3843|101.1008,40.2004,41.7532|0,0,180|4,0.4,4|101.1008,39.0004,41.7532|2,2,2|1,1,0.5|0,1,0,-1,-0,-0,0,0,1,0,1,0|-0.5,7,43,0,0,1,-1,0,0,0,-1,0|0,-1,0,1,0,0,-0,-0,-1,0,1,0|0,0.1999,0,1,0,0,0,0,-1,0,1,0|101.1008,38.2004,44.7532|-0.5,7,40,-0,-0,1,-1,-0,0,-0,-1,0|0,0.1999,-1.3001,1,0,0,-0,-0,-1,0,1,0|101.1008,38.6004,44.7532|101.1008,39.5004,45.9532|-90,0,0|-0.5,7,38.8,0,0,1,1'
  454. ..',0,0,0,1,0|101.1008,40.5004,45.5532|101.1008,39.3004,45.5532|0,0.2,-0.2,1,0,0,-0,-0,-1,0,1,0|97.6008,13.0004,-4.7468|8,9,11|0,0,-5.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-29,10.5,-1,0,0,0,0,1,0,1,0|0,-4.5,0,1,0,0,-0,-0,-1,0,1,0|16.5,6,-0.0001,1,0,0,0,-0,-1,0,1,0|0,4.5,0,-1,-0,-0,0,0,1,0,1,0|16.5,-0.5,4.5,-1,0,0,0,0,1,0,1,0|0,0,5.5,1,0,0,0,1,0,0,0,1|-0.0001,10.5,-5,1,0,0,0,1,0,0,0,1|92.6008,24.0004,-20.2468|14,1,20|-7,0,0,-0,-0,-1,0,1,0,1,0,0|-0.0039,-2.9979,-8.9975,0,-1,0,0,0,1,-1,0,0|0,0,-10,-1,-0,-0,0,1,0,-0,-0,-1|5.5,0,10,-1,0,0,0,1,0,0,0,-1|7,0,0,0,0,1,0,1,0,-1,-0,-0|-4.0001,15.5,5,0,0,1,0,1,0,-1,0,0|4,-5.4001,-1,0,-'
  455. ..'1,0,1,0,-0,0,0,1|3.9999,-5.8001,-1,0,-1,0,1,0,0,0,0,1|-15.5,-5.5001,3.9998,0,-1,0,-1,0,0,-0.0001,0,-1|7.9999,-5.4001,-1,0,-1,0,1,0,0,0,0,1|-6.5001,7.9999,3.5,1,0,0,0,-1,0,0,0,-1|5.5,15,-8.5,1,0,0,0,0,-1,0,1,0|0,-3.0001,-1.0001,0,1,0,0,0,1,1,0,0|-6.5001,3.9999,3.5,1,0,0,0,-1,0,0,0,-1|0,0,10,1,0,0,0,1,0,0,0,1|0,15.5,-0.5,1,0,0,0,1,0,0,0,1|97.6008,17.5004,2.2532|0,0,-90|1,9,1|0.5,6,-0.5,-1,0,0,0,0,-1,0,-1,0|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-4,-27.5,10.5,0,0,1,-1,0,0,-0,-1,0|12,-0.5,-2.5,1,0,0,0,0,1,0,-1,0|0.0666,0.0666,0.0666|0.4|92.6008,23.5004,19.7532|1,5,20|0,-2.5,0,1,0,0,-0,-0,-1,0,1,0|-6.0001,0,59.5,0,0,1,1,0,0,'
  456. ..'0,1,0|0,2.5,0,-1,-0,-0,0,0,1,0,1,0|6,0,1.5,-0,0,-1,-1,0,-0,-0,1,-0|0,0,1.5,0,-1,0,-1,0,0,0,0,-1|6,0,-10,0,-1,0,1,0,0,0,0,1|97.6008,18.2004,-28.2468|0,90,180|4,0.4,5|0|96.6008,17.5004,-28.2468|0,-90,-90|1,4,7|-11.5,2.4999,3.9998,1,0,0,0,-1,0,0,-0.0001,-1|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,0.1999,-1,0,1,0,0,0,-1,-1,0,0|0,2,0,-1,-0,-0,0,0,1,0,1,0|0,-2,0,-1,0,0,0,0,1,0,1,0|0.9725,0.9725,0.9725|94.1008,18.6004,-28.2468|1.2999,1,1|94.1008,18.2004,-28.2468|4,0.4,2|2,0,0,0,0,1,0,1,0,-1,-0,-0|-2,0,0,0,0,1,0,1,0,-1,0,0|0,0.2,0,1,0,0,-0,-0,-1,0,1,0|0,0,-2.5,1,0,0,0,1,0,0,0,1|-2,0,0,-0,-0,-1,0,1,0,1,0,0|5.8,14,-0.5,0,1,0,-1,'
  457. ..'0,0,0,0,1|-0.5,0,2.5,0,-0,1,-1,0,0,0,-1,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|5.8,-0.5,7.9999,0,1,0,-0,0,1,1,0,-0|97.6008,18.5004,1.2532|-0.5,6,0.5,-1,0,0,0,0,-1,-0,-1,-0|11,-0.5,-1.5,1,0,0,0,0,1,0,-1,0|97.6008,18.2004,-24.2468|-0.5,0,-1,0,0,1,-1,0,0,0,-1,-0|2,0,0,0,0,-1,-0,1,0,1,0,0|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,1,-1,0,0,0,1,0,0,0,-1|96.6008,17.5004,-24.2468|94.1008,18.6004,-24.2468|94.1008,18.2004,-24.2468|-0.5,0,2.5,0,0,1,-1,0,0,0,-1,-0|0,0.2,0,1,0,0,0,0,-1,0,1,0|92.6008,29.5004,-0.2468|41,1,20|8,15,85,1,0,0,0,0,-1,0,1,0|-16.5001,-30,15,1,0,0,0,-1,0,0,0,-1|-4.0001,-4.5,5.5,1,0,-0,0,0,1,0,-1,0|2.5,0,11.5,-'
  458. ..'1,0,0,0,1,0,0,0,-1|-8.0001,-4.5,1.5,1,0,-0,0,0,1,0,-1,0|-2,-4.5,8.5,1,0,-0,0,0,1,0,-1,0|-2.5,5.5,9.5,1,0,0,0,0,-1,0,1,0|-10.0001,-4.5,-0.5,1,0,-0,0,0,1,0,-1,0|-16.5001,15.5,-5,1,0,0,0,1,0,0,0,1|Pilots Seat|HoverSeatV3|97.1008,28.5004,-24.2468|4,1,2|20|300|CanFly|No|VMode|Hover|-58,31.1,-89|inf,inf,inf|-753,0.9,-541,0.9689,0,-0.2475,0,1,0,0.2474,0,0.9689|HoverSeatV3-to-Part Strong Joint|-1,0.6,1,-1,0,0,0,0,1,0,1,0|1,-1,0.1,1,0,0,0,-1,0,0,0,-1|HoverSeat|HoverSeatGUI|Buttons|0.5,0,0.8999,0|0.1,0,0.1,0|1,1,1|1|0|UpButton|-2,0,0,0|1,0,1,0|0.498,0.498,0.498|Up|0,0,0|DownButton|Down|HoverButton|-1,0,0,0|1,0,0.5,0|All'
  459. ..'StopButton|-1,0,0.5,0|Exit/Stop|WarpButton|1,0,0,0|Slipspace|0,0,0.2|97.1008,30.4994,-23.0468|97.1008,30.2994,-23.4468|0,0.1999,-0.2001,1,0,0,-0,-0,-1,0,1,0|97.1008,31.4994,-23.4468|0,0.1999,1,1,0,0,-0,-0,-1,0,1,0|97.1008,29.1994,-24.2468|0,0.1999,-1.3,-1,0,0,0,0,-1,0,-1,0|97.1008,29.5994,-24.2468|0,0.8,-0.5001,-1,0,0,0,-1,0,0,0,1|0,0.1999,-0.9001,1,0,0,-0,-0,-1,0,1,0|0,-0.2,0,-1,0,0,0,0,1,0,1,0|97.6008,26.5004,-6.7468|3,6,2,-1,0,0,0,0,-1,0,-1,0|3,-0.5,6.5,1,0,0,0,0,1,0,-1,0|97.6008,27.5004,-8.7468|1,9,3|97.6008,25.5004,-5.7468|4,6,1,-1,0,0,0,0,-1,0,-1,0|97.6008,24.5004,-4.7468|5,6,0,-1,0,0,0,0,-1,0,-1,0|5,-0.'
  460. ..'5,4.5,1,0,0,0,0,1,0,-1,0|97.6008,23.5004,-3.7468|6,6,-1.0001,-1,0,0,0,0,-1,0,-1,0|6,-0.5,3.5,1,0,0,0,0,1,0,-1,0|97.6008,22.5004,-2.7468|7,6,-2.0001,-1,0,0,0,0,-1,0,-1,0|7,-0.5,2.5,1,0,0,0,0,1,0,-1,0|97.6008,20.5004,-0.7468|9,6,-4.0001,-1,-0,-0,-0,-0,-1,-0,-1,-0|9,-0.5,0.5,1,-0,0,0,-0,1,0,-1,0|97.6008,19.5004,0.2532|97.6008,21.5004,-1.7468|8,6,-3,-1,0,0,0,0,-1,0,-1,0|98.6008,27.0004,9.2532|20,11,1|92.6047,33.9982,-11.2493|1,6,2|-4.4979,-0.0039,10.0025,0,-1,-0.0001,-1,0,0,0,0,-1|92.6008,34.003,-11.2513|1,2,6|92.6008,34.0004,-21.2468|1,6,18|0,0,-9,-1,-0,-0,0,1,0,-0,-0,-1|-0.0001,-0.9955,-0.0027,-1,-0.0001,0,0,-0.'
  461. ..'0001,1,-0.0001,1,0|0,0,9,1,0,0,0,1,0,0,0,1|15.5,0,-0.5,1,0,0,0,1,0,0,0,1|92.6008,39.5004,-20.2468|5,1,20|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|15.5045,-5.4999,4,0,1,-0,1,0,0,0,0,-1|2.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.0001,-8.9955,2.9973,0,1,0,1,-0.0001,0,0,0,-1|4,15.5,5,0,0,-1,0,1,0,1,0,0|-10,0,10,-1,0,0,0,1,0,0,0,-1|0,3,-1.0001,-0,1,0,0,0,-1,-1,0,0|0,15.5,-0.5,1,0,0,-0,1,0,0,0,1|Room|103.6008,47.0004,22.2532|2,1,5|98.6008,43.0004,25.2532|10,11,1|5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,9.5,59.5,0,0,1,0,1,0,-1,0,0|0,0,0.5,1,0,0,0,1,0,0,0,1|4,5,-2.5,1,0,0,0,1,0,0,0,1|1,4.3999,-3.1,0,0,-1,1,0,0,0,-1,0|0,5.5,0,-1,-0,-0,0,0,1,0,1,0|5,'
  462. ..'-0.5,37,-1,0,0,0,0,1,0,1,0|103.6008,42.0004,24.2532|8,1,1|4,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,4.5,60.5,0,0,1,0,1,0,-1,0,0|-4,0,0,-0,-0,-1,0,1,0,1,0,0|1,0,-2,0,0,-1,0,1,-0,1,0,-0|0,0,2,0,-1,0,-1,0,0,0,0,-1|1,-5,0.5,-1,0,0,0,1,0,0,0,-1|103.6008,43.0004,18.7532|10,1,2|-0.5,4.5,66,0,0,1,0,1,0,-1,0,0|4,0,2.5,-1,0,0,0,1,0,0,0,-1|0.0156,0.6862,0.9254|95.1008,39.2004,20.2532|0,180,180|-0.5,0,-1,0,0,1,-1,0,0,0,-1,0|95.1008,38.5004,21.2532|-0.5,13,63.5,0,0,1,0,-1,0,1,0,0|0,0,3.5,1,0,0,0,1,0,0,0,1|4.5,3.5,0.5,1,0,0,0,-1,0,0,0,-1|95.1008,39.6004,23.7532|3.3999,3.5,0.5,0,1,0,1,0,0,-0,0,-1|95.1008,39.2004,23.7532|0,0.2,0,1,0,0,'
  463. ..'-0,0,-1,-0,1,-0|-0.5,0,2.5,0,0,1,-1,-0,-0,-0,-1,-0|0,0,-2.5,1,0,0,-0,1,0,-0,0,1|0.3,-0.5,38.5,0,1,0,0,0,1,1,0,0|3.8,3.5,0.5,0,1,-0,1,0,-0,0,0,-1|101.7008,38.2004,18.7532|-0.5,6.4,66,0,0,1,0,-1,0,1,0,0|0,0.2,-1.3001,1,0,0,0,0,-1,0,1,0|101.7008,38.6004,18.7532|0,0.8,-0.5001,-1,-0,-0,-0,-1,-0,0,0,1|0,0.2,-0.9,1,-0,-0,0,-0,-1,0,1,0|1,0,0,0,0,1,0,1,0,-1,-0,-0|4.3999,-3.1,-0.5,0,-1,0,1,-0,0,0,-0,1|0,0.2,0,1,-0,0,0,0,-1,0,1,0|102.9008,39.5004,18.7532|-0.5,5.1999,66,0,0,1,0,1,0,-1,0,0|3.5,0.5,0,0,-1,0,0,0,-1,1,0,0|102.5008,40.5004,18.7532|102.5008,39.3004,18.7532|103.6008,42.0004,21.7532|1,8,4|0,-4,0,1,0,0,-0,-0,-1,0,'
  464. ..'1,0|-0.5,4.5,63,0,0,1,-1,0,0,0,-1,0|0,4,0,-1,-0,-0,0,0,1,0,1,0|1,0,0.5,0,0,-1,1,0,0,0,-1,0|103.6008,47.0004,14.2532|-4,0,2,0,0,1,0,1,0,-1,0,0|0,0,2.5,1,0,0,0,1,0,0,0,1|-4,0,-1,1,0,0,0,1,0,0,0,1|98.6008,43.0004,17.2532|-0.5,9.5,67.5,0,0,1,0,1,0,-1,0,0|1,3.9,2.5,0,0,-1,0,1,0,1,0,0|1,3.9,3.6999,0,0,-1,0,1,0,1,0,0|-1,5,-0.5,1,0,0,0,1,0,0,0,1|0,5,1,-1,0,0,0,1,0,0,0,-1|3.5,-3.8001,-1,0,-1,0,1,0,0,0,0,1|3.5,-3.4,-1,0,-1,0,1,0,0,0,0,1|-4.5,3.5,3.5,1,0,0,0,-1,0,0,0,-1|3.5,-3.8001,2.5,0,-1,0,-1,0,0,0,0,-1|1,4.3,3.5,0,0,-1,0,1,0,1,0,0|1,-0.5,-1.5,-1,0,0,0,0,1,0,1,0|103.6008,42.0004,16.2532|103.6008,43.0004,10.7532|-0.5,4'
  465. ..'.5,74,0,0,1,0,1,0,-1,0,0|0,0.5,0,-1,-0,-0,0,0,1,0,1,0|0,-0.2,3.5,0,1,0,0,0,1,1,0,0|95.1008,39.2004,12.2532|0,0,1,-1,0,0,0,1,-0,0,0,-1|-0.5,0,-1,0,0,1,-1,-0,-0,-0,-1,-0|4.3,3.5,-0.5,-0,1,0,-1,0,0,-0,0,1|4.8,-0.5,3.5,0,1,0,0,0,1,1,0,0|95.1008,38.5004,13.2532|-0.5,13,71.5,0,0,1,0,-1,0,1,0,0|0,0.1999,2.5,0,1,0,0,0,-1,-1,0,0|95.1008,39.6004,15.7532|95.1008,39.2004,15.7532|101.7008,38.2004,10.7532|-0.5,6.4,74,0,0,1,0,-1,0,1,0,0|101.7008,38.6004,10.7532|0,0.2,-0.9,1,0,0,0,0,-1,0,1,0|102.9008,39.5004,10.7532|-0.5,5.1999,74,0,0,1,0,1,0,-1,0,0|102.5008,40.5004,10.7532|102.5008,39.3004,10.7532|0,0.2,-0.2,1,0,0,0,0,-1,0,1'
  466. ..',0|103.6008,42.0004,13.7532|-0.5,4.5,71,0,0,1,-1,0,0,0,-1,0|1,0,0.5,0,-0,-1,1,-0,-0,0,-1,-0|0,0,2,1,0,0,0,1,0,0,0,1|0,0,0.5,-0,-1,-0,-1,-0,-0,-0,-0,-1|103.6008,47.0004,30.2532|98.6008,43.0004,33.2532|103.6008,42.0004,32.2532|-0.5,4.5,52.5,0,0,1,0,1,0,-1,0,0|1,0,-2,0,0,-1,0,1,0,1,0,0|103.6008,43.0004,26.7532|-0.5,4.5,58,0,0,1,0,1,0,-1,0,0|0,-5,-0.5,1,0,0,0,1,0,0,0,1|95.1008,39.2004,28.2532|0.3,-0.5,34,0,1,0,0,0,1,1,0,0|3.8,3.5,-0.5,0,1,0,-1,0,0,0,0,1|95.1008,38.5004,29.2532|-0.5,13,55.5,0,0,1,0,-1,0,1,0,0|0,-2,0,1,0,0,-0,-0,-1,0,1,0|1,-0.5,33,1,0,0,0,0,1,0,-1,0|95.1008,39.6004,31.7532|95.1008,39.2004,31.7532|0.'
  467. ..'3,-0.5,30.5,0,1,0,0,0,1,1,0,0|101.7008,38.2004,26.7532|-0.5,6.4,58,0,0,1,0,-1,0,1,0,0|0,-0.2001,0,-1,-0,-0,0,0,1,0,1,0|0,0.2,-1.3001,1,-0,-0,0,-0,-1,0,1,0|101.7008,38.6004,26.7532|102.9008,39.5004,26.7532|-0.5,5.1999,58,0,0,1,0,1,0,-1,0,-0|3.5,-4.3001,-0.5,1,0,0,0,1,0,0,0,1|102.5008,40.5004,26.7532|0,0.2,1,1,0,0,0,0,-1,0,1,0|2.5,-3.9001,-0.5,1,0,0,0,1,0,0,0,1|102.5008,39.3004,26.7532|3.6999,-3.9001,-0.5,1,0,0,0,1,0,0,0,1|103.6008,42.0004,29.7532|-0.5,4.5,55,0,0,1,-1,0,0,0,-1,0|97.6008,39.0004,0.2532|4,9,1|-1.5,10.5,84,-1,0,0,0,1,0,0,0,-1|-9.5,6,-5.0001,1,0,0,0,0,-1,0,1,0|-9.5,-0.5,-0.5,-1,0,0,0,0,1,0,1,0|92.60'
  468. ..'08,43.5004,62.2532|1,5,81|0,0,-40.5,-1,-0,-0,0,1,0,-0,-0,-1|0.5,0,0.5,-0,-1,-0,-1,-0,-0,-0,-0,-1|0,5.5,14,0,-1,-0,0,-0,-1,1,-0,-0|-0.5,5.5,-29,0,-1,0,0,0,-1,1,0,0|-1.5,0,0,0,0,1,1,0,0,0,1,0|-0.5,5.5,-37,0,-1,0,0,0,-1,1,0,0|0,0,40.5,1,0,0,0,1,0,0,0,1|0.5,0,-6,0,-1,0,1,-0,0,0,-0,1|0,5.5,-28,0,-1,-0,0,-0,-1,1,-0,-0|2,0,0,-0,0,-1,-1,0,-0,-0,1,-0|92.6008,44.0004,15.7532|12,1,12|0,0,-6,-1,-0,-0,0,1,0,-0,-0,-1|-4.5,0,40.5,-1,0,0,0,1,0,0,0,-1|-2,-4.8001,0,0,0,1,1,0,0,0,1,0|-5.5,-2,-5.5,1,0,0,0,0,1,0,-1,0|-2,-4.8001,4.5,0,0,1,1,0,0,0,1,0|4,0,40.5,-1,0,0,0,1,0,0,0,-1|6,0,0,0,0,1,0,1,0,-1,-0,-0|-6,0,5.5,0,0,1,0,1,0,-1,0,'
  469. ..'0|-5.5,-2,2.5,1,0,0,0,0,1,0,-1,0|5.5,15,23,1,0,0,0,0,-1,0,1,0|0,0,6,1,0,0,0,1,0,0,0,1|-14.5,0,-10,1,0,0,0,1,0,0,0,1|98.6008,43.5004,9.2532|11,11,1|5.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,9.5,75.5,0,0,1,0,1,0,-1,0,0|1,3.9,4.1999,0,0,-1,0,1,0,1,0,0|1,4.8999,-3.1,0,0,-1,1,0,0,0,-1,0|1,4.3,4,0,0,-1,0,1,0,1,0,0|1,3.9,3,0,0,-1,0,1,0,1,0,0|-0.5,5,1,-1,0,0,0,1,0,0,0,-1|-5.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,9.5,29.5,0,0,-1,0,1,0,1,0,0|-14,-0.5,-9.5,-1,0,0,0,0,1,0,1,0|98.6008,43.5004,34.2532|-0.5,9.5,50.5,0,0,1,0,1,0,-1,0,0|4.5,-0.5,28,-1,0,0,0,0,1,0,1,0|-0.5,0,-0.5,1,0,0,0,1,0,0,0,1|97.6008,49.5004,-4.7468|1,9,11|-20,6,-0.0001,1'
  470. ..',0,0,0,0,-1,0,1,0|0,10.5,38,-1,0,0,0,1,0,0,0,-1|-20,-0.5,4.5,-1,0,0,0,0,1,0,1,0|94.6008,54.5004,92.2532|1,5,47|1,0,0,0,0,-1,-1,0,0,0,1,0|0,0,-23.5,-1,-0,-0,0,1,0,-0,-0,-1|13.5,-0.5,9,-1,0,0,0,1,0,0,0,-1|-1,0,0,0,0,1,1,0,0,0,1,0|0,0,23.5,1,0,0,0,1,0,0,0,1|0,0,-1,0,-1,0,1,-0,0,0,-0,1|94.6008,58.0004,92.2532|2,1,47|13.5,3,9,0,1,0,1,0,0,0,0,-1|-3.5,0,-1,1,0,0,0,1,0,0,0,1|-1,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,13.5,-1,0,0,-1,0,1,0,1,0,0|108.1008,13.0004,-15.2468|8,32,10|0,0,-5,-1,-0,-0,0,1,0,-0,-0,-1|16.5,0,5.5,-1,0,0,0,1,0,0,0,-1|108.1008,13.0006,-25.7469|32,11,8|0,0,4,1,0,0,0,1,0,0,0,1|0.4998,-1.5001,-11.5,0,0,-1,0,-1,-'
  471. ..'0.0001,-1,-0,0|0,-5.5,0,1,0,0,-0,-0,-1,0,1,0|-0.0002,0,5,0,-1,-0.0001,-1,0,0,0,0,-1|92.6008,23.5004,31.2532|5,1,3|6,0,-10,0,0,-1,0,1,0,1,0,0|6,0,35.5,-1,0,0,0,1,0,0,0,-1|108.1008,18.0004,1.7532|2,12,2|-4,-28,0,0,0,1,1,0,0,0,1,0|0.5,0,-0.5,0,0,-1,0,1,0,1,0,0|11.5,0,-5.5,1,0,0,0,1,0,0,0,1|108.1008,22.5004,9.2532|8,11,1|-4.0001,-20.5,0,-0,-0,1,0,1,0,-1,-0,0|4.5,5.5,0,0,-1,-0,0,-0,-1,1,-0,-0|4.5,0,0,0,-0,-1,1,-0,-0,0,-1,-0|4.5,-5.5,0,-0,-1,0,-0,-0,1,-1,-0,0|Co-pilots seat|104.1008,29.2004,-24.2468|104.1008,29.6004,-24.2468|0,0.8,-0.5,-1,0,0,0,-1,0,0,0,1|104.1008,30.5004,-23.0468|0,1.2999,0.9999,-1,0,0,0,1,0,0,0,-1'
  472. ..'|0,-0.2,0.2,-1,0,0,0,0,1,0,1,0|0,-0.2,-1,-1,0,0,0,0,1,0,1,0|104.1008,31.5004,-23.4468|104.1008,30.3004,-23.4468|104.1008,28.5004,-24.2468|2,1,2|108.1008,26.5004,1.2532|1,12,1|0,3,0,0,1,0,0,0,-1,-1,0,0|3,0,-5.5,1,0,0,0,1,0,0,0,1|102.6008,23.0004,1.2532|6,1,1|-3,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,5.5,0,0,0,-1,0,1,-0,1,0,-0|3,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5001,5.5,0,-0,0,1,-0,1,0,-1,0,0|5,0,0,0,0,-1,-1,0,0,0,1,-0|6.5,5.5,-5.5,1,0,0,0,1,0,0,0,1|108.1008,23.0004,1.2532|10,6,1|6.5,0,-5.5,0,-1,0,1,0,0,0,0,1|108.1008,19.5004,1.2532|0,-3.0001,0,0,1,0,0,0,1,1,0,0|10,0,-5.5,1,0,0,0,1,0,0,0,1|113.6008,23.0004,1.2532|0.5,-5.5,0,0,'
  473. ..'0,-1,0,1,0,1,0,0|-5,0,0,0,0,1,1,0,0,0,1,0|-0.5001,-5.5,0,0,0,1,0,1,0,-1,0,0|6.5,-5.5,-5.5,1,0,0,0,1,0,0,0,1|92.6008,39.5004,62.2532|3,1,81|4.5,0,0.5,-1,0,0,0,1,0,0,0,-1|1.5,0,0,0,0,1,0,1,0,-1,-0,-0|-8.5,0,6,0,0,1,0,1,0,-1,0,0|3.5,5.5,-29,1,0,0,0,0,-1,0,1,0|-2,-0.3001,-42,0,0,1,1,0,0,0,1,0|-1,-2,41,1,0,0,0,0,1,0,-1,0|4,5.5,-28,1,0,0,0,0,-1,0,1,0|3.5,5.5,-37,1,0,0,0,0,-1,0,1,0|-6,0,-41,0,0,1,0,1,0,-1,0,0|108.1008,32.5004,9.2532|9,8,1|-4.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.4999,0,75.5,0,0,-1,0,1,0,1,0,0|-5.5001,-5.5,0,-1,0,0,0,0,1,0,1,0|108.1008,49.5004,38.7532|1,30,76|4.5,13.5,28.9999,0,0,-1,0,1,0,0.9999,0,0|0,0,-38,-1'
  474. ..',-0,-0,0,1,0,-0,-0,-1|0,12.5,13.5,-1,0,0,0,1,0,0,0,-1|0,0,38,1,0,0,0,1,0,0,0,1|0,10.5,-5.5001,1,0,0,0,1,0,0,0,1|-5.5,9.5,-4.5,0,0,1,0,1,0,-1,0,0|0,5.5,-37.5,0,-1,0,0,0,-1,1,0,0|-20,0,-5.5001,1,0,0,0,1,0,0,0,1|1,-13.5,53.5,0,0,-1,0,1,0,1,0,0|-5.5,9.5,37.5,0,0,1,0,1,0,-1,0,0|0,-15,0,1,0,0,-0,-0,-1,0,1,0|-5.5,0.5,-23,1,0,0,0,0,-1,0,1,0|-5.5,-9.5,-4.5,0,0,1,0,1,0,-1,0,0|4.5,-13.5,28.9999,0,0,-1,0,1,0,0.9999,0,0|0,15,0,-1,-0,-0,0,0,1,0,1,0|-1.5,-0.5,23.5,-1,0,0,0,0,1,0,1,0|-1.5,0.5,23.5,1,0,-0,0,0,-1,0,1,-0|1,13.5,53.5,0,0,-1,0,1,0,1,0,0|-20,-0.5,-39,-1,0,0,0,0,1,0,1,0|103.6008,49.5004,90.2532|1,21,27|0,0,-13.5,-1,'
  475. ..'-0,-0,0,1,0,-0,-0,-1|0,4.5,32.5,-1,0,0,0,1,0,0,0,-1|0,0,13.5,1,0,0,0,1,0,0,0,1|0,4.5,-38,1,0,0,0,1,0,0,0,1|0,-10.5,0,1,0,0,-0,-0,-1,0,1,0|0,2,3,1,0,0,0,0,-1,0,1,0|0,10.5,0,-1,-0,-0,0,0,1,0,1,0|-5.5,-0.5,13,-1,0,0,0,0,1,0,1,0|1,-9,2,0,0,-1,0,1,0,1,0,0|-1.5,-0.5,-28,-1,0,0,0,0,1,0,1,0|108.1008,43.5004,76.2532|100.1008,38.2004,62.7532|-0.5,8,22,0,0,1,1,0,0,0,1,0|0,0.1999,-1.3001,1,-0,0,0,0,-1,0,1,0|100.1008,38.6004,62.7532|100.1008,39.5004,61.5532|-0.5,8,23.1999,0,0,1,-1,0,0,0,-1,0|100.1008,40.5004,61.9532|100.1008,39.3004,61.9532|97.1008,38.2004,65.7532|-0.5,11,19,0,0,1,0,1,0,-1,0,0|97.1008,38.6004,65.7532|0,0.1'
  476. ..'999,-0.9,1,0,0,0,0,-1,0,1,0|95.9008,39.5004,65.7532|96.3008,40.5004,65.7532|96.3008,39.3004,65.7532|103.1008,38.2004,65.7532|-0.5,5,19,0,0,1,0,-1,-0,1,0,0|103.1008,38.6004,65.7532|104.3008,39.5004,65.7532|-0.5,3.8,19,0,0,1,0,1,0,-1,0,0|0,1.3,1,-1,-0,0,0,1,0,0,0,-1|103.9008,40.5004,65.7532|103.9008,39.3004,65.7532|100.1008,40.2004,65.7532|0,-1,0,-1,-0,0,-0,-0,1,0,1,0|100.1008,39.0004,65.7532|100.1008,38.2004,68.7532|-0.5,8,16,0,0,1,-1,0,0,0,-1,0|100.1008,38.6004,68.7532|100.1008,39.5004,69.9532|-0.5,8,14.8,0,0,1,1,0,0,0,1,0|100.1008,40.5004,69.5532|0,0.2,1,1,0,0,-0,-0,-1,0,1,0|100.1008,39.3004,69.5532|94.6008,5'
  477. ..'1.0004,92.2532|-0.5,13.5,44,0,0,1,0,1,0,-1,0,0|3.5,0,-1.0001,0.9999,0,0,0,1,0,0,0,0.9999|108.1008,55.0004,57.7532|28,10,18|0,-5,0,1,0,0,-0,-0,-1,0,1,0|-0.5,0,-19,0,-0.0001,0.9999,-1,0,0,0,-1,-0.0001|-0.5,13.5,1,0,-1,-0.0001,-1,0,0,0,0,-1|-0.5,-13.5,1,0,-1,-0.0001,-1,0,0,0,0,-1|98.6008,43.5004,76.2532|-0.5,9.5,8.5,0,0,1,0,1,0,-1,0,0|-4,0,0,0,0,1,-1,0,0,0,-1,0|4.5,-0.5,-14,-1,0,0,0,0,1,0,1,0|0.5,9.5,-37.5,0,0,-1,0,1,0,1,0,0|-4,-0.5,-14,-1,0,0,0,0,1,0,1,0|108.1008,59.5004,91.2532|1,28,49|-1,13.5,1,0,0,1,0,1,0,-1,0,0|-4.5,13.5,-23.5,-0,0,1,-0,1,0,-1,0,0|0,0,-24.5,-1,-0,-0,0,1,0,-0,-0,-1|0,4.5,9,0,1,0,1,0,0,0,0,-1|'
  478. ..'-4.5,-13.5,-23.5,0,0,1,0,1,0,-1,0,0|0,0,24.5,1,0,0,0,1,0,0,0,1|0,4.5,9,0,-1,0,-1,0,0,-0.0001,0,-1|108.1008,40.1004,-10.7468|102.6008,36.6004,-10.7468|0.5,5.5,0,0,0,-1,0,1,0,1,0,0|-0.5001,5.5,0,0,0,1,0,1,0,-1,0,0|-7.1001,5.5,5.5,-1,0,0,0,1,0,0,0,-1|108.1008,36.6004,-10.7468|0,3,0,-1,-0,-0,0,0,1,0,1,0|0.5,0,0,-0,0,-1,-1,0,-0,-0,1,-0|0,-0.5,0,-0,-1,0,-0,-0,1,-1,-0,0|0,-3,0,1,0,0,-0,-0,-1,0,1,0|-0.5001,0,0,0,0,1,1,0,0,0,1,0|-5,0,0,-0,-0,-1,0,1,0,1,0,0|0,0.5,0,0,-1,-0,0,-0,-1,1,-0,-0|-7.1001,0,5.5,-0,-1,-0,-1,-0,-0,-0,-0,-1|108.1008,33.1004,-10.7468|113.6008,36.6004,-10.7468|-7.1001,-5.5,5.5,-1,0,0,0,1,0,0,0,-1|108'
  479. ..'.1008,13.0004,29.7532|8,58,30|0,0,-15,-1,-0,-0,0,1,0,-0,-0,-1|2,0.5,49.5,-1,0,0,0,0,-1,0,-1,0|0,-29,0,1,0,0,-0,-0,-1,0,1,0|16.5,0,-5.5,1,0,0,0,1,0,0,0,1|10,-9.5,-20.5,0,0,-1,1,0,0,0,-1,0|0,29,0,-1,-0,-0,0,0,1,0,1,0|0,-6,4.5,-1,0,0,0,1,0,0,0,-1|-7.5,-0.5,18.5,1,0,0,0,0,1,0,-1,0|92.6008,29.5004,68.2532|17,1,71|8,15,16.5,1,0,0,0,0,-1,0,1,0|0,0,-35.5,-1,-0,-0,0,1,0,-0,-0,-1|2.5,0,18.5,-1,0,0,0,1,0,0,0,-1|108.1008,24.0004,-30.7468|14,32,1|0,-3.0001,0,0,1,-0,0,0,1,1,0,-0|0,4.9999,3.9998,0,-1,0,-1,-0,0,-0.0001,0,-1|-2,-5.8001,10.5,0,0,1,-1,0,0,0,-1,0|-0.0001,15.5,9.9999,-1,0,0,0,1,0,0,0,-1|5.5,0,1.4999,-1,0,0,0,1,0,0'
  480. ..',0,-1|-6.5001,-2,-11.5,-1,0,0,0,0,1,0,1,0|108.1008,27.5004,-20.2468|1,30,20|-4,0.5,4,0,1,-0,0,0,-1,-1,0,0|-3.5001,0.5,0,1,0,0,0,0,-1,0,1,0|-0.5,0,9.4999,-0,0,1,-0,1,0,-1,0,0|2,0,5.4999,-1,0,0,0,1,0,0,0,-1|11,-0.5,4,0,-1,0,0,0,1,-1,0,0|-3.5001,0,-0.5,1,0,0,0,1,0,0,0,1|4,0.5,4,0,1,0,0,0,-1,-1,0,0|-3.5001,-0.5,-0.0001,-1,0,0,0,0,1,0,1,0|1.5,0,-8.5,0,0,-1,0,1,0,1,0,0|108.1008,26.5004,-10.7468|3,0,5.5,-1,0,0,0,1,0,0,0,-1|102.6008,23.0004,-10.7468|0.5,5.5,-0.0001,0,0,-1,0,1,0,1,0,0|6.5,5.5,5.4999,-1,0,0,0,1,0,0,0,-1|-0.5001,5.5,-0.0001,0,0,1,0,1,0,-1,0,0|5,0,-0.0001,0,0,-1,-1,0,0,0,1,0|108.1008,23.0004,-10.7468|0.5,'
  481. ..'0,-0.0001,0,0,-1,-1,0,0,0,1,0|6.5,0,5.5,0,-1,0,-1,0,0,0,0,-1|108.1008,19.5004,-10.7468|10,0,5.5,-1,0,0,0,1,0,0,0,-1|113.6008,23.0004,-10.7468|-0.5001,-5.5,0,-0,0,1,-0,1,0,-1,0,0|-5,0,0,-0,0,1,1,0,0,-0,1,0|6.5,-5.5,5.5,-1,0,0,0,1,0,0,0,-1|108.1008,29.5004,-28.7468|3,30,3|108.1008,29.5004,-4.7468|41,12,11|0,-6,0,1,0,0,-0,-0,-1,0,1,0|-1,4.5,-5.0001,1,0,0,0,0,-1,0,1,0|0,4.5,-4.0001,1,0,0,0,0,-1,0,1,0|1,4.5,-3.0001,1,0,0,0,0,-1,0,1,0|0,6,0,-1,-0,-0,0,0,1,0,1,0|-2,4.5,4,-1,0,0,0,0,-1,0,-1,0|10.6,0,-0.5,1,0,0,0,1,0,0,0,1|3.5999,0,-0.5,1,0,0,0,1,0,0,0,1|8,0,84,-1,0,0,0,1,0,0,0,-1|-10.0001,4.5,-5,-1,0,0,0,0,-1,0,-1,0|1'
  482. ..'08.1142,31.5023,-29.2473|30,1,2|-0.0134,-2.4981,-0.4995,1,0,0,0,1,0,0,0,1|-1.502,-0.0134,0.5005,0,0,1,1,0,0,0,1,0|112.1008,29.2004,-24.2468|0,0.1999,-1.3,1,0,0,0,0,-1,0,1,0|112.1008,29.6004,-24.2468|112.1008,30.5004,-23.0468|112.1008,31.5004,-23.4468|112.1008,30.3004,-23.4468|0,0.1999,0.8,-1,0,0,0,0,-1,0,-1,0|0,0.1999,-0.2001,1,0,0,0,0,-1,0,1,0|112.1008,28.5004,-24.2468|108.1008,34.0004,-30.7468|32,6,1|108.1008,39.5004,-30.7468|5,32,1|0.0045,5.0001,4,0,1,0,1,0,0,0,0,-1|108.1054,46.0004,-25.7466|90,180,0|108.1008,46.0004,-15.2468|3.5,10.5,5.4999,-1,0,0,0,1,0,0,0,-1|3.5,-10.5,5.4999,-1,0,0,0,1,0,0,0,-1|-16.5,-15'
  483. ..'.5,10,-1,0,0,0,1,0,0,0,-1|-16.5,0,5.4999,-1,0,0,0,1,0,0,0,-1|0,0,5,1,0,0,0,1,0,0,0,1|0.0045,-5.4999,0,0,1,0,0,0,1,1,0,0|113.1008,38.2004,51.7532|-0.5,-5,33,0,0,1,1,0,0,0,1,0|113.1008,38.6004,51.7532|0,0.7999,-0.5001,-1,0,0,0,-1,0,0,0,1|0,0.1999,-0.9,1,-0,0,0,0,-1,0,1,0|113.1008,39.5004,50.5532|-0.5,-5,34.1999,0,0,1,-1,0,0,0,-1,0|113.1008,40.5004,50.9532|0,0.2,1,1,-0,0,0,0,-1,0,1,0|113.1008,39.3004,50.9532|110.1008,38.2004,54.7532|110.1008,38.6004,54.7532|108.9008,39.5004,54.7532|-0.5,-0.8001,30,0,-0,1,0,-1,0,1,-0,0|0,-0.2,0.1999,-1,0,0,0,0,1,0,1,0|0,1.3,1,-1,0,0,0,1,0,0,-0,-1|109.3008,40.5004,54.7532|109.3008,'
  484. ..'39.3004,54.7532|116.1008,38.2004,54.7532|-0.5,-8,30,0,-0,1,0,-1,0,1,-0,0|116.1008,38.6004,54.7532|117.3008,39.5004,54.7532|-0.5,-9.2,30,0,0,1,0,1,0,-1,0,-0|116.9008,40.5004,54.7532|116.9008,39.3004,54.7532|113.1008,40.2004,54.7532|113.1008,39.0004,54.7532|-0.5,-5,30,0,0,1,-1,0,0,0,-1,0|113.1008,38.2004,57.7532|-0.5,-5,27,0,0,1,-1,0,0,0,-1,0|113.1008,38.6004,57.7532|113.1008,39.5004,58.9532|-0.5,-5,25.8,0,0,1,1,0,0,0,1,0|0,1.3,1,-1,0,0,0,1,0,0,0,-1|113.1008,40.5004,58.5532|113.1008,39.3004,58.5532|87.1008,25.5004,63.7532|10,26,11|4,0.5,4.5,-1,0,0,0,0,-1,0,-1,0|92.6008,44.0004,103.2532|12,1,1|-8.5,0,-35,0,0,1,0,'
  485. ..'1,0,-1,0,0|4,0,-40.5,1,0,0,0,1,0,0,0,1|0,0,32.5,-1,0,0,0,1,0,0,0,-1|118.6008,13.0004,-4.7468|0,-29,-10.5,-1,0,0,0,0,1,0,1,0|0,-4.0001,-5,0,-1,0,0,0,1,-1,0,0|5.5,-3.5,5,0,0,-1,0,1,0,1,0,0|0,-10.5,-5,1,0,0,0,1,0,0,0,1|16.5,-6,-0.0001,-1,0,0,0,0,1,0,1,0|115.1008,22.5004,0.2532|11,2,1|7,-6,-5.0001,-1,0,0,0,0,1,0,1,0|117.6008,27.0004,9.2532|10,0,0,0,0,1,0,1,0,-1,-0,-0|-4.0001,-20.5,-9.5,0,0,1,1,0,0,0,1,0|-10,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,-9.5,75.5,0,0,-1,0,1,0,1,0,0|5.5,-4,0,-1,0,0,0,0,1,0,1,0|116.1008,44.0004,77.7532|-0.5,-8,7,0,0,1,-1,0,0,0,-1,0|108.1008,37.5004,84.7532|1,30,168|1,13.5,-35.5,0,0,-1,0,1,0,1,0,0|1,1'
  486. ..'3.5,-41.5,0,0,-1,0,1,0,1,0,0|60,-5.2,-1.5,-1,0,0,0,-1,0,0,0,1|5.5,5.5,-81.5,0,1,0,0,0,-1,-1,0,0|30,-0.2,2,-1,0,0,0,0,1,0,1,0|5,-4.5,52,0,0,-1,0,-1,0,-1,0,0|0,-5.5,8.5,0,-1,0,0,0,1,-1,0,0|4,-4.5,73.5,0,0,-1,0,-1,0,-1,0,0|-7,-0.2,-46,0,1,0,0,0,1,1,0,0|4,-4.5,-68.5,0,0,-1,0,1,0,1,0,0|19,12.1999,-1.5,-1,0,0,0,-1,0,0,0,1|5,-9.5,-51.5,0,0,-1,0,1,0,1,0,0|-43,-2.8001,-1.5,1,0,0,0,1,0,0,0,1|-10,-9.5,-75.5,0,0,1,0,1,0,-1,0,0|-8,1,19,0,1,0,0,0,-1,-1,0,0|5,-9.5,74.5,0,0,-1,0,-1,0,-1,0,0|116.1008,49.5004,93.2532|1,4,21|0,0,-10.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-8,32.5,-1,0,0,0,1,0,0,0,-1|0,2.5,-3,1,0,0,0,0,-1,0,1,0|117.6008,43.5'
  487. ..'004,76.2532|-0.5,-9.5,8.5,0,0,1,0,1,0,-1,0,0|4.5,0.5,-14,1,0,0,0,0,-1,0,1,0|0.5,0,-14,0,0,-1,-1,0,0,0,1,0|4,0,0,0,0,-1,1,0,0,0,-1,0|108.1008,55.0004,124.7532|-0.5,0,11.5,0,0,1,1,0,0,0,1,0|3,13.5,-23.5,0,-1,0,1,0,0,0,0,1|13.5,0.5,-23.5,1,0,0,0,1,0,0,0,1|-4,13.5,-23.5,0,-1,0,1,-0,0,0,-0,1|-4,-13.5,-23.5,0,-1,0,1,0,0,0,0,1|118.6008,49.5004,-4.7468|-20,-6,0,-1,0,0,0,0,1,0,1,0|118.6008,21.0004,0.2532|5,8,1|1.5,-1,0,0,-1,0,0,0,1,-1,0,0|122.1008,22.5004,0.2532|4,-2.5,0,-1,0,0,0,0,1,0,1,0|2.5,1.5,0,0,0,-1,1,0,0,0,-1,0|-4.0001,-3.5,-5.0001,0,0,1,0,1,0,-1,0,0|118.6008,26.5004,0.2532|3,5,1|-4.0001,-1,0,-1,0,0,0,0,1,0,1,0'
  488. ..'|0,4,0,0,-1,0,0,0,-1,1,0,0|118.6008,28.5004,-9.7468|118.6008,28.5004,-4.2468|1,9,10|-5.5001,3.5,4.5,-0,0,1,-0,1,0,-1,0,0|1,0.5,4,1,0,-0,0,0,-1,0,1,-0|-5.5001,-3.5,4.5,-0,0,1,-0,1,0,-1,0,0|-1.5,0,4.5,-0,0,1,-0,1,0,-1,0,0|0,0,-0.5,1,0,0,0,1,0,0,0,1|0.5,0,-4.5,0,0,-1,0,1,-0,1,0,-0|1,-6,-0.5,-1,0,0,-0,0,1,-0,1,0|118.6008,29.5004,-8.7468|118.6008,30.5004,-7.7468|118.6008,31.5004,-6.7468|-2,-6,2,-1,0,0,0,0,1,0,1,0|118.6008,32.5004,-5.7468|-3.0001,-6,1,-1,0,0,0,0,1,0,1,0|118.6008,33.5004,-4.7468|-4.0001,-6,0,-1,0,0,0,0,1,0,1,0|118.6008,34.5004,-3.7468|-5,-6,-1.0001,-1,0,0,0,0,1,0,1,0|117.6008,43.5004,9.2532|0.5,-9.5,'
  489. ..'29.5,0,0,-1,0,1,-0,1,0,-0|-0.5,-9.5,75.5,-0,0,1,-0,1,0,-1,0,0|-14,0.5,-9.5,1,0,-0,0,0,-1,0,1,-0|118.6008,36.5004,-1.7468|-7,-6,-3,-1,0,0,0,0,1,0,1,0|118.6008,37.5004,-0.2468|1,9,2|0,-10.5,84,-1,0,-0,-0,1,-0,-0,0,-1|-8,0.5,0,1,0,-0,0,0,-1,0,1,-0|-8,-6,-4.5001,-1,0,0,-0,0,1,-0,1,0|117.6008,43.5004,34.2532|4.5,0.5,28,1,0,0,0,0,-1,0,1,0|1,4.8999,-3.1,0,0,-1,-1,0,0,0,1,0|-0.5,-9.5,50.5,0,0,1,0,1,0,-1,0,0|1,3.9,4.1999,0,0,-1,0,-1,0,-1,0,0|-0.5,5,1,1,0,0,0,-1,0,0,0,-1|118.6008,35.5004,-2.7468|-6,0.5,2.5,1,0,-0,0,0,-1,0,1,-0|-6,-6,-2.0001,-1,0,0,-0,0,1,-0,1,0|120.6008,49.5004,90.2532|1,5,27|-1.5,0.5,-28,1,0,0,0,0,-1,0'
  490. ..',1,0|102.1008,13.0004,63.2532|8,18,9|123.6008,23.5004,19.7532|123.6008,23.5004,31.2532|-6.0001,0,48,0,0,1,0,1,0,-1,0,0|123.6008,29.5004,68.2532|8,-15,16.5,-1,0,0,-0,0,1,-0,1,0|8.5,0,0,0,0,1,0,1,0,-1,-0,-0|-6.0001,0,11,0,0,1,0,1,0,-1,0,0|-8.5,0,0,-0,-0,-1,0,1,0,1,0,0|6,0,35,0,0,-1,0,1,-0,1,0,-0|1.5,0,-6,0,0,-1,0,1,-0,1,0,-0|0,0,35.5,1,0,0,0,1,0,0,0,1|2.5,0,-11.5,1,0,0,0,1,0,0,0,1|0,6,18.5,0,1,0,1,0,0,0,0,-1|2.5,0,18.5,-1,0,-0,-0,1,-0,-0,0,-1|5,4.5,5,0,0,-1,0,-1,0,-1,0,0|-6.0001,0,-1.5,1,0,0,0,1,0,0,0,1|112.6008,47.0004,13.2532|0,4,0.5,0,-1,0,0,0,-1,1,-0,0|-4,0,2,0,-0,1,0,1,0,-1,0,0|-4,-5,0.5,-1,-0,0,0,1,0,0,0,-'
  491. ..'1|117.6008,43.0004,10.2532|112.6008,42.0004,11.2532|112.6008,43.0004,16.7532|-0.5,-4.5,68,0,0,1,0,-1,0,1,0,0|121.1008,39.2004,15.2532|121.1008,38.5004,14.2532|-0.5,-13,70.5,0,0,1,0,1,0,-1,0,0|121.1008,39.6004,11.7532|3.3999,3.5,0.5,0,1,0,1,0,0,0,0,-1|121.1008,39.2004,11.7532|-0.5,0,2.5,-0,-0,1,-1,-0,0,-0,-1,0|4.8,0.5,4,0,1,0,0,0,-1,-1,0,0|3.8,3.5,0.5,0,1,0,1,0,0,0,0,-1|114.5008,38.2004,16.7532|-0.5,-6.4001,68,0,0,1,0,1,0,-1,0,0|114.5008,38.6004,16.7532|4.3999,-3.1,-0.5,0,-1,0,1,0,0,0,0,1|113.3008,39.5004,16.7532|-0.5,-5.2,68,0,0,1,0,-1,0,1,0,0|3.5,-4.3001,-0.5,1,-0,-0,0,1,0,0,0,1|113.7008,40.5004,16.7532|113.7'
  492. ..'008,39.3004,16.7532|112.6008,42.0004,13.7532|-0.5,-4.5,71,0,0,1,1,0,0,0,1,0|0,0,0.5,0,-1,0,-1,0,0,0,0,-1|112.6008,47.0004,21.2532|117.6008,43.0004,18.2532|-0.5,-9.5,66.5,0,0,1,0,-1,0,1,0,0|1,0.5,-2.5,-1,0,0,0,0,-1,0,-1,0|3.5,-3.8001,2.5,-0,-1,0,-1,-0,0,0,0,-1|112.6008,42.0004,19.2532|-0.5,-4.5,65.5,0,0,1,0,-1,0,1,0,0|112.6008,43.0004,24.7532|-0.5,-4.5,60,0,0,1,0,-1,0,1,0,0|121.1008,39.2004,23.2532|121.1008,38.5004,22.2532|-0.5,-13,62.5,0,0,1,0,1,0,-1,0,0|121.1008,39.6004,19.7532|0,-0.2001,0,-1,-0,0,-0,-0,1,0,1,0|121.1008,39.2004,19.7532|-0.5,0,2.5,0,0,1,-1,0,0,0,-1,0|114.5008,38.2004,24.7532|-0.5,-6.4001,60,0,'
  493. ..'0,1,0,1,0,-1,0,0|114.5008,38.6004,24.7532|113.3008,39.5004,24.7532|113.7008,40.5004,24.7532|113.7008,39.3004,24.7532|112.6008,42.0004,21.7532|-0.5,-4.5,63,0,0,1,1,0,0,0,1,0|112.6008,47.0004,29.2532|117.6008,43.0004,26.2532|5,0.5,36,-1,0,0,0,0,-1,0,-1,0|-0.5,-9.5,58.5,0,0,1,0,-1,0,1,0,0|0.5,-0.5,36,0,0,-1,1,0,0,0,-1,0|112.6008,42.0004,27.2532|-0.5,-4.5,57.5,0,0,1,0,-1,0,1,0,0|112.6008,43.0004,32.7532|121.1008,39.2004,31.2532|4.3,-3.5,0.5,0,1,0,1,0,0,0,0,-1|121.1008,38.5004,30.2532|-0.5,-13,54.5,0,0,1,0,1,0,-1,0,0|0,0,-3.5,-1,-0,-0,0,1,0,-0,-0,-1|5,-3.5,0.5,-1,0,0,0,1,0,0,0,-1|121.1008,39.6004,27.7532|121.1008,3'
  494. ..'9.2004,27.7532|114.5008,38.2004,32.7532|-0.5,-6.4001,52,0,0,1,0,1,0,-1,0,0|5.3,3.0999,0.5,0,-1,0,-1,0,0,0,0,-1|114.5008,38.6004,32.7532|113.3008,39.5004,32.7532|0,0.8999,1,-1,0,0,0,1,0,0,-0,-1|-0.5,-5.2,52,0,-0,1,0,-1,0,1,-0,0|3.5,0.5,0,-0,-1,0,0,0,-1,1,0,0|4,4.3,0.5,1,-0,-0,0,-1,-0,0,-0,-1|113.7008,40.5004,32.7532|3,3.9,0.5,1,0,0,0,-1,0,0,0,-1|113.7008,39.3004,32.7532|112.6008,42.0004,29.7532|-0.5,-4.5,55,0,0,1,1,0,0,0,1,0|1,1,0.8|121.6008,40.2004,43.2532|3,0.4,5|0,0.3,0|1,1,0|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|-0.7,0.5,19,0,1,0,0,0,-1,-1,0,0|-1,0,0,-0,-0,1,-1,-0,0,-0,-1,0|121.6008,39.0004,43.2532|2,3,5|0,0.5607,0'
  495. ..'.6117|121.6008,40.2004,49.2532|-1,0,0,0,0,1,-1,0,0,0,-1,0|121.6008,39.0004,49.2532|0.6313,0.7686,0.549|121.6008,40.2004,55.2532|121.6008,39.0004,55.2532|-0.5,-13.5,29.5,0,0,1,0,1,0,-1,0,0|0.8,0.5568,0.4117|121.6008,40.2004,37.2532|-0.7,0.5,25,0,1,0,0,0,-1,-1,0,0|121.6008,39.0004,37.2532|-0.5,-13.5,47.5,-0,0,1,-0,1,0,-1,0,0|0,-1.5,0,1,0,0,-0,-0,-1,0,1,0|0.5,0.5,25,1,0,-0,0,0,-1,0,1,-0|0,0.1999,0,0,1,-0,0,0,-1,-1,0,0|4.5,-4,-0.5,1,0,0,0,1,0,0,0,1|121.6008,13.0004,63.2532|8,3,9|0,0,-4.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-13.5,33,-1,0,0,0,1,0,0,0,-1|2,0.5,16,1,0,0,0,0,-1,0,1,0|0,0,4.5,1,0,0,0,1,0,0,0,1|0,29,-13.5,1,0,0,0,'
  496. ..'0,-1,0,1,0|123.6008,24.0004,-20.2468|-15.4867,-0.502,-9.0006,0,1,-0,0,0,1,1,0,-0|5.5,-15,-8.5,-1,0,0,0,0,1,0,1,0|-4.0001,-15.5,5,0,0,1,0,1,0,-1,0,0|15.5,-5.5001,3.9998,0,-1,0,-1,-0,0,-0.0001,0,-1|121.6008,51.0004,92.2532|-0.5,-1,-2,0,0,1,0,1,0,-1,0,0|0,-2.5,0,0,1,0,0,0,1,1,0,0|119.1008,9.0004,62.7532|2,16,2|4,1.5,0.5,0,-1,0,0,0,-1,1,0,0|0,-8,0,1,0,0,-0,-0,-1,0,1,0|-0.5,-4.5,-11,0,0,1,0,1,0,-1,0,0|92.6008,15.0004,79.2532|12,1,139|-2,15,21.5,1,0,0,0,0,-1,0,1,0|-5,15.5,-10.5001,0,0,1,0,-1,0,1,0,0|-6,0,0,-0,-0,-1,0,1,0,1,0,0|8.5,0,-11,0,0,-1,0,1,0,1,0,0|14.9998,2,61.9995,0,0,-1,-1,-0.0001,0,-0.0001,1,0|-2,49.5,15,'
  497. ..'1,0,0,0,-1,0,0,0,-1|2.5,0,-48,0,0,-1,0,1,0,1,0,0|-2,9,-16,1,0,0,0,0,-1,0,1,0|0,0,69.5,1,0,0,0,1,0,0,0,1|14.5,0,-10,1,0,0,0,1,0,0,0,1|123.6008,44.0004,103.2532|5.5,-2.5,-13,-1,0,0,0,0,1,0,1,0|0,0.5,-40.5,0,1,0,-1,0,0,0,0,1|123.6008,39.5004,62.2532|0,-2.5,0,0,1,-0,0,0,1,1,0,-0|4,-5.5,14,-1,0,0,-0,0,1,-0,1,0|-0.5,-1.5,-7,-1,0,0,-0,0,1,-0,1,0|-1.5,0.6999,13,-0,0,1,-1,0,0,0,-1,0|-0.5,-1.5,-13,-1,0,0,-0,0,1,-0,1,0|-1.5,0.6999,7,-0,0,1,-1,0,0,0,-1,0|-2,-0.3001,31,-0,0,1,-1,0,0,0,-1,0|-0.5,-1.5,-19,-1,0,0,0,0,1,0,1,0|4,-5.5,-28,-1,0,0,0,0,1,0,1,0|-1,-2,-32,-1,0,0,-0,0,1,-0,1,0|-1,-2,-40,-1,0,0,-0,0,1,-0,1,0|4.5,0,-6,1'
  498. ..',0,0,0,1,0,0,0,1|-2,-0.3001,34.5,-0,0,1,-1,0,0,0,-1,0|3.5,5.5,36,-1,0,0,0,0,-1,0,-1,0|-2,-0.3001,39,-0,0,1,-1,0,0,0,-1,0|123.6008,29.5004,-0.2468|8,-15,85,-1,0,0,-0,0,1,-0,1,0|20,-4.5,-4.5001,-1,0,0,-0,0,1,-0,1,0|20,-15,39,-1,0,0,-0,0,1,-0,1,0|16.5,-15.5,-5,1,0,0,0,1,0,0,0,1|14.5,0,6,-1,0,-0,-0,1,-0,-0,0,-1|5,-4.5,-3.5,-1,0,0,-0,0,1,-0,1,0|7,-4.5,-1.5,-1,0,0,-0,0,1,-0,1,0|-14.5001,0,69.5,-1,0,0,0,1,0,-0,0,-1|4,-4.5,-4.5001,-1,0,0,-0,0,1,-0,1,0|1,-4.5,-7.5001,-1,0,0,-0,0,1,-0,1,0|2,-4.5,-6.5001,-1,0,0,-0,0,1,-0,1,0|3,-4.5,-5.5001,-1,0,0,-0,0,1,-0,1,0|0,6,10,0,1,0,1,0,0,-0,0,-1|10,0,-10,1,0,0,0,1,0,0,0,1|-2.5,-5'
  499. ..'.5,9.5,-1,0,0,0,0,1,0,1,0|-7.0001,-1,0.5,-1,0,0,0,0,1,0,1,0|-1,-4.5,-9.5001,-1,0,0,0,0,1,0,1,0|0,-4.5,-8.5001,-1,0,0,0,0,1,0,1,0|-5.5001,0,-10,1,0,0,0,1,0,0,0,1|-16.5001,-15.5,-5,1,0,0,0,1,0,0,0,1|-16.5001,-30,-15,-1,0,0,0,-1,0,0,0,1|-16.5001,-4.5,-4.5001,-1,0,0,0,0,1,-0,1,0|123.6008,32.0004,21.2532|5.4999,-15,63.5,-1,0,0,-0,0,1,-0,1,0|1.4999,0,41,0,0,-1,0,1,-0,1,0,-0|5.9999,0,-5.5,0,0,-1,0,1,-0,1,0,-0|-2.5001,0,10,-0,0,1,-0,1,0,-1,0,0|0,2.5,-1.5,0,1,0,0,0,-1,-1,0,0|0,0,11.5,1,0,0,0,1,0,0,0,1|-2.5001,0,-10,1,0,0,0,1,0,0,0,1|121.6008,54.5004,92.2532|123.6008,15.0004,79.2532|0,-2.5001,43,0,1,0,0,0,1,1,0,0|5,15.5'
  500. ..',-9.5001,0,0,-1,0,-1,0,-1,0,0|-15.0002,2,61.9995,0,0,1,1,-0.0001,0,0,1,0|123.6008,43.5004,62.2532|0,-5.5,-28,0,-1,0,0,0,1,-1,0,0|2,0,0,0,0,-1,-1,0,0,0,1,0|123.6008,33.997,-11.2498|-6.9966,0,-8.997,-0,-0.0001,1,-1,-0,0,-0,-1,-0.0001|-4.4966,0,10.003,-0,-1,-0.0001,-1,0,-0,-0,0,-1|123.6008,34.003,-11.2518|0,0.0026,-8.995,1,0,0,-0.0001,1,0,-0.0001,-0.0001,1|123.6008,34.0004,-21.2468|-15.5,0,-0.5,1,0,0,0,1,0,0,0,1|121.6008,58.0004,92.2532|0,2.5,0,0,1,0,0,0,-1,-1,0,0|121.6008,54.5004,67.7532|3.4999,0,23.5,-1,0,0,0,1,0,0,0,-1|0,0,23.5,0,1,0,0.9999,0,0,0,0,-1|108.1008,49.5004,136.2532|1,30,65|1,13.5,-44,0,0,-1,0,1,0,1'
  501. ..',0,0|5.5,-5.5,-30,-0,1,0,-0,0,1,1,0,0|-5.5,9,-4,0,0,1,0,1,0,-1,0,0|-12.5,-5.5,-30,-0,1,0,-0,0,1,1,0,0|0,0,-32.5,-1,-0,-0,0,1,0,-0,-0,-1|-5.5001,0,0.4999,-1,-0.0001,0,0,0.9999,0,0,-0.0001,-1|0,0,32.5,1,0,0,0,1,0,0,0,1|0,12.5,-13.5,1,0,0,0,1,0,0,0,1|-5.5,-0.5,0,-1,0,0,0,0,1,0,1,0|100.6008,4.5004,96.2532|7,1,11|-2,0,0,0,0,1,1,0,0,0,1,0|-3.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.4999,29,2.5,0,0,-1,0,1,0,1,0,0|3.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,7.5,0,0,0,1,-1,0,0,0,-1,0|0,0,3,0,-1,0,-1,0,0,0,0,-1|-0.5,28.5,-5,1,0,0,0,0,-1,0,1,0|95.6008,4.0004,67.2532|8,57,1|100.6008,4.5004,99.7532|11,9,6|3.9999,7.5,1,0,0,-1,-1,0,0,0,1,0|0,0,3,'
  502. ..'1,0,0,0,1,0,0,0,1|-4,7.5,-0.5,0,1,0,-1,0,0,0,0,1|103.1008,8.5004,67.2532|1,59,16|-3.5,-29,12.5,0,0,1,0,1,0,-1,0,0|4,5,33.5,0,0,-1,1,0,0,0,-1,0|0,0,-8,-1,-0,-0,0,1,0,-0,-0,-1|-4.5,0,15,0,0,1,-1,0,0,0,-1,0|-0.5,2,-3.5,0,0,1,-1,0,0,0,-1,0|0,29.5,0,-1,-0,-0,0,0,1,0,1,0|2.5,-4,3,0,-1,0,-1,0,0,0,0,-1|-4.5,2,-8,0,0,1,-1,0,0,0,-1,0|-4.5,0,-19,0,0,1,-1,0,0,0,-1,0|0,-29.5,0,1,0,0,-0,-0,-1,0,1,0|4.996,-4.0005,3.0001,0,1,0,1,0,0,0,0,-1|-4,5,-29,0,0,1,-1,0,0,0,-1,0|4,37.5,5,0,0,-1,0,1,0,1,0,0|4,-1,-4,0,0,-1,1,0,0,0,-1,0|-4,0,-7.5,0,0,1,0,1,0,-1,0,0|108.1008,4.5004,96.2532|4,7,1|0,0,5.5,0,-1,0,-1,0,0,0,0,-1|0,3.5,0,-1,-0,-0'
  503. ..',0,0,1,0,1,0|0.4999,29,-5,0,0,-1,0,1,0,1,0,0|0,-3.5,0,1,0,0,-0,-0,-1,0,1,0|-0.5,0,0,0,0,1,-1,0,0,0,-1,0|111.6008,10.5004,63.7532|1,19,8|2.5,-9,-0.5,0,1,0,0,0,1,1,0,0|0,0,-4,-1,-0,-0,0,1,0,-0,-0,-1|2.5,-3.5,33,0,1,0,1,0,0,-0,0,-1|108.1008,0.5004,96.2532|1,26,1|3.5,28.5,-12.5,1,0,0,0,0,-1,0,1,0|115.6008,4.5004,99.7532|-5,3.9999,-0.5,1,0,0,0,1,0,0,0,1|0,3.9999,-14.5,1,0,0,0,1,0,0,0,1|0,0.5,0,0,1,0,0,0,-1,-1,0,0|3.9999,-7.5,1,0,0,-1,-1,0,0,0,1,0|3.9999,29.5,-12.5,0,1,0,0,0,-1,-1,0,0|-4,-7.5,-0.5,0,1,0,-1,0,0,0,0,1|115.6008,4.5004,96.2532|-5,0.4999,0,-1,0,0,0,0,-1,0,-1,0|-0.5,-7.5,0,0,0,1,-1,0,0,0,-1,0|115.6008,8.5'
  504. ..'004,82.2532|9,1,29|-3.5,-14,0,0,0,1,0,-1,0,1,0,0|4,-7.5,18.5,0,0,-1,-1,0,0,0,1,0|4.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,0,14,0,0,1,0,1,0,-1,0,0|0,0,14.5,1,0,0,0,1,0,0,0,1|4,2,-4,1,0,0,0,1,0,0,0,1|108.1008,0.5004,67.2532|1,57,24|-3.5,9.4999,-3.5,-1,0,0,0,0,-1,0,-1,0|-7.5,9.4999,-8,-1,0,0,0,0,-1,0,-1,0|0,28.5,0,-1,-0,-0,0,0,1,0,1,0|0,0,0.5,-1,0,0,0,1,0,0,0,-1|0,-28.5,0,1,0,0,-0,-0,-1,0,1,0|3.5,0,-0.5,1,0,0,0,1,0,0,0,1|0,0,12,1,0,0,0,1,0,0,0,1|120.6008,8.5004,96.2532|4,-12.5,4.5,0,0,-1,-1,0,0,0,1,0|115.6008,10.5004,59.2532|9,19,1|2.5,29,-7.5,0,1,0,0,0,-1,-1,0,0|2.5,-9,4,0,1,0,0,0,1,1,0,0|4,0,4,-1,0,0,0,1,0,-0,0,-1|0,-'
  505. ..'2,-10.5,1,0,0,0,1,0,0,0,1|2.5,1.5,4,0,1,0,0,0,-1,-1,0,0|115.6008,8.5004,48.2532|9,1,21|120.6008,8.5004,38.2532|4,8.5,-12.5,0,0,-1,0,-1,0,-1,0,0|4.5,0,10,0,0,-1,0,1,0,1,0,0|108.1008,4.0004,38.2532|8,26,1|-12.5,0.4999,0,0,-1,0,0,0,-1,1,0,0|-7.5,0.4999,10,0,-1,0,0,0,-1,1,0,0|0,-28.5,-12.5,-1,0,0,0,0,1,0,1,0|120.6008,4.5004,67.2532|9,57,1|3.9999,37.5,-12.5,0,-0,-1,0,1,0,1,-0,-0|0,3.9999,0.5,0,-1,0,-1,0,0,0,0,-1|4.5,3.9999,15,0,0,-1,1,0,0,0,-1,0|1,-4.5,4.5,0,0,-1,-1,0,0,0,1,0|4.5,5.9999,-8,0,0,-1,1,0,0,0,-1,0|0,-0.5,-5,-1,0,0,0,0,1,0,1,0|0,3.9999,-0.5,0,-1,0,1,0,0,0,0,1|3.9999,-12.5,33.5,0,0,-1,1,0,0,0,-1,0|3.9999,'
  506. ..'1,-4,0,0,-1,1,0,0,0,-1,0|-4,-12.5,0.5,-1,0,0,0,1,0,0,0,-1|4.5,3.9999,-19,0,0,-1,1,0,0,0,-1,0|-0.5,-12.5,-0.5,1,0,0,0,1,0,0,0,1|-4,0,-12,1,0,0,0,1,0,0,0,1|108.0969,4.5,34.7531|26,9,6|4.0004,4.9998,0.0039,0,0,-1,0,1,0,1,0,0|-12.504,4.0004,0.5001,-1,0,0,0,1,0,0,0,-1|-7.504,4.0004,10.5001,-1,0,0,0,1,0,0,0,-1|-0.4996,0.0039,0.5001,0,1,0,1,0,0,0,0,-1|123.6008,48.0004,62.2532|123.6008,44.0004,15.7532|-2,-4.8001,-7.5,0,0,1,-1,0,0,0,-1,0|-5.5,-2,6.5,-1,0,0,0,0,1,0,1,0|0,0.5,40.5,0,1,0,1,0,0,0,0,-1|-2,-4.8001,-4,0,0,1,-1,0,0,0,-1,0|-5.5,-2,-1.5,-1,0,0,0,0,1,0,1,0|-1,5.5,5.5,-1,0,0,0,0,-1,0,-1,0|-2,-4.8001,0.5,0,0,1,-1,0'
  507. ..',0,0,-1,0|123.6008,39.5004,-20.2468|4,-15.5,5,0,0,-1,0,1,0,1,0,0|-15.4955,-5.4999,4,0,1,0,1,0,0,0,0,-1|-0.0001,-8.995,2.9973,0,1,0,1,-0.0001,0,0,0,-1|0,-15.5,-0.5,1,0,0,0,1,0,0,0,1|92.6008,44.0004,136.2532|12,1,65|99.1008,43.5004,132.2532|11,12,1|0.5,9,4,0,0,-1,0,1,0,1,0,0|-0.5,9,-47.5,0,0,1,0,1,0,-1,0,0|-3,0,0,0,0,1,-1,0,0,0,-1,0|0.5,-0.5,4,-1,0,0,0,0,1,0,1,0|108.1008,43.5004,132.2532|6,11,1|-0.5,0,-47.5,0,0,1,-1,0,0,0,-1,0|0.5,0,4,0,0,-1,1,0,0,0,-1,0|0,6,0,0,-1,-0,0,-0,-1,1,-0,-0|129.1008,24.5004,63.7532|92.6008,32.0004,122.2532|12,1,37|5.4999,15,-37.5,1,0,0,0,0,-1,0,1,0|5.9999,0,14,0,0,-1,0,1,0,1,0,0|123.60'
  508. ..'08,32.0004,122.2532|5.4999,-15,-37.5,-1,0,0,0,0,1,0,1,0|117.1008,43.5004,132.2532|-0.5,-9,-47.5,0,0,1,0,1,0,-1,0,0|123.6008,44.0004,136.2532|-0.0001,-15.5,0.4999,-1,-0.0001,0,0,0.9999,0,0,-0.0001,-1|-8.5,0,8.5,0,0,1,0,1,0,-1,0,0|-6,0,-14,0,0,1,0,1,0,-1,0,0|5.5,-15,0,-1,0,0,0,0,1,0,1,0|-0.5,-6,-4,-1,0,0,0,0,1,0,1,0|108.1008,13.0004,100.7532|8,30,66|2,0.5,-21.5,1,0,0,0,0,-1,0,1,0|0,0,-33,-1,-0,-0,0,1,0,-0,-0,-1|-0.0002,0,7.4995,0,1,0,1,0,0,0,0,-1|0,0,33,1,0,0,0,1,0,0,0,1|0,-6,-4.5,1,0,0,0,1,0,0,0,1|92.6008,23.5004,122.2532|1,5,37|-6.0001,0,-43,0,0,1,1,0,0,0,1,0|6,0,0,0,0,-1,-1,0,0,0,1,0|0,0,18.5,1,0,0,0,1,0,0,0,'
  509. ..'1|6,0,-35.5,0,-1,0,1,-0,0,0,-0,1|123.6008,23.5004,122.2532|92.6008,29.5004,144.7532|17,1,8|-6.0001,0,-65.5,0,0,1,0,1,0,-1,0,0|6,0,-8.5,0,0,-1,0,1,0,1,0,0|2.5,0,-18.5,1,0,0,0,1,0,0,0,1|8,15,-60,1,0,0,0,0,-1,0,1,0|0,-6.0001,10.5,0,-1,0,-1,0,0,0,0,-1|0,6,-18.5,0,1,0,-1,0,0,0,0,1|0,1,0|0.3|95.6008,43.5004,166.2532|5,11,5|-0.5,12.5,-81.5,0,0,1,-1,0,0,0,-1,0|0.4999,12.5,0.4999,-0.0001,0.9999,0,0.9999,-0.0001,0,-0.0001,-0.0001,-1|0.5,-0.5,-30,0,1,0,0,0,1,1,0,0|123.6008,29.5004,144.7532|8,-15,-60,-1,0,0,0,0,1,0,1,0|103.6008,43.5004,166.2532|0.5,4.5,-30,0,0,-1,1,0,0,0,-1,0|-0.5,4.5,-81.5,0,0,1,-1,0,0,0,-1,0|0.4999,4.49'
  510. ..'99,0.5,-0.0001,0.9999,0,0.9999,-0.0001,0,-0.0001,-0.0001,-1|120.6008,43.5004,166.2532|0.5,-12.5,-30,0,0,-1,1,0,0,0,-1,-0|-0.5,-12.5,-81.5,0,0,1,-1,0,0,0,-1,0|0.5,0.5,-30,0,1,0,0,0,-1,-1,0,0|0.5,-12.5,0.5,0,1,0,1,0,0,0,0,-1|113.6008,43.5004,166.2532|5.4999,-0.5,2.9999,0.9999,-0.0001,0,-0.0001,0,0.9999,0,-1,0|108.1008,44.0004,169.2532|12,32,1|5.4999,-0.5,2.4999,-0.0001,0.9999,-0.0001,0.9999,-0.0001,-0.0001,0,0,-1|0,-15.5001,-32.5,0.9999,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,-0.0001,-0.0001,0.9999|108.1006,13.0004,141.2528|30,8,15|108.1008,36.5004,165.7532|30,1,4|0.5,0,-81,-0,0,-1,-1,0,-0,-0,1,-0|108.1008,37.500'
  511. ..'4,169.2532|0,180,-180|30,1,1|0,0,-84,0,0.9999,0,-1,0,-0.0001,0,-0.0001,0.9999|6,0,0,0,0,-1,-1,-0.0001,-0.0001,0,0.9999,0|92.6008,23.5004,159.2532|1,29,21|0,0,10.5,1,0,0,0,1,0,0,0,1|-8.5001,0,-69.5,0,1,0,-1,0,0,0,0,1|0,-14.5,0,1,0,0,-0,-0,-1,0,1,0|5.9999,15.5,9.9999,0,-0.0001,-1,-1,-0.0001,0,0,0.9999,0|6,0,-23,0,0,-1,-1,0,0,0,1,0|14,15,-74.5,0,1,0,0,0,-1,-1,0,0|108.1017,22.9117,155.605|28.0699,0,0|30,31,1|0,-15.5,0,1,0,0,-0,-0,-1,0,1,0|-0.0011,-3.7652,-7.0582,-1,0,-0,0,-0.4706,-0.8824,0,-0.8824,0.4705|123.6008,23.5004,159.2532|5.9999,-15.5001,9.9999,0,-0.0001,-1,-1,-0.0001,0,0,0.9999,0|6,0,-4,-0,1,0,-1,0,0,-0,0'
  512. ..',1|14,-15,-74.5,0,1,0,0,0,1,1,0,0;0,4>12>2,4>13>957,5>12>2,5>13>753,8>12>6,8>13>389,17>12>15,17>13>13,20>12>18,20>13>957,21>12>18,21>13>27,22>12>18,22>13>25,23>12>18,23>13>15,24>12>18,24>13>13,29>12>27,29>13>15,33>12>31,33>13>957,34>12>31,34>13>36,35>12>31,35>13>38,40>12>38,40>13>957,41>12>38,41>13>36,44>12>42,44>13>38,47>12>45,47>13>36,48>12>45,48>13>38,52>12>50,52>13>957,53>12>50,53>13>57,54>12>50,54>13>55,59>12>57,59>13>55,62>12>60,62>13>57,65>12>63,65>13>55,66>12>63,66>13>57,71>12>69,71>13>957,72>12>69,72>13>67,76>12>74,76>13>957,77>12>74,77>13>79,78>12>74,78>13>81,83>12>81,83>13>957,84>12>81,84>13>79,85>1'
  513. ..'2>81,85>13>86,90>12>88,90>13>79,91>12>88,91>13>81,94>12>92,94>13>746,95>12>92,95>13>802,96>12>92,96>13>159,97>12>92,97>13>510,100>12>98,100>13>237,101>12>98,101>13>159,102>12>98,102>13>510,103>12>98,103>13>153,104>12>98,104>13>155,105>12>98,105>13>513,106>12>98,106>13>131,107>12>98,107>13>126,108>12>98,108>13>800,109>12>98,109>13>240,110>12>98,110>13>151,111>12>98,111>13>757,114>12>112,114>13>520,115>12>112,115>13>746,116>12>112,116>13>159,119>12>117,119>13>1332,120>12>117,120>13>2,121>12>117,121>13>516,122>12>117,122>13>159,128>12>126,128>13>513,129>12>126,129>13>124,130>12>126,130>13>151,135>12>133,135>13>15'
  514. ..'5,136>12>133,136>13>131,137>12>133,137>13>124,138>12>133,138>13>757,139>12>133,139>13>126,140>12>133,140>13>98,143>12>141,143>13>520,144>12>141,144>13>159,148>12>146,148>13>151,149>12>146,149>13>124,150>12>146,150>13>155,157>12>155,157>13>151,158>12>155,158>13>153,161>12>159,161>13>957,162>12>159,162>13>746,163>12>159,163>13>211,164>12>159,164>13>2,165>12>159,165>13>232,166>12>159,166>13>209,167>12>159,167>13>235,168>12>159,168>13>230,169>12>159,169>13>510,192>12>190,192>13>188,195>12>193,195>13>188,198>12>196,198>13>188,201>12>199,201>13>190,202>12>199,202>13>188,203>12>199,203>13>196,207>12>205,207>13>802,20'
  515. ..'8>12>205,208>13>159,213>12>211,213>13>802,216>12>214,216>13>802,217>12>214,217>13>159,220>12>218,220>13>802,221>12>218,221>13>159,224>12>222,224>13>802,225>12>222,225>13>159,228>12>226,228>13>802,229>12>226,229>13>159,234>12>232,234>13>802,238>12>237,238>13>159,242>12>240,242>13>239,243>12>240,243>13>836,246>12>244,246>13>842,247>12>244,247>13>239,248>12>244,248>13>843,249>12>244,249>13>159,250>12>244,250>13>240,251>12>244,251>13>838,258>12>256,258>13>957,259>12>256,259>13>254,260>12>256,260>13>430,261>12>256,261>13>6,264>12>262,264>13>957,265>12>262,265>13>254,266>12>262,266>13>311,267>12>262,267>13>256,270>1'
  516. ..'2>268,270>13>957,271>12>268,271>13>254,275>12>273,275>13>276,278>12>276,278>13>957,279>12>276,279>13>256,282>12>280,282>13>256,285>12>283,285>13>280,286>12>283,286>13>276,287>12>283,287>13>273,288>12>283,288>13>578,289>12>283,289>13>256,293>12>291,293>13>957,294>12>291,294>13>301,297>12>295,297>13>309,298>12>295,298>13>301,299>12>295,299>13>323,300>12>295,300>13>291,303>12>301,303>13>957,304>12>301,304>13>307,305>12>301,305>13>309,306>12>301,306>13>268,315>12>311,315>13>957,316>12>311,316>13>254,321>12>319,321>13>337,322>12>319,322>13>339,325>12>323,325>13>957,326>12>323,326>13>319,327>12>323,327>13>307,328>12'
  517. ..'>323,328>13>309,329>12>323,329>13>337,330>12>323,330>13>268,331>12>323,331>13>357,332>12>323,332>13>354,333>12>323,333>13>350,334>12>323,334>13>273,335>12>323,335>13>301,336>12>323,336>13>468,341>12>339,341>13>957,342>12>339,342>13>369,346>12>344,346>13>357,347>12>344,347>13>350,348>12>344,348>13>479,349>12>344,349>13>468,352>12>350,352>13>957,353>12>350,353>13>357,356>12>354,356>13>357,362>12>360,362>13>957,363>12>360,363>13>369,366>12>364,366>13>360,367>12>364,367>13>375,368>12>364,368>13>369,371>12>369,371>13>957,372>12>369,372>13>373,377>12>375,377>13>369,382>12>378,382>13>957,383>12>378,383>13>319,384>12>'
  518. ..'378,384>13>337,391>12>389,391>13>387,394>12>392,394>13>957,395>12>392,395>13>387,396>12>392,396>13>389,399>12>397,399>13>957,400>12>397,400>13>387,401>12>397,401>13>432,402>12>397,402>13>256,406>12>404,406>13>578,407>12>404,407>13>256,410>12>408,410>13>957,411>12>408,411>13>389,412>12>408,412>13>404,413>12>408,413>13>578,416>12>414,416>13>389,419>12>417,419>13>414,420>12>417,420>13>408,421>12>417,421>13>404,422>12>417,422>13>578,423>12>417,423>13>389,427>12>425,427>13>957,428>12>425,428>13>430,429>12>425,429>13>432,434>12>432,434>13>957,435>12>432,435>13>430,436>12>432,436>13>256,439>12>437,439>13>432,440>12>4'
  519. ..'37,440>13>256,443>12>441,443>13>430,444>12>441,444>13>432,445>12>441,445>13>256,450>12>446,450>13>957,451>12>446,451>13>387,452>12>446,452>13>392,455>12>453,455>13>957,456>12>453,456>13>802,457>12>453,457>13>159,460>12>458,460>13>935,461>12>458,461>13>710,462>12>458,462>13>389,463>12>458,463>13>578,464>12>458,464>13>256,465>12>458,465>13>468,466>12>458,466>13>489,467>12>458,467>13>6,470>12>468,470>13>578,471>12>468,471>13>357,472>12>468,472>13>276,473>12>468,473>13>273,474>12>468,474>13>6,475>12>468,475>13>2,476>12>468,476>13>350,477>12>468,477>13>592,478>12>468,478>13>159,481>12>479,481>13>957,482>12>479,482>'
  520. ..'13>375,483>12>479,483>13>364,484>12>479,484>13>369,485>12>479,485>13>373,486>12>479,486>13>339,487>12>479,487>13>592,488>12>479,488>13>159,491>12>489,491>13>957,492>12>489,492>13>6,493>12>489,493>13>389,496>12>494,496>13>802,497>12>494,497>13>592,498>12>494,498>13>159,501>12>499,501>13>505,502>12>499,502>13>985,503>12>499,503>13>702,504>12>499,504>13>9,507>12>505,507>13>985,508>12>505,508>13>9,509>12>505,509>13>717,512>12>510,512>13>802,514>12>513,514>13>151,515>12>513,515>13>510,518>12>516,518>13>2,519>12>516,519>13>753,522>12>520,522>13>746,523>12>520,523>13>568,524>12>520,524>13>802,529>12>525,529>13>746,53'
  521. ..'0>12>525,530>13>950,531>12>525,531>13>588,532>12>525,532>13>235,539>12>537,539>13>535,540>12>537,540>13>549,543>12>541,543>13>535,544>12>541,544>13>537,545>12>541,545>13>549,546>12>541,546>13>547,553>12>551,553>13>535,557>12>555,557>13>565,558>12>555,558>13>802,561>12>559,561>13>555,562>12>559,562>13>568,563>12>559,563>13>565,564>12>559,564>13>802,567>12>565,567>13>802,570>12>568,570>13>565,571>12>568,571>13>802,574>12>572,574>13>555,575>12>572,575>13>565,576>12>572,576>13>568,577>12>572,577>13>802,580>12>578,580>13>935,581>12>578,581>13>753,582>12>578,582>13>389,583>12>578,583>13>273,584>12>578,584>13>276,585'
  522. ..'>12>578,585>13>489,586>12>578,586>13>256,587>12>578,587>13>2,590>12>588,590>13>957,591>12>588,591>13>235,594>12>592,594>13>1420,595>12>592,595>13>1059,596>12>592,596>13>991,597>12>592,597>13>1048,598>12>592,598>13>617,599>12>592,599>13>802,600>12>592,600>13>702,601>12>592,601>13>979,602>12>592,602>13>1541,603>12>592,603>13>489,604>12>592,604>13>9,605>12>592,605>13>6,606>12>592,606>13>1539,607>12>592,607>13>1324,608>12>592,608>13>159,611>12>609,611>13>1424,612>12>609,612>13>592,613>12>609,613>13>975,614>12>609,614>13>935,615>12>609,615>13>702,616>12>609,616>13>6,625>12>623,625>13>957,626>12>623,626>13>628,627>1'
  523. ..'2>623,627>13>630,632>12>630,632>13>957,633>12>630,633>13>628,636>12>634,636>13>630,639>12>637,639>13>628,640>12>637,640>13>630,644>12>642,644>13>957,645>12>642,645>13>647,646>12>642,646>13>650,649>12>647,649>13>650,654>12>652,654>13>650,657>12>655,657>13>647,658>12>655,658>13>650,662>12>660,662>13>957,665>12>663,665>13>660,668>12>666,668>13>957,669>12>666,669>13>672,670>12>666,670>13>663,671>12>666,671>13>660,676>12>674,676>13>663,677>12>674,677>13>666,680>12>678,680>13>681,686>12>684,686>13>689,687>12>684,687>13>957,688>12>684,688>13>691,693>12>691,693>13>957,694>12>691,694>13>689,697>12>695,697>13>691,700>12'
  524. ..'>698,700>13>689,701>12>698,701>13>691,704>12>702,704>13>1424,705>12>702,705>13>9,707>12>706,707>13>592,708>12>706,708>13>1420,709>12>706,709>13>9,712>12>710,712>13>957,713>12>710,713>13>617,714>12>710,714>13>6,715>12>710,715>13>592,716>12>710,716>13>578,719>12>717,719>13>1417,720>12>717,720>13>1420,721>12>717,721>13>985,722>12>717,722>13>9,723>12>717,723>13>706,729>12>727,729>13>725,730>12>727,730>13>739,731>12>727,731>13>802,734>12>732,734>13>725,735>12>732,735>13>727,736>12>732,736>13>739,737>12>732,737>13>741,738>12>732,738>13>802,743>12>741,743>13>725,744>12>741,744>13>739,745>12>741,745>13>802,748>12>746,'
  525. ..'748>13>1400,749>12>746,749>13>802,750>12>746,750>13>235,751>12>746,751>13>1062,752>12>746,752>13>1508,755>12>753,755>13>957,756>12>753,756>13>1575,759>12>757,759>13>836,760>12>757,760>13>513,761>12>757,761>13>124,762>12>757,762>13>1317,763>12>757,763>13>800,764>12>757,764>13>126,767>12>765,767>13>551,768>12>765,768>13>1317,769>12>765,769>13>777,770>12>765,770>13>802,771>12>765,771>13>171,772>12>765,772>13>757,773>12>765,773>13>833,774>12>765,774>13>98,775>12>765,775>13>800,779>12>777,779>13>802,782>12>780,782>13>777,783>12>780,783>13>802,784>12>780,784>13>790,785>12>780,785>13>786,788>12>786,788>13>777,789>12>'
  526. ..'786,789>13>802,792>12>790,792>13>802,793>12>790,793>13>786,796>12>794,796>13>790,797>12>794,797>13>786,798>12>794,798>13>777,799>12>794,799>13>802,804>12>802,804>13>1008,805>12>802,805>13>1019,806>12>802,806>13>1021,807>12>802,807>13>209,808>12>802,808>13>725,809>12>802,809>13>739,810>12>802,810>13>957,811>12>802,811>13>230,813>12>812,813>13>836,814>12>812,814>13>800,819>12>817,819>13>824,822>12>820,822>13>817,823>12>820,823>13>824,828>12>826,828>13>824,831>12>829,831>13>820,832>12>829,832>13>824,835>12>833,835>13>817,840>12>838,840>13>842,841>12>838,841>13>836,845>12>843,845>13>991,846>12>843,846>13>494,847>1'
  527. ..'2>843,847>13>159,848>12>843,848>13>802,849>12>843,849>13>842,854>12>852,854>13>957,855>12>852,855>13>861,858>12>856,858>13>867,859>12>856,859>13>852,860>12>856,860>13>861,863>12>861,863>13>957,866>12>864,866>13>861,869>12>867,869>13>861,875>12>873,875>13>871,876>12>873,876>13>886,879>12>877,879>13>957,880>12>877,880>13>886,881>12>877,881>13>884,882>12>877,882>13>873,883>12>877,883>13>871,891>12>889,891>13>957,892>12>889,892>13>894,893>12>889,893>13>896,898>12>896,898>13>957,899>12>896,899>13>901,900>12>896,900>13>894,905>12>903,905>13>894,906>12>903,906>13>896,911>12>909,911>13>957,912>12>909,912>13>907,916>12'
  528. ..'>914,916>13>957,917>12>914,917>13>918,920>12>918,920>13>930,923>12>921,923>13>957,924>12>921,924>13>928,925>12>921,925>13>930,926>12>921,926>13>918,927>12>921,927>13>914,934>12>932,934>13>753,937>12>935,937>13>753,938>12>935,938>13>6,939>12>935,939>13>1558,942>12>940,942>13>746,943>12>940,943>13>994,944>12>940,944>13>947,945>12>940,945>13>510,946>12>940,946>13>802,949>12>947,949>13>802,952>12>950,952>13>746,953>12>950,953>13>957,954>12>950,954>13>588,956>12>955,956>13>957,959>12>957,959>13>1293,960>12>957,960>13>1287,961>12>957,961>13>1195,962>12>957,962>13>1635,963>12>957,963>13>871,964>12>957,964>13>1231,965'
  529. ..'>12>957,965>13>617,966>12>957,966>13>1091,967>12>957,967>13>13,968>12>957,968>13>337,969>12>957,969>13>650,970>12>957,970>13>389,971>12>957,971>13>57,972>12>957,972>13>235,973>12>957,973>13>681,974>12>957,974>13>1089,977>12>975,977>13>1424,978>12>975,978>13>1059,981>12>979,981>13>957,982>12>979,982>13>1539,983>12>979,983>13>1405,984>12>979,984>13>617,986>12>985,986>13>1424,987>12>985,987>13>1417,988>12>985,988>13>1398,989>12>985,989>13>1324,990>12>985,990>13>702,993>12>991,993>13>802,998>12>994,998>13>947,1001>12>999,1001>13>1004,1002>12>999,1002>13>994,1003>12>999,1003>13>940,1006>12>1004,1006>13>947,1007>12>'
  530. ..'1004,1007>13>994,1012>12>1010,1012>13>999,1013>12>1010,1013>13>1366,1014>12>1010,1014>13>947,1015>12>1010,1015>13>1004,1016>12>1010,1016>13>1008,1017>12>1010,1017>13>1019,1018>12>1010,1018>13>802,1025>12>1023,1025>13>802,1028>12>1026,1028>13>802,1031>12>1029,1031>13>802,1034>12>1032,1034>13>802,1037>12>1035,1037>13>592,1038>12>1035,1038>13>957,1039>12>1035,1039>13>1366,1042>12>1040,1042>13>802,1045>12>1043,1045>13>957,1046>12>1043,1046>13>1366,1047>12>1043,1047>13>802,1050>12>1048,1050>13>1539,1051>12>1048,1051>13>1258,1052>12>1048,1052>13>957,1053>12>1048,1053>13>1273,1054>12>1048,1054>13>1231,1057>12>1055,10'
  531. ..'57>13>1366,1058>12>1055,1058>13>802,1061>12>1059,1061>13>1539,1066>12>1064,1066>13>1068,1067>12>1064,1067>13>1400,1070>12>1068,1070>13>1400,1073>12>1071,1073>13>957,1074>12>1071,1074>13>1400,1075>12>1071,1075>13>1342,1076>12>1071,1076>13>1348,1077>12>1071,1077>13>1390,1078>12>1071,1078>13>1603,1079>12>1071,1079>13>1579,1080>12>1071,1080>13>1573,1081>12>1071,1081>13>1068,1086>12>1084,1086>13>1139,1087>12>1084,1087>13>1091,1088>12>1084,1088>13>1089,1093>12>1091,1093>13>1089,1096>12>1094,1096>13>957,1097>12>1094,1097>13>1084,1098>12>1094,1098>13>1149,1104>12>1102,1104>13>957,1105>12>1102,1105>13>1100,1106>12>1102'
  532. ..',1106>13>1089,1109>12>1107,1109>13>1089,1112>12>1110,1112>13>1100,1113>12>1110,1113>13>1102,1114>12>1110,1114>13>1541,1115>12>1110,1115>13>1107,1116>12>1110,1116>13>1089,1120>12>1118,1120>13>957,1123>12>1121,1123>13>1137,1124>12>1121,1124>13>1149,1125>12>1121,1125>13>1118,1128>12>1126,1128>13>957,1129>12>1126,1129>13>1135,1130>12>1126,1130>13>1121,1131>12>1126,1131>13>1149,1132>12>1126,1132>13>1118,1133>12>1126,1133>13>1137,1134>12>1126,1134>13>1094,1143>12>1139,1143>13>957,1144>12>1139,1144>13>1091,1151>12>1149,1151>13>957,1152>12>1149,1152>13>1541,1153>12>1149,1153>13>1135,1154>12>1149,1154>13>1173,1155>12>1'
  533. ..'149,1155>13>1137,1156>12>1149,1156>13>1100,1157>12>1149,1157>13>1181,1158>12>1149,1158>13>1147,1161>12>1159,1161>13>957,1162>12>1159,1162>13>1147,1163>12>1159,1163>13>1149,1166>12>1164,1166>13>957,1167>12>1164,1167>13>1195,1168>12>1164,1168>13>1147,1169>12>1164,1169>13>1217,1175>12>1173,1175>13>957,1176>12>1173,1176>13>1171,1179>12>1177,1179>13>1149,1180>12>1177,1180>13>1181,1183>12>1181,1183>13>1171,1184>12>1181,1184>13>1173,1188>12>1186,1188>13>957,1189>12>1186,1189>13>1191,1190>12>1186,1190>13>1195,1193>12>1191,1193>13>1195,1194>12>1191,1194>13>1217,1199>12>1197,1199>13>1195,1200>12>1197,1200>13>1217,1203>1'
  534. ..'2>1201,1203>13>1191,1204>12>1201,1204>13>1195,1205>12>1201,1205>13>1217,1210>12>1206,1210>13>1147,1211>12>1206,1211>13>957,1212>12>1206,1212>13>1159,1219>12>1217,1219>13>1539,1220>12>1217,1220>13>1195,1221>12>1217,1221>13>1215,1222>12>1217,1222>13>1171,1223>12>1217,1223>13>957,1224>12>1217,1224>13>1405,1225>12>1217,1225>13>1244,1228>12>1226,1228>13>957,1229>12>1226,1229>13>1215,1230>12>1226,1230>13>1217,1233>12>1231,1233>13>1215,1237>12>1235,1237>13>1048,1240>12>1238,1240>13>957,1241>12>1238,1241>13>1235,1242>12>1238,1242>13>1048,1243>12>1238,1243>13>1217,1248>12>1246,1248>13>1235,1249>12>1246,1249>13>1238,125'
  535. ..'0>12>1246,1250>13>1244,1251>12>1246,1251>13>1217,1255>12>1253,1255>13>957,1256>12>1253,1256>13>1258,1257>12>1253,1257>13>1048,1260>12>1258,1260>13>1273,1263>12>1261,1263>13>1270,1264>12>1261,1264>13>1258,1265>12>1261,1265>13>957,1266>12>1261,1266>13>1253,1267>12>1261,1267>13>1231,1268>12>1261,1268>13>1273,1269>12>1261,1269>13>1048,1272>12>1270,1272>13>1048,1279>12>1275,1279>13>957,1280>12>1275,1280>13>1215,1281>12>1275,1281>13>1226,1285>12>1283,1285>13>1348,1286>12>1283,1286>13>1287,1292>12>1290,1292>13>1293,1298>12>1296,1298>13>1299,1301>12>1299,1301>13>957,1305>12>1303,1305>13>1348,1308>12>1306,1308>13>957,1'
  536. ..'309>12>1306,1309>13>1348,1310>12>1306,1310>13>1303,1311>12>1306,1311>13>1048,1314>12>1312,1314>13>1593,1315>12>1312,1315>13>1400,1316>12>1312,1316>13>746,1319>12>1317,1319>13>812,1320>12>1317,1320>13>1414,1321>12>1317,1321>13>800,1322>12>1317,1322>13>510,1323>12>1317,1323>13>513,1326>12>1324,1326>13>1059,1327>12>1324,1327>13>1398,1328>12>1324,1328>13>1420,1330>12>1329,1330>13>1312,1331>12>1329,1331>13>1491,1334>12>1332,1334>13>1593,1335>12>1332,1335>13>932,1336>12>1332,1336>13>753,1337>12>1332,1337>13>1642,1338>12>1332,1338>13>746,1339>12>1332,1339>13>516,1340>12>1332,1340>13>1062,1341>12>1332,1341>13>159,1344'
  537. ..'>12>1342,1344>13>1059,1345>12>1342,1345>13>1405,1346>12>1342,1346>13>1539,1347>12>1342,1347>13>1586,1350>12>1348,1350>13>1405,1351>12>1348,1351>13>1342,1352>12>1348,1352>13>979,1353>12>1348,1353>13>1299,1354>12>1348,1354>13>1290,1355>12>1348,1355>13>1293,1356>12>1348,1356>13>1296,1357>12>1348,1357>13>1235,1358>12>1348,1358>13>1287,1359>12>1348,1359>13>1048,1360>12>1348,1360>13>1238,1361>12>1348,1361>13>1173,1362>12>1348,1362>13>1541,1363>12>1348,1363>13>1246,1364>12>1348,1364>13>1217,1365>12>1348,1365>13>1171,1368>12>1366,1368>13>957,1369>12>1366,1369>13>991,1370>12>1366,1370>13>592,1371>12>1366,1371>13>843,13'
  538. ..'72>12>1366,1372>13>1541,1373>12>1366,1373>13>1032,1374>12>1366,1374>13>1040,1375>12>1366,1375>13>1400,1376>12>1366,1376>13>1029,1377>12>1366,1377>13>1021,1378>12>1366,1378>13>1023,1379>12>1366,1379>13>1026,1380>12>1366,1380>13>1064,1381>12>1366,1381>13>1551,1382>12>1366,1382>13>950,1383>12>1366,1383>13>999,1384>12>1366,1384>13>1008,1385>12>1366,1385>13>1019,1386>12>1366,1386>13>1317,1387>12>1366,1387>13>510,1388>12>1366,1388>13>746,1389>12>1366,1389>13>940,1392>12>1390,1392>13>957,1393>12>1390,1393>13>1348,1394>12>1390,1394>13>1541,1395>12>1390,1395>13>1068,1396>12>1390,1396>13>1064,1397>12>1390,1397>13>1366,1'
  539. ..'402>12>1400,1402>13>1603,1403>12>1400,1403>13>1573,1404>12>1400,1404>13>1642,1407>12>1405,1407>13>1048,1408>12>1405,1408>13>1539,1410>12>1409,1410>13>1317,1411>12>1409,1411>13>1366,1413>12>1412,1413>13>1414,1416>12>1414,1416>13>836,1419>12>1417,1419>13>1398,1422>12>1420,1422>13>1417,1423>12>1420,1423>13>1398,1426>12>1424,1426>13>1324,1427>12>1424,1427>13>1635,1428>12>1424,1428>13>1583,1429>12>1424,1429>13>1613,1430>12>1424,1430>13>1638,1431>12>1424,1431>13>1059,1432>12>1424,1432>13>1558,1436>12>1434,1436>13>1460,1437>12>1434,1437>13>1446,1438>12>1434,1438>13>1471,1439>12>1434,1439>13>1443,1440>12>1434,1440>13>'
  540. ..'1441,1444>12>1443,1444>13>1593,1445>12>1443,1445>13>1471,1448>12>1446,1448>13>1481,1449>12>1446,1449>13>1593,1450>12>1446,1450>13>1485,1451>12>1446,1451>13>1467,1452>12>1446,1452>13>1443,1453>12>1446,1453>13>1501,1454>12>1446,1454>13>1508,1455>12>1446,1455>13>1534,1456>12>1446,1456>13>1514,1457>12>1446,1457>13>746,1458>12>1446,1458>13>1062,1459>12>1446,1459>13>1441,1464>12>1460,1464>13>1481,1465>12>1460,1465>13>1446,1466>12>1460,1466>13>1471,1469>12>1467,1469>13>1062,1470>12>1467,1470>13>1593,1473>12>1471,1473>13>1441,1475>12>1474,1475>13>1498,1476>12>1474,1476>13>1485,1477>12>1474,1477>13>1481,1478>12>1474,14'
  541. ..'78>13>1593,1479>12>1474,1479>13>1446,1480>12>1474,1480>13>1471,1483>12>1481,1483>13>1498,1484>12>1481,1484>13>1471,1487>12>1485,1487>13>1481,1488>12>1485,1488>13>1593,1489>12>1485,1489>13>1498,1490>12>1485,1490>13>1467,1493>12>1491,1493>13>1467,1494>12>1491,1494>13>1501,1495>12>1491,1495>13>1471,1496>12>1491,1496>13>1514,1497>12>1491,1497>13>1441,1500>12>1498,1500>13>1593,1503>12>1501,1503>13>746,1504>12>1501,1504>13>1062,1505>12>1501,1505>13>1467,1506>12>1501,1506>13>1508,1507>12>1501,1507>13>1312,1512>12>1510,1512>13>746,1513>12>1510,1513>13>1508,1516>12>1514,1516>13>1510,1517>12>1514,1517>13>1508,1518>12>15'
  542. ..'14,1518>13>1441,1521>12>1519,1521>13>746,1522>12>1519,1522>13>1498,1523>12>1519,1523>13>1485,1524>12>1519,1524>13>1329,1525>12>1519,1525>13>1501,1526>12>1519,1526>13>1481,1527>12>1519,1527>13>1510,1528>12>1519,1528>13>1593,1529>12>1519,1529>13>1312,1530>12>1519,1530>13>1471,1531>12>1519,1531>13>1508,1532>12>1519,1532>13>1514,1533>12>1519,1533>13>1491,1535>12>1534,1535>13>746,1536>12>1534,1536>13>1510,1537>12>1534,1537>13>1508,1538>12>1534,1538>13>1514,1543>12>1541,1543>13>1171,1544>12>1541,1544>13>1173,1545>12>1541,1545>13>1405,1546>12>1541,1546>13>1181,1547>12>1541,1547>13>1539,1548>12>1541,1548>13>1102,1549>'
  543. ..'12>1541,1549>13>1089,1550>12>1541,1550>13>1100,1553>12>1551,1553>13>843,1554>12>1551,1554>13>842,1555>12>1551,1555>13>1412,1556>12>1551,1556>13>838,1557>12>1551,1557>13>1414,1562>12>1560,1562>13>1424,1563>12>1560,1563>13>957,1564>12>1560,1564>13>1566,1565>12>1560,1565>13>1558,1570>12>1566,1570>13>957,1571>12>1566,1571>13>1424,1572>12>1566,1572>13>1583,1577>12>1575,1577>13>957,1578>12>1575,1578>13>1558,1581>12>1579,1581>13>957,1582>12>1579,1582>13>1603,1585>12>1583,1585>13>957,1588>12>1586,1588>13>1638,1589>12>1586,1589>13>1618,1590>12>1586,1590>13>1579,1591>12>1586,1591>13>1424,1592>12>1586,1592>13>1583,1595>1'
  544. ..'2>1593,1595>13>1400,1596>12>1593,1596>13>1642,1597>12>1593,1597>13>1062,1600>12>1598,1600>13>1332,1601>12>1598,1601>13>1575,1602>12>1598,1602>13>753,1607>12>1605,1607>13>1332,1608>12>1605,1608>13>1558,1609>12>1605,1609>13>1575,1610>12>1605,1610>13>957,1611>12>1605,1611>13>1648,1612>12>1605,1612>13>1598,1615>12>1613,1615>13>957,1616>12>1613,1616>13>1638,1617>12>1613,1617>13>1558,1620>12>1618,1620>13>1400,1621>12>1618,1621>13>957,1622>12>1618,1622>13>1579,1623>12>1618,1623>13>1603,1626>12>1624,1626>13>1424,1627>12>1624,1627>13>957,1628>12>1624,1628>13>1638,1631>12>1629,1631>13>1424,1632>12>1629,1632>13>957,1633>'
  545. ..'12>1629,1633>13>1586,1634>12>1629,1634>13>1638,1637>12>1635,1637>13>1645,1640>12>1638,1640>13>1635,1641>12>1638,1641>13>1558,1644>12>1643,1644>13>957,1646>12>1645,1646>13>957,1647>12>1645,1647>13>1638,1649>12>1648,1649>13>1332,1650>12>1648,1650>13>1638,1651>12>1648,1651>13>1558,1652>12>1648,1652>13>957,1657>12>1653,1657>13>1642,1659>12>1658,1659>13>1400,1660>12>1658,1660>13>1638,1661>12>1658,1661>13>1586,1662>12>1658,1662>13>1618,1663>12>1658,1663>13>957;2;n;1|2:2|3:3|4:4|5:5|6:5|7:5|8:5|9:5;n;3;4|10:6|11:7;4|10:8|11:9;p;1|2:10|3:3|4:11|5:5|6:5|7:5|8:5|9:5;n;3;4|10:6|11:12;p;1|2:13|3:3|4:14|5:5|6:5|7:5|8:5|9:5'
  546. ..';n;3;p;2|1:15;n;2|1:16;n;5|2:17|3:18|4:19;n;3;p;1|14:20|2:21|3:18|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:24|11:25;p;1|2:26|3:27|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:30;4|10:31|11:32;4|10:31|11:33;4|10:31|11:34;4|10:31|11:35;p;1|14:20|2:36|3:27|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:39|3:27|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:42;p;p;2|1:16;n;5|2:43|3:44|4:19;n;3;4|10:24|11:45;4|10:31|11:46;4|10:47|11:48;p;1|14:20|2:49|3:44|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;p;1|2:50|3:51|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:52;4|10:'
  547. ..'31|11:53;p;1|14:20|2:54|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;4|10:24|11:55;p;1|14:20|2:56|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:57;4|10:24|11:58;p;p;2|1:16;n;5|2:59|3:60|4:19;n;3;4|10:24|11:61;4|10:47|11:62;4|10:31|11:46;p;1|14:20|2:63|3:60|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;p;1|2:64|3:65|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:31|11:53;p;1|14:20|2:66|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;4|10:24|11:55;p;1|14:20|2:67|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:68;4|10:24|11:69;p;p;1|14:70|2:71|3:72|4:73'
  548. ..'|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;6;p;1|2:74|3:72|4:75|5:5|6:5|7:5|8:5|9:5;n;6|16:76;4|10:77|11:78;4|10:79|11:80;p;2|1:16;n;5|2:81|4:19;n;3;4|10:24|11:82;4|10:31|11:46;4|10:47|11:83;p;1|14:20|2:84|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;p;1|2:85|3:86|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:87;4|10:31|11:53;4|10:31|11:33;p;1|14:20|2:88|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:89|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:42;4|10:24|11:90;p;p;p;1|2:91|3:3|4:92|5:5|6:5|7:5|8:5|9:5;n;3;4|10:93|11:94;4|10:95|11:96;4|10:97|11:98;4|10:99|11:100;p;1|'
  549. ..'2:101|3:3|4:102|5:5|6:5|7:5|8:5|9:5;n;3;4|10:103|11:104;4|10:105|11:106;4|10:107|11:108;4|10:6|11:109;4|10:6|11:110;4|10:107|11:111;4|10:6|11:112;4|10:6|11:113;4|10:6|11:114;4|10:103|11:115;4|10:6|11:116;4|10:117|11:118;p;1|2:119|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:122;4|10:123|11:124;4|10:95|11:125;p;1|14:126|17:127|2:128|3:18|4:129|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:130|11:131;4|10:132|11:133;4|10:105|11:134;4|10:117|11:135;p;2;n;1|14:126|2:136|3:137|4:138|5:5|6:5|7:5|8:5|9:139|14:126|14:126;n;3;p;1|2:140|3:141|4:142|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:143;4|10:144|11:145;4|10:146|11:147;p;1|'
  550. ..'14:148|2:149|3:137|4:19|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3|16:150;p;1|14:148|2:151|3:137|4:152|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3;4|10:153|11:154;4|10:24|11:155;4|10:47|11:156;4|10:157|11:158;4|10:31|11:159;4|10:160|11:161;p;p;1|2:162|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:163;4|10:95|11:164;p;2;n;1|14:126|2:165|3:137|4:138|5:5|6:5|7:5|8:5|9:139|14:126|14:126;n;3;4|10:31|11:166;4|10:157|11:167;4|10:168|11:169;p;1|2:170|3:141|4:142|5:5|6:5|7:5|8:5|9:5;n;3;p;1|14:148|2:171|3:137|4:19|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3|16:150;p;1|14:148|2:172|3:137|4:152|5:5|6:5|7:5|8:5|9:139|14:148|14:148;'
  551. ..'n;3;4|10:31|11:173;4|10:24|11:174;p;p;1|2:175|3:3|4:176|5:5|6:5|7:5|8:5|9:5;n;3;4|10:6|11:177;4|10:6|11:178;4|10:6|11:179;4|10:105|11:180;4|10:6|11:181;4|10:6|11:182;4|10:6|11:183;4|10:6|11:184;4|10:117|11:185;p;2|1:186;n;7|1:187|2:188|4:189|5:5|6:5|9:139|19:190|20:191;n;8|1:192|21:193;8|1:194|21:195;9|2:196|22:197;10|23:197|24:198;11|1:199|10:200|11:201;12|1:202;12|1:203;n;13|1:202;n;14|1:204|2:205|4:206|25:207|26:208|27:209|28:5;n;15|1:210|2:211|4:212|25:213|28:5|29:214|30:215;15|1:216|4:212|25:213|28:5|29:217|30:215;15|1:218|2:219|4:220|25:207|28:5|29:195|30:215;15|1:221|2:222|4:220|25:213|28:5|29:223|30:21'
  552. ..'5;15|1:224|2:225|4:212|25:213|28:5|29:226|30:215;p;p;p;3;6|15:227|16:76;p;1|2:228|3:86|4:28|5:5|6:5|7:5|8:5|9:5;n;3;p;1|14:126|2:229|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:126|14:126;n;3|15:22|16:40;4|10:24|11:230;p;1|14:126|2:231|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:126|14:126;n;3|15:22|16:38;4|10:24|11:232;p;1|2:233|3:72|4:19|5:5|6:5|7:5|8:5|9:139;n;3;4|10:47|11:234;p;1|14:126|2:235|4:19|5:5|6:5|7:5|8:5|9:5|14:126|14:126;n;3|15:22|16:23;4|10:31|11:236;4|10:47|11:237;4|10:24|11:238;p;p;2;n;1|2:239|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:240;4|10:95|11:241;p;1|2:242|3:120|4:243|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:244|3'
  553. ..':120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:245;p;1|2:246|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:247;4|10:95|11:248;p;1|2:249|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:250;4|10:95|11:251;p;1|2:252|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:253;4|10:95|11:254;p;1|2:255|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:256;4|10:95|11:257;p;1|2:258|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:259|3:120|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:260;p;p;1|2:261|3:3|4:262|5:5|6:5|7:5|8:5|9:5;n;3;p;16|2:263|4:264|5:5|6:5;n;4|10:47|11:265;p;16|14:126|17:127|2:266|3:27|4:267|6:5|14:126|14:126;1|14:126|17:12'
  554. ..'7|2:268|3:18|4:269|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:270|11:271;4|10:272|11:273;p;1|2:274|3:3|4:275|5:5|6:5|7:5|8:5|9:5;n;3;4|10:276|11:277;4|10:278|11:279;4|10:276|11:280;4|10:105|11:281;4|10:278|11:282;4|10:117|11:283;p;2;n;2|1:284;n;1|2:285|3:3|4:286|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:287|3:3|4:288|5:5|6:5|7:5|8:5|9:5;n;3;4|10:289|11:290;4|10:291|11:292;4|10:41|11:293;4|10:294|11:295;p;1|2:296|3:3|4:297|5:5|6:5|7:5|8:5|9:5;n;3;4|10:298|11:299;4|10:300|11:301;4|10:291|11:302;4|10:41|11:303;p;1|2:304|3:3|4:305|5:5|6:5|7:5|8:5|9:5;n;3;4|10:289|11:306;4|10:160|11:307;p;2;n;1|14:308|2:309|3:310|4:138|5:5|6:5|7:'
  555. ..'5|8:5|9:139|14:308|14:308;n;3;4|10:31|11:311;p;1|2:312|3:120|4:142|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:313;4|10:314|11:315;p;1|14:148|2:316|3:310|4:19|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3|16:150;4|10:160|11:317;p;1|14:148|2:318|3:310|4:152|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3;4|10:24|11:319;4|10:31|11:320;4|10:47|11:321;4|10:157|11:322;4|10:160|11:323;p;p;2|1:16;n;5|2:324|3:60|4:19;n;3;4|10:24|11:325;4|10:47|11:326;p;1|14:20|2:327|3:60|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:31|11:328;4|10:47|11:329;4|10:330|11:331;4|10:24|11:332;p;1|2:333|3:65|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:33'
  556. ..'4;4|10:31|11:33;4|10:31|11:32;4|10:24|11:335;p;1|14:20|2:336|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:337|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;p;p;p;1|14:148|2:338|4:339|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:340|11:341;4|10:342|11:343;p;p;2;n;2|1:284;n;1|2:344|3:3|4:286|5:5|6:5|7:5|8:5|9:5;n;3;4|10:330|11:345;4|10:346|11:347;p;1|2:348|3:3|4:288|5:5|6:5|7:5|8:5|9:5;n;3;4|10:289|11:349;4|10:291|11:292;4|10:41|11:350;4|10:41|11:351;4|10:291|11:352;4|10:41|11:353;4|10:291|11:354;4|10:291|11:355;4|10:291|11:356;4|10:41|11:357;4|10:41|11:358;4|10:294|11:359;p;'
  557. ..'1|2:360|3:3|4:297|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:361|3:3|4:305|5:5|6:5|7:5|8:5|9:5;n;3;4|10:289|11:362;4|10:363|11:364;p;2;n;1|14:308|2:365|3:310|4:138|5:5|6:5|7:5|8:5|9:139|14:308|14:308;n;3;4|10:168|11:366;4|10:31|11:367;4|10:346|11:368;4|10:157|11:369;p;1|2:370|3:120|4:142|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:371;4|10:144|11:372;p;1|14:148|2:373|3:310|4:19|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3|16:150;4|10:31|11:46;p;1|14:148|2:374|3:310|4:152|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3;p;p;2|1:16;n;5|2:375|3:60|4:19;n;3;4|10:24|11:376;4|10:47|11:326;p;1|14:20|2:377|3:60|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|'
  558. ..'15:22|16:23;4|10:24|11:332;4|10:31|11:236;4|10:47|11:378;p;1|2:379|3:65|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:380;4|10:31|11:33;p;1|14:20|2:381|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:382|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:24|11:383;p;p;p;1|14:148|2:384|4:339|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:340|11:385;4|10:342|11:386;4|10:387|11:388;p;p;2;n;2|1:284;n;1|2:389|3:3|4:286|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:390|3:3|4:288|5:5|6:5|7:5|8:5|9:5;n;3;4|10:291|11:292;p;1|2:391|3:3|4:297|5:5|6:5|7:5|8:5|9:5;n;3;4|10:298|11:392;4|10:300|11:393;4|10:41|11:30'
  559. ..'3;p;1|2:394|3:3|4:305|5:5|6:5|7:5|8:5|9:5;n;3;4|10:289|11:395;4|10:160|11:307;4|10:363|11:364;4|10:47|11:396;p;2;n;1|14:308|2:397|3:310|4:138|5:5|6:5|7:5|8:5|9:139|14:308|14:308;n;3;4|10:157|11:398;4|10:346|11:399;p;1|2:400|3:120|4:142|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:401;4|10:314|11:315;4|10:144|11:145;4|10:402|11:403;p;1|14:148|2:404|3:310|4:19|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3|16:150;4|10:160|11:317;p;1|14:148|2:405|3:310|4:152|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3;4|10:24|11:319;4|10:31|11:320;4|10:47|11:321;4|10:157|11:406;4|10:160|11:323;p;p;2|1:16;n;5|2:407|3:60|4:19;n;3;4|10:24|11:408;4|10:3'
  560. ..'1|11:409;4|10:47|11:410;p;1|14:20|2:411|3:60|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;p;1|2:412|3:65|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:413;4|10:31|11:53;4|10:330|11:414;p;1|14:20|2:415|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;4|10:24|11:416;4|10:330|11:417;p;1|14:20|2:418|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:57;4|10:24|11:383;4|10:330|11:419;p;p;p;1|14:148|2:420|4:339|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:340|11:421;4|10:342|11:343;4|10:387|11:388;p;p;1|2:422|3:3|4:423|5:5|6:5|7:5|8:5|9:5;n;3;4|10:41|11:424;4|10:95|11:425;4|10:97|11:426;'
  561. ..'p;1|14:126|17:127|2:427|3:18|4:428|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:429|11:430;4|10:144|11:431;4|10:144|11:432;4|10:130|11:433;4|10:144|11:434;4|10:435|11:436;4|10:144|11:437;4|10:132|11:438;p;1|2:439|3:3|4:440|5:5|6:5|7:5|8:5|9:5;n;3;4|10:441|11:442;4|10:6|11:443;4|10:6|11:444;4|10:6|11:445;4|10:441|11:446;4|10:447|11:448;4|10:6|11:449;4|10:6|11:450;4|10:451|11:452;p;1|2:453|3:3|4:454|5:5|6:5|7:5|8:5|9:5;n;3;4|10:455|11:456;4|10:41|11:457;4|10:41|11:458;4|10:41|11:459;4|10:41|11:460;4|10:41|11:461;4|10:462|11:463;4|10:294|11:464;p;1|2:465|3:3|4:454|5:5|6:5|7:5|8:5|9:5;n;3;4|10:455|11:466;4|10:294|11:46'
  562. ..'7;4|10:291|11:468;p;1|2:469|3:3|4:470|5:5|6:5|7:5|8:5|9:5;n;3;4|10:95|11:471;4|10:93|11:472;4|10:97|11:473;p;1|14:126|17:127|2:474|3:18|4:475|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:132|11:476;4|10:477|11:478;4|10:130|11:479;4|10:480|11:481;p;1|2:482|3:3|4:483|5:5|6:5|7:5|8:5|9:5;n;3;4|10:477|11:484;4|10:480|11:485;4|10:486|11:487;p;1|2:488|3:3|4:489|5:5|6:5|7:5|8:5|9:5;n;3;4|10:490|11:491;p;16|2:492|3:86|4:493|5:5|6:5;n;4|10:494|11:495;4|10:496|11:497;p;1|2:498|3:3|4:499|5:5|6:5|7:5|8:5|9:5;n;3;4|10:276|11:500;4|10:29|11:501;p;1|2:502|3:3|4:503|5:5|6:5|7:5|8:5|9:5;n;3;4|10:330|11:504;4|10:486|11:505;4|10:47|1'
  563. ..'1:506;p;1|14:148|2:507|4:508|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:496|11:509;4|10:298|11:510;4|10:294|11:511;4|10:300|11:512;p;2|1:513;n;2;n;5|2:514|4:19;n;3;p;1|14:70|2:515|4:19|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3|15:22|16:23;4|10:24|11:80;4|10:31|11:516;p;1|2:517|3:86|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:31|11:518;4|10:31|11:34;4|10:31|11:519;4|10:31|11:520;p;1|14:70|2:521|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3|15:22|16:38;p;1|14:70|2:522|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3|15:22|16:40;p;p;1|2:523|3:72|4:524|5:5|6:5|7:5|8:5|9:5;n;6|15:227|16:76;4|10:6|11:46;p;p;2;n;1|2:525|3:3|4:526|5:5'
  564. ..'|6:5|7:5|8:5|9:5;n;3;4|10:123|11:527;4|10:291|11:528;p;1|2:529|3:3|4:530|5:5|6:5|7:5|8:5|9:5;n;3;4|10:531|11:532;4|10:533|11:534;4|10:6|11:535;4|10:291|11:536;p;1|14:126|17:127|2:537|3:18|4:538|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:291|11:539;p;1|2:540|3:3|4:526|5:5|6:5|7:5|8:5|9:5;n;3;4|10:144|11:541;4|10:291|11:542;p;1|2:543|3:3|4:530|5:5|6:5|7:5|8:5|9:5;n;3;4|10:531|11:544;4|10:363|11:545;4|10:533|11:546;4|10:291|11:547;p;p;1|2:548|3:3|4:549|5:5|6:5|7:5|8:5|9:5;n;3;4|10:429|11:550;4|10:551|11:552;4|10:6|11:553;4|10:6|11:554;4|10:6|11:555;4|10:6|11:556;4|10:6|11:557;4|10:551|11:558;p;1|2:559|3:3|4:560|5:5|'
  565. ..'6:5|7:5|8:5|9:5;n;3;4|10:561|11:562;4|10:342|11:563;p;1|2:564|3:3|4:565|5:5|6:5|7:5|8:5|9:5;n;3;4|10:144|11:566;4|10:567|11:568;4|10:569|11:570;4|10:123|11:571;4|10:123|11:572;4|10:569|11:573;4|10:144|11:574;4|10:123|11:575;4|10:576|11:577;4|10:123|11:578;4|10:144|11:579;4|10:580|11:581;4|10:576|11:582;4|10:144|11:583;4|10:580|11:584;p;1|2:585|3:3|4:586|5:5|6:5|7:5|8:5|9:5;n;3;4|10:587|11:588;4|10:589|11:590;4|10:591|11:592;4|10:593|11:594;4|10:144|11:595;4|10:593|11:596;p;1|14:148|2:597|4:508|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;p;2|1:15;n;2|1:16;n;5|2:598|3:18|4:19;n;3;4|10:24|11:599;4|10:31|11:46;4|10:47'
  566. ..'|11:600;p;1|14:20|2:601|3:18|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;p;1|2:602|3:27|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:603;4|10:31|11:53;p;1|14:20|2:604|3:27|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;4|10:24|11:416;p;1|14:20|2:605|3:27|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:42;4|10:24|11:383;p;p;2|1:16;n;5|2:606|3:44|4:19;n;3;4|10:24|11:607;4|10:31|11:46;4|10:47|11:48;p;1|14:20|2:608|3:44|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:47|11:609;p;1|2:610|3:51|4:28|5:5|6:5|7:5|8:5|9:5;n;3;p;1|14:20|2:611|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n'
  567. ..';3|15:22|16:38;4|10:24|11:55;p;1|14:20|2:612|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:57;4|10:24|11:58;p;p;2|1:16;n;5|2:613|3:60|4:19;n;3;4|10:24|11:614;p;1|14:20|2:615|3:60|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:24|11:174;p;1|2:616|3:65|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:617;4|10:31|11:520;4|10:31|11:53;4|10:31|11:618;p;1|14:20|2:619|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:620|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:68;4|10:24|11:69;p;p;1|14:70|2:621|3:72|4:73|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;6;4|10'
  568. ..':31|11:622;p;1|2:623|3:72|4:75|5:5|6:5|7:5|8:5|9:5;n;6|16:76;p;2|1:16;n;5|2:624|4:19;n;3;4|10:31|11:46;4|10:24|11:625;4|10:47|11:83;p;1|14:20|2:626|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;p;1|2:627|3:86|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:628;4|10:31|11:53;p;1|14:20|2:629|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;4|10:24|11:630;p;1|14:20|2:631|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:42;4|10:24|11:90;p;p;p;1|2:632|3:3|4:483|5:5|6:5|7:5|8:5|9:5;n;3;4|10:330|11:633;4|10:480|11:634;p;16|2:635|4:636|5:5|6:5;n;4|10:637|11:638;4|10:272|11:639;4|10:272|11:6'
  569. ..'40;p;1|2:641|3:3|4:454|5:5|6:5|7:5|8:5|9:5;n;3;4|10:455|11:642;4|10:496|11:643;4|10:294|11:644;4|10:462|11:645;4|10:294|11:646;p;1|2:647|3:3|4:648|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:649;4|10:123|11:650;4|10:651|11:652;4|10:123|11:653;4|10:654|11:655;p;2;n;1|2:656|3:3|4:526|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:657|3:3|4:530|5:5|6:5|7:5|8:5|9:5;n;3;4|10:531|11:658;4|10:533|11:659;4|10:41|11:660;p;1|14:126|17:127|2:661|3:18|4:538|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:662|11:663;4|10:289|11:664;4|10:665|11:666;4|10:667|11:668;4|10:41|11:669;p;1|2:670|3:3|4:526|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:671|3:3|4:530|5:5|6:5|7:5|8:'
  570. ..'5|9:5;n;3;4|10:531|11:544;4|10:533|11:546;4|10:41|11:672;p;p;1|2:673|3:141|4:674|5:5|6:5|7:5|8:5|9:5;n;3;4|10:675|11:676;4|10:677|11:678;4|10:300|11:679;4|10:680|11:681;4|10:298|11:682;p;1|2:683|3:3|4:684|5:5|6:5|7:5|8:5|9:5;n;3;4|10:6|11:685;4|10:686|11:687;p;1|2:688|3:3|4:689|5:5|6:5|7:5|8:5|9:5;n;3;4|10:103|11:690;4|10:107|11:691;4|10:41|11:692;4|10:41|11:693;4|10:41|11:694;4|10:41|11:695;p;1|2:696|3:3|4:697|5:5|6:5|7:5|8:5|9:5;n;3;4|10:144|11:698;4|10:576|11:699;4|10:123|11:700;4|10:105|11:701;4|10:144|11:702;4|10:117|11:703;4|10:144|11:704;4|10:580|11:705;4|10:144|11:706;p;2;n;1|2:707|3:3|4:526|5:5|6:5|7:'
  571. ..'5|8:5|9:5;n;3;4|10:41|11:708;p;1|2:709|3:3|4:530|5:5|6:5|7:5|8:5|9:5;n;3;4|10:531|11:710;4|10:41|11:711;4|10:533|11:712;4|10:6|11:713;p;1|14:126|17:127|2:714|3:18|4:538|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:662|11:715;4|10:41|11:716;p;1|2:717|3:3|4:526|5:5|6:5|7:5|8:5|9:5;n;3;4|10:41|11:718;4|10:144|11:541;p;1|2:719|3:3|4:530|5:5|6:5|7:5|8:5|9:5;n;3;4|10:533|11:720;4|10:363|11:721;4|10:531|11:544;4|10:41|11:722;p;p;1|2:723|3:3|4:724|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:725|3:3|4:726|5:5|6:5|7:5|8:5|9:5;n;3;4|10:727|11:728;4|10:727|11:729;4|10:727|11:730;4|10:731|11:732;4|10:99|11:733;4|10:99|11:734;4|10:93|11:735;4'
  572. ..'|10:731|11:736;p;16|2:737|3:18|4:738|5:5|6:5;n;4|10:47|11:739;4|10:6|11:740;p;2|1:513;n;2;n;5|2:741|4:19;n;3;4|10:47|11:742;p;1|14:70|2:743|4:19|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3|15:22|16:23;4|10:24|11:80;4|10:47|11:609;p;1|2:744|3:86|4:28|5:5|6:5|7:5|8:5|9:5;n;3;p;1|14:70|2:745|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3|15:22|16:38;4|10:24|11:55;p;1|14:70|2:746|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3|15:22|16:40;4|10:41|11:747;4|10:24|11:748;p;p;1|2:749|3:72|4:524|5:5|6:5|7:5|8:5|9:5;n;6|15:227|16:76;4|10:6|11:46;p;p;1|14:126|17:127|2:750|3:18|4:751|5:5|6:5|18:5|9:5|14:126|14:126;n;3;p;1|2:752|3:3|'
  573. ..'4:753|5:5|6:5|7:5|8:5|9:5;n;3;4|10:276|11:754;4|10:278|11:527;p;16|2:755|3:756|4:493|5:5|6:5;1|2:757|3:3|4:489|5:5|6:5|7:5|8:5|9:5;n;3;4|10:490|11:758;4|10:490|11:759;4|10:490|11:760;4|10:490|11:761;4|10:762|11:763;p;2|1:15;n;2|1:16;n;5|2:764|3:18|4:19;n;3;4|10:24|11:765;4|10:47|11:48;p;1|14:20|2:766|3:18|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:31|11:767;4|10:24|11:174;4|10:47|11:768;p;1|2:769|3:27|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:770;p;1|14:20|2:771|3:27|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;4|10:24|11:772;p;1|14:20|2:773|3:27|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15'
  574. ..':22|16:40;4|10:24|11:383;p;p;2|1:16;n;5|2:774|3:44|4:19;n;3;p;1|14:20|2:775|3:44|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:24|11:174;4|10:31|11:236;p;1|2:776|3:51|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:777;4|10:31|11:778;4|10:31|11:520;4|10:31|11:53;4|10:31|11:779;p;1|14:20|2:780|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:781|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;p;p;2|1:16;n;5|2:782|3:60|4:19;n;3;4|10:24|11:783;4|10:31|11:46;4|10:47|11:62;p;1|14:20|2:784|3:60|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;p;1|2:785|3:65|4:28|5:5|6:5|7:5|8:5'
  575. ..'|9:5;n;3;4|10:29|11:786;4|10:31|11:520;4|10:31|11:53;p;1|14:20|2:787|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:788|3:65|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:68;4|10:24|11:58;p;p;1|14:70|2:789|3:72|4:73|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;6;p;1|2:790|3:72|4:75|5:5|6:5|7:5|8:5|9:5;n;6|16:76;4|10:77|11:791;4|10:79|11:80;p;2|1:16;n;5|2:792|4:19;n;3;4|10:24|11:793;4|10:31|11:46;p;1|14:20|2:794|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:31|11:767;p;1|2:795|3:86|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:796;4|10:31|11:33;4|10:31|11:32;4|10:31|11:53;4|1'
  576. ..'0:31|11:797;p;1|14:20|2:798|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:799|3:86|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;p;p;p;1|2:800|3:27|4:801|5:5|6:5|7:5|8:5|9:5;n;6;4|10:667|11:802;p;1|2:803|3:3|4:804|5:5|6:5|7:5|8:5|9:5;n;3;4|10:447|11:805;4|10:291|11:806;4|10:41|11:807;p;1|2:808|3:3|4:92|5:5|6:5|7:5|8:5|9:5;n;3;4|10:93|11:809;4|10:300|11:810;4|10:300|11:811;4|10:99|11:812;4|10:97|11:813;p;1|2:814|3:3|4:815|5:5|6:5|7:5|8:5|9:5;n;3;4|10:77|11:816;p;1|2:817|3:3|4:262|5:5|6:5|7:5|8:5|9:5;n;3;4|10:818|11:819;4|10:820|11:821;4|10:294|11:822;p;18|14:70|2:823|4:503|5:139|1'
  577. ..'8:139|7:139|8:139|14:70|14:70;n;4|10:727|11:824;p;1|2:825|3:3|4:826|5:5|6:5|7:5|8:5|9:5;n;3;4|10:144|11:827;4|10:144|11:828;4|10:144|11:829;4|10:144|11:830;4|10:144|11:831;4|10:144|11:832;4|10:144|11:833;4|10:144|11:834;4|10:144|11:835;4|10:144|11:836;4|10:144|11:837;4|10:144|11:838;4|10:144|11:839;4|10:123|11:840;4|10:144|11:841;4|10:144|11:842;p;1|2:843|3:3|4:844|5:5|6:5|7:5|8:5|9:5;n;3;4|10:845|11:846;4|10:402|11:847;p;1|2:848|3:3|4:454|5:5|6:5|7:5|8:5|9:5;n;3;4|10:455|11:849;4|10:496|11:850;4|10:496|11:851;4|10:294|11:852;p;16|2:853|3:18|4:636|5:5|6:5;n;4|10:637|11:854;4|10:272|11:855;4|10:272|11:856;4|10:'
  578. ..'272|11:857;4|10:272|11:858;p;1|2:859|3:3|4:470|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:860;p;1|14:148|2:861|4:862|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:276|11:863;p;1|2:864|3:3|4:815|5:5|6:5|7:5|8:5|9:5;n;3;4|10:77|11:865;4|10:77|11:866;4|10:455|11:867;p;1|2:868|3:3|4:869|5:5|6:5|7:5|8:5|9:5;n;3;4|10:132|11:870;4|10:551|11:871;p;1|2:872|3:3|4:121|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:873|3:3|4:874|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:875;4|10:95|11:876;4|10:123|11:877;4|10:123|11:878;4|10:762|11:879;4|10:144|11:880;4|10:97|11:881;p;1|2:882|3:3|4:121|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:883|3:3|4:121|5:5|6:5|7:5|8:5|9:5;n;3;'
  579. ..'p;1|2:884|3:3|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:885;p;1|2:886|3:3|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:887;p;1|2:888|3:3|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:889;p;1|2:890|3:3|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:891;p;1|2:892|3:3|4:454|5:5|6:5|7:5|8:5|9:5;n;3;4|10:462|11:893;4|10:455|11:894;4|10:496|11:895;p;1|2:896|3:3|4:121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:97|11:897;p;1|2:898|3:3|4:899|5:5|6:5|7:5|8:5|9:5;n;3;4|10:160|11:900;4|10:95|11:901;4|10:97|11:902;p;1|2:903|3:3|4:454|5:5|6:5|7:5|8:5|9:5;n;3;4|10:496|11:904;4|10:291|11:905;4|10:455|11:906;4|10:291|11:907;4|10:291|11:908;p;1|2:909|3:3|4:'
  580. ..'121|5:5|6:5|7:5|8:5|9:5;n;3;4|10:95|11:910;4|10:97|11:911;p;1|2:912|3:3|4:913|5:5|6:5|7:5|8:5|9:5;n;3;4|10:130|11:914;p;1|2:915|3:3|4:916|5:5|6:5|7:5|8:5|9:5;n;3;p;1|14:126|17:127|2:917|3:18|4:129|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:105|11:134;4|10:130|11:131;p;1|2:918|3:3|4:499|5:5|6:5|7:5|8:5|9:5;n;3;4|10:278|11:919;p;1|2:920|3:3|4:684|5:5|6:5|7:5|8:5|9:5;n;3;4|10:363|11:921;4|10:922|11:923;4|10:924|11:925;4|10:924|11:926;4|10:927|11:928;4|10:686|11:929;4|10:686|11:930;4|10:6|11:931;4|10:927|11:932;p;2;n;2|1:284;n;1|2:933|3:120|4:286|5:5|6:5|7:5|8:5|9:5;n;3;4|10:330|11:934;4|10:330|11:935;4|10:168|11:936'
  581. ..';p;1|2:937|3:120|4:288|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:938|3:120|4:297|5:5|6:5|7:5|8:5|9:5;n;3;4|10:41|11:303;p;1|2:939|3:120|4:305|5:5|6:5|7:5|8:5|9:5;n;3;4|10:289|11:940;4|10:160|11:307;4|10:47|11:396;p;2;n;1|14:308|2:941|3:72|4:138|5:5|6:5|7:5|8:5|9:139|14:308|14:308;n;3;p;1|2:942|3:3|4:142|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:943;4|10:144|11:145;4|10:314|11:315;p;1|14:148|2:944|3:72|4:19|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3|16:150;4|10:160|11:945;p;1|14:148|2:946|3:72|4:152|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3;4|10:47|11:156;4|10:31|11:947;4|10:157|11:948;4|10:24|11:174;4|10:160|11:949;p;p;2|1:16;n;5|2:'
  582. ..'950|3:44|4:19;n;3;4|10:24|11:951;p;1|14:20|2:952|3:44|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:31|11:236;4|10:330|11:953;4|10:24|11:174;p;1|2:954|3:51|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:29|11:955;4|10:31|11:33;4|10:31|11:53;4|10:330|11:956;4|10:31|11:779;4|10:31|11:32;4|10:24|11:335;p;1|14:20|2:957|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;p;1|14:20|2:958|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;p;p;p;1|14:148|2:959|3:18|4:339|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:340|11:960;4|10:387|11:961;p;p;2;n;2|1:284;n;1|2:962|3:120|4:286|5:5|6:5|7:5|8:5|9:5;n;3;p;1'
  583. ..'|2:963|3:120|4:288|5:5|6:5|7:5|8:5|9:5;n;3;4|10:289|11:964;4|10:294|11:965;4|10:41|11:350;4|10:291|11:356;4|10:41|11:351;4|10:41|11:966;4|10:291|11:354;4|10:291|11:292;p;1|2:967|3:120|4:297|5:5|6:5|7:5|8:5|9:5;n;3;4|10:298|11:968;4|10:300|11:393;4|10:41|11:303;p;1|2:969|3:120|4:305|5:5|6:5|7:5|8:5|9:5;n;3;4|10:289|11:970;4|10:363|11:364;4|10:160|11:307;4|10:47|11:396;p;2;n;1|14:308|2:971|3:72|4:138|5:5|6:5|7:5|8:5|9:139|14:308|14:308;n;3;p;1|2:972|3:3|4:142|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:973;4|10:144|11:145;p;1|14:148|2:974|3:72|4:19|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3|16:150;4|10:160|11:945;4|10:31|1'
  584. ..'1:975;p;1|14:148|2:976|3:72|4:152|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3;4|10:47|11:156;4|10:31|11:977;p;p;2|1:16;n;5|2:978|3:44|4:19;n;3;4|10:24|11:979;4|10:31|11:46;4|10:47|11:326;p;1|14:20|2:980|3:44|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:47|11:378;4|10:330|11:953;p;1|2:981|3:51|4:28|5:5|6:5|7:5|8:5|9:5;n;3;p;1|14:20|2:982|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;4|10:24|11:416;4|10:330|11:417;p;1|14:20|2:983|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;4|10:41|11:57;4|10:24|11:383;4|10:330|11:419;p;p;p;1|14:148|2:984|3:18|4:339|6:5|7:5|8:5|9:5|14:148|14:148'
  585. ..';n;17;12;3;4|10:342|11:343;4|10:340|11:985;4|10:387|11:961;p;p;2;n;2|1:284;n;1|2:986|3:120|4:286|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:987|3:120|4:288|5:5|6:5|7:5|8:5|9:5;n;3;4|10:294|11:988;4|10:41|11:358;4|10:291|11:292;4|10:41|11:357;4|10:289|11:989;4|10:294|11:990;4|10:291|11:355;p;1|2:991|3:120|4:297|5:5|6:5|7:5|8:5|9:5;n;3;4|10:298|11:992;4|10:300|11:393;4|10:41|11:303;p;1|2:993|3:120|4:305|5:5|6:5|7:5|8:5|9:5;n;3;4|10:160|11:307;p;2;n;1|14:308|2:994|3:72|4:138|5:5|6:5|7:5|8:5|9:139|14:308|14:308;n;3;4|10:346|11:995;p;1|2:996|3:3|4:142|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:997;4|10:144|11:145;4|10:998|11:999;4|10:'
  586. ..'314|11:315;p;1|14:148|2:1000|3:72|4:19|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3|16:150;p;1|14:148|2:1001|3:72|4:152|5:5|6:5|7:5|8:5|9:139|14:148|14:148;n;3;4|10:47|11:156;4|10:31|11:977;4|10:24|11:174;4|10:160|11:949;p;p;2|1:16;n;5|2:1002|3:44|4:19;n;3;4|10:24|11:1003;4|10:31|11:46;4|10:330|11:1004;p;1|14:20|2:1005|3:44|4:19|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:23;4|10:31|11:236;p;1|2:1006|3:51|4:28|5:5|6:5|7:5|8:5|9:5;n;3;4|10:31|11:33;4|10:31|11:1007;4|10:29|11:1008;4|10:31|11:779;4|10:24|11:1009;4|10:31|11:32;4|10:330|11:1010;p;1|14:20|2:1011|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:38;'
  587. ..'4|10:330|11:1012;p;1|14:20|2:1013|3:51|4:37|5:5|6:5|7:5|8:5|9:5|14:20|14:20;n;3|15:22|16:40;p;p;p;1|14:148|2:1014|3:18|4:339|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:340|11:1015;4|10:342|11:343;4|10:387|11:961;p;p;2;n;1|14:1016|2:1017|3:72|4:1018|5:5|6:5|7:5|8:5|9:139|14:1016|14:1016;n;3|15:1019|16:23|31:1020;4|10:1021|11:1022;4|10:31|11:1023;p;1|14:70|2:1024|3:3|4:1025|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3;p;p;2;n;1|14:1026|2:1027|3:72|4:1018|5:5|6:5|7:5|8:5|9:139|14:1026|14:1026;n;3|15:1019|16:23|31:1020;4|10:31|11:1028;p;1|14:70|2:1029|3:3|4:1025|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3;p;p;2;n;1|14:1030|2:103'
  588. ..'1|3:72|4:1018|5:5|6:5|7:5|8:5|9:139|14:1030|14:1030;n;3|15:1019|16:23|31:1020;4|10:31|11:1028;p;1|14:70|2:1032|3:3|4:1025|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3;4|10:330|11:1033;p;p;2;n;1|14:1034|2:1035|3:72|4:1018|5:5|6:5|7:5|8:5|9:139|14:1034|14:1034;n;3|15:1019|16:23|31:1020;4|10:1021|11:1036;p;1|14:70|2:1037|3:3|4:1025|5:5|6:5|7:5|8:5|9:5|14:70|14:70;n;3;4|10:330|11:1038;4|10:1039|11:1040;4|10:486|11:1041;4|10:346|11:1042;p;p;1|2:1043|3:3|4:1044|5:5|6:5|7:5|8:5|9:5;n;3;4|10:1045|11:1046;4|10:1039|11:1047;4|10:1048|11:1049;p;1|2:1050|3:3|4:102|5:5|6:5|7:5|8:5|9:5;n;3;4|10:103|11:1051;4|10:103|11:115;4|10:363|1'
  589. ..'1:1052;4|10:107|11:1053;4|10:107|11:1054;p;1|2:1055|3:3|4:483|5:5|6:5|7:5|8:5|9:5;n;3;4|10:330|11:1056;4|10:486|11:1057;4|10:480|11:634;p;18|14:70|2:1058|4:1059|5:139|6:139|18:139|7:139|8:5|9:139|14:70|14:70;n;4|10:330|11:1060;4|10:1061|11:1062;p;1|2:1063|3:3|4:1064|5:5|6:5|7:5|8:5|9:5;n;3;4|10:6|11:1065;4|10:363|11:1066;4|10:1067|11:1068;4|10:6|11:1069;4|10:6|11:1070;4|10:1067|11:1071;4|10:6|11:1072;4|10:1073|11:1074;p;1|2:1075|3:3|4:804|5:5|6:5|7:5|8:5|9:5;n;3;4|10:363|11:1076;4|10:291|11:1077;4|10:291|11:806;4|10:41|11:807;p;1|2:1078|3:3|4:549|5:5|6:5|7:5|8:5|9:5;n;3;4|10:1021|11:1079;4|10:429|11:550;4|10:3'
  590. ..'63|11:1080;4|10:363|11:1081;4|10:363|11:1082;4|10:363|11:1083;4|10:363|11:1084;4|10:363|11:1085;4|10:363|11:1086;4|10:363|11:1087;4|10:363|11:1088;4|10:363|11:1089;4|10:435|11:1090;4|10:363|11:1091;4|10:363|11:1092;4|10:363|11:1093;p;1|2:1094|3:3|4:176|5:5|6:5|7:5|8:5|9:5;n;3;4|10:363|11:1095;4|10:363|11:1096;4|10:363|11:1097;4|10:117|11:1098;4|10:105|11:1099;4|10:363|11:1100;4|10:363|11:1101;4|10:105|11:1102;4|10:363|11:1103;4|10:363|11:1104;4|10:363|11:1105;4|10:363|11:1106;4|10:105|11:1107;4|10:117|11:1108;4|10:363|11:1109;4|10:363|11:1110;4|10:363|11:1111;4|10:363|11:1112;4|10:117|11:1113;4|10:117|11:1114;'
  591. ..'4|10:363|11:1115;4|10:363|11:1116;p;1|2:1117|3:3|4:4|5:5|6:5|7:5|8:5|9:5;n;3;4|10:363|11:1118;4|10:1067|11:1119;4|10:1067|11:1120;4|10:447|11:1121;4|10:447|11:1122;4|10:1123|11:1124;p;1|14:126|17:127|2:1125|3:18|4:475|5:5|6:5|18:5|9:5|14:126|14:126;n;3;p;1|2:1126|3:3|4:1064|5:5|6:5|7:5|8:5|9:5;n;3;4|10:1067|11:1127;4|10:6|11:1128;4|10:363|11:1129;p;1|14:126|17:127|2:1130|3:18|4:428|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:123|11:1131;4|10:132|11:1132;p;16|2:1133|4:264|5:5|6:5;n;4|10:665|11:1134;4|10:47|11:1135;p;16|14:126|17:127|2:1136|3:27|4:267|6:5|14:126|14:126;n;4|10:79|11:1137;p;1|14:126|17:127|2:1138|3:18'
  592. ..'|4:269|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:272|11:1139;p;1|2:1140|3:3|4:483|5:5|6:5|7:5|8:5|9:5;n;3;4|10:330|11:1141;p;1|2:1142|3:3|4:14|5:5|6:5|7:5|8:5|9:5;n;3;4|10:160|11:1143;4|10:160|11:1144;p;1|2:1145|3:3|4:1146|5:5|6:5|7:5|8:5|9:5;n;3;4|10:144|11:1147;4|10:123|11:1148;4|10:123|11:1149;4|10:123|11:1150;4|10:1151|11:1152;4|10:1153|11:1154;4|10:580|11:1155;p;2;n;1|2:1156|3:141|4:1157|5:5|6:5|7:5|8:5|9:5;n;3;4|10:93|11:1158;4|10:1159|11:1160;4|10:1161|11:1162;4|10:363|11:1163;4|10:6|11:1164;p;1|2:1165|3:141|4:1166|5:5|6:5|7:5|8:5|9:5;n;3;p;16|2:1167|3:310|4:1168|5:5|6:5;n;4|10:95|11:1169;4|10:1170|11:117'
  593. ..'1;p;1|2:1172|3:141|4:1173|5:5|6:5|7:5|8:5|9:5;n;3;4|10:123|11:1174;4|10:144|11:1175;4|10:1176|11:1177;4|10:1176|11:1178;4|10:1179|11:1180;4|10:1176|11:1181;4|10:1176|11:1182;4|10:1183|11:1184;4|10:123|11:1185;4|10:144|11:1186;4|10:144|11:1187;4|10:123|11:1188;p;1|14:148|2:1189|4:1190|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:153|11:1191;4|10:1192|11:1193;4|10:1194|11:1195;p;1|2:1196|3:310|4:1197|5:5|6:5|7:5|9:5;n;3;4|10:144|11:1198;4|10:1199|11:1200;p;1|2:1201|3:3|4:1202|5:5|6:5|7:5|8:5|9:5;n;3;4|10:291|11:1203;p;16|2:1204|3:310|4:1168|5:5|6:5;n;4|10:1170|11:1205;4|10:1170|11:1206;4|10:1170|11:1207;4|10:95|'
  594. ..'11:1208;4|10:1170|11:1209;4|10:1170|11:1210;p;1|2:1211|3:141|4:1157|5:5|6:5|7:5|8:5|9:5;n;3;4|10:1159|11:1212;4|10:1161|11:1213;p;1|2:1214|3:310|4:1215|5:5|6:5|7:5|8:5|9:5;n;3;4|10:363|11:1216;4|10:6|11:1217;4|10:1218|11:1219;4|10:1220|11:1221;p;1|2:1222|3:141|4:1223|5:5|6:5|7:5|8:5|9:5;n;3;4|10:144|11:1224;4|10:144|11:1225;4|10:1226|11:1227;4|10:1228|11:1229;4|10:1230|11:1229;p;1|2:1231|3:310|4:207|5:5|6:5|7:5|8:5|9:5;n;3;4|10:6|11:1232;p;1|2:1233|3:310|4:1234|5:5|6:5|7:5|8:5|9:5;n;3;4|10:291|11:1235;4|10:561|11:1236;4|10:41|11:1237;4|10:291|11:1238;4|10:1218|11:1239;p;1|2:1240|3:310|4:1241|5:5|6:5|7:5|8:5|9:'
  595. ..'5;n;3;p;1|2:1242|3:310|4:207|5:5|6:5|7:5|8:5|9:5;n;3;4|10:6|11:1243;4|10:144|11:1244;p;1|2:1245|3:3|4:1246|5:5|6:5|7:5|8:5|9:5;n;3;4|10:300|11:1247;4|10:300|11:1248;4|10:41|11:1249;p;1|2:1250|3:141|4:1251|5:5|6:5|7:5|8:5|9:5;n;3;4|10:561|11:1252;4|10:1226|11:1253;4|10:291|11:1254;4|10:291|11:1255;4|10:291|11:1256;4|10:1226|11:1257;4|10:1228|11:1258;4|10:561|11:1259;4|10:561|11:1260;4|10:1226|11:1261;4|10:291|11:1262;4|10:1228|11:1263;4|10:291|11:1264;p;16|2:1265|3:72|4:1266|5:5|6:5;n;4|10:95|11:1267;4|10:1170|11:1268;4|10:1170|11:1269;4|10:1170|11:1270;p;p;1|2:1271|3:3|4:11|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:1272|3'
  596. ..':3|4:440|5:5|6:5|7:5|8:5|9:5;n;3;4|10:363|11:1273;4|10:363|11:1274;4|10:441|11:1275;4|10:363|11:1276;4|10:441|11:446;4|10:363|11:1277;4|10:363|11:1278;4|10:363|11:1279;p;1|2:1280|3:3|4:275|5:5|6:5|7:5|8:5|9:5;n;3;4|10:276|11:1281;4|10:276|11:1282;4|10:278|11:1283;4|10:117|11:1284;4|10:278|11:282;p;1|2:1285|3:3|4:1286|5:5|6:5|7:5|8:5|9:5;n;3;p;1|2:1287|3:3|4:1288|5:5|6:5|7:5|8:5|9:5;n;3;4|10:462|11:1289;4|10:455|11:1290;4|10:727|11:1291;4|10:731|11:1292;p;1|14:148|2:1293|4:1294|6:5|7:5|8:5|9:5|14:148|14:148;n;17;12;3;4|10:496|11:1295;4|10:294|11:1296;4|10:533|11:1297;p;1|2:1298|3:27|4:801|5:5|6:5|7:5|8:5|9:5;n;'
  597. ..'6;p;1|2:1299|3:3|4:1300|5:5|6:5|7:5|8:5|9:5;n;3;4|10:6|11:1301;4|10:1067|11:1302;p;1|2:1303|3:3|4:1300|5:5|6:5|7:5|8:5|9:5;n;3;4|10:363|11:1304;4|10:447|11:1141;p;1|2:1305|3:3|4:1288|5:5|6:5|7:5|8:5|9:5;n;3;4|10:455|11:1306;p;1|2:1307|3:3|4:1286|5:5|6:5|7:5|8:5|9:5;n;3;4|10:1151|11:1308;4|10:447|11:1309;4|10:447|11:1310;4|10:363|11:1311;4|10:363|11:1312;p;1|2:1313|3:3|4:1314|5:5|6:5|7:5|8:5|9:5;n;3;4|10:576|11:1315;4|10:1316|11:1317;4|10:1318|11:1319;p;1|14:126|17:127|2:1320|3:18|4:1321|5:5|6:5|18:5|9:5|14:126|14:126;n;3;4|10:130|11:1322;4|10:132|11:1323;4|10:1324|11:1325;p;1|14:126|17:127|2:1326|3:18|4:1321|5'
  598. ..':5|6:5|18:5|9:5|14:126|14:126;n;3;p;1|2:1327|3:3|4:1328|5:5|6:5|7:5|8:5|9:5;n;3;4|10:922|11:1329;4|10:924|11:1330;4|10:494|11:1331;4|10:6|11:1332;4|10:1199|11:1333;4|10:494|11:1334;p;1|14:1335|17:1336|2:1337|3:72|4:1338|5:5|6:5|7:5|8:5|9:5|14:1335|14:1335;n;6;4|10:294|11:1339;4|10:346|11:1340;4|10:278|11:1341;p;1|2:1342|3:3|4:1328|5:5|6:5|7:5|8:5|9:5;n;3;4|10:922|11:1329;4|10:363|11:1343;4|10:494|11:1331;4|10:494|11:1334;p;1|14:1335|17:1336|2:1344|3:72|4:1338|5:5|6:5|7:5|8:5|9:5|14:1335|14:1335;n;6;4|10:496|11:1345;4|10:294|11:1346;4|10:346|11:1347;p;1|14:1335|17:1336|2:1348|3:72|4:1338|5:5|6:5|7:5|8:5|9:5|14:'
  599. ..'1335|14:1335;n;6;4|10:496|11:1349;4|10:294|11:1350;4|10:276|11:1351;4|10:346|11:1352;p;1|14:1335|17:1336|2:1353|3:72|4:1338|5:5|6:5|7:5|8:5|9:5|14:1335|14:1335;n;6;4|10:294|11:1354;p;1|2:1355|3:3|4:1356|5:5|6:5|7:5|8:5|9:5;n;3;4|10:291|11:1357;4|10:291|11:1358;p;16|2:1359|3:18|4:1360|5:5|6:5;16|2:1361|3:310|4:1362|5:5|6:5;n;4|10:6|11:1363;p;16|2:1364|3:1365|4:1366|5:5|6:5;n;4|10:291|11:1367;4|10:6|11:1368;p;16|2:1369|3:310|4:1370|5:5|6:5;n;4|10:1371|11:1372;4|10:1373|11:1374;4|10:1373|11:1375;4|10:123|11:1376;p;1|14:70|2:1377|3:1378|4:1379|5:5|6:5|18:5|7:5|8:5|9:5|14:70|14:70;n;17;12;3;4|10:1380|11:1381;p;16|2'
  600. ..':1382|3:310|4:1370|5:5|6:5;n;4|10:1371|11:1372;4|10:1373|11:1383;4|10:1373|11:1375;4|10:1371|11:1384;4|10:144|11:1385;p;p;')
  601. for _,Object in pairs(Objects) do
  602. Object.Parent = script and script.Parent==workspace and script or workspace
  603. end
  604. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement