Advertisement
lafur

Untitled

May 19th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 128.13 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 96256
  3. local genv={}
  4. local Scripts = {
  5. function() ball = script.Parent
  6. damage = 100
  7.  
  8. function onTouched(hit)
  9.  
  10.  
  11. local humanoid = hit.Parent:findFirstChild("Humanoid")
  12. if humanoid~=nil then
  13. tagHumanoid(humanoid)
  14. humanoid.Health = humanoid.Health - damage
  15. wait(0.01)
  16. untagHumanoid(humanoid)
  17. connection:disconnect()
  18. else
  19. damage = damage / 2
  20. if damage < 2 then
  21. connection:disconnect()
  22. ball.Parent = nil
  23. end
  24. end
  25.  
  26. if math.random(1,1) == 1 then
  27. explosion = Instance.new("Explosion")
  28. explosion.BlastRadius = 50
  29. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  30. explosion.Position = script.Parent.Position
  31. explosion.Parent = game.Workspace
  32. connection:disconnect()
  33. ball.Parent = nil
  34. cancollide = true
  35. end
  36.  
  37. end
  38.  
  39. function tagHumanoid(humanoid)
  40. -- todo: make tag expire
  41. local tag = ball:findFirstChild("creator")
  42. if tag ~= nil then
  43. local new_tag = tag:clone()
  44. new_tag.Parent = humanoid
  45. end
  46. end
  47.  
  48.  
  49. function untagHumanoid(humanoid)
  50. if humanoid ~= nil then
  51. local tag = humanoid:findFirstChild("creator")
  52. if tag ~= nil then
  53. tag.Parent = nil
  54. end
  55. end
  56. end
  57.  
  58. connection = ball.Touched:connect(onTouched)
  59.  
  60. r = game:service("RunService")
  61. t, s = r.Stepped:wait()
  62. d = t + 5.0 - s
  63. while t < d do
  64. t = r.Stepped:wait()
  65. end
  66.  
  67. ball.Parent = nil end;
  68. function() local switch = script.Parent
  69. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  70.  
  71. local debounce = false
  72. local gunOne = true
  73.  
  74. local cannonBall = Instance.new("Part")
  75. cannonBall.Size = Vector3.new(1,1,1)
  76. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  77. cannonBall.Shape = 0
  78. cannonBall.BottomSurface = 0
  79. cannonBall.TopSurface = 0
  80. cannonBall.Name = "Cannon Shot"
  81. cannonBall.Elasticity = .1
  82. cannonBall.Reflectance = 0
  83. cannonBall.Friction = 0
  84.  
  85. function fire(player)
  86.  
  87. local sound = script.Parent:findFirstChild("GunSound")
  88. if sound == nil then
  89. sound = Instance.new("Sound")
  90. sound.Name = "GunSound"
  91. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  92. sound.Volume = 1
  93. sound.Parent = script.Parent
  94. end
  95. sound:play()
  96.  
  97.  
  98.  
  99.  
  100. local missile = Instance.new("Part")
  101.  
  102.  
  103. local barrel
  104.  
  105. if gunOne == true then
  106. barrel = gunBarrelOne
  107. gunOne = true
  108.  
  109. end
  110.  
  111. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  112.  
  113. local dx = math.random(50,50)
  114. local dy = math.random(0,0)
  115. local dz = math.random(0,0)
  116. local mag = math.random(750,750)
  117.  
  118. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  119.  
  120. local missile = cannonBall:clone()
  121.  
  122. missile.Position = spawnPos
  123. missile.Velocity = v
  124.  
  125.  
  126.  
  127. local new_script = script.Parent.CannonBall:clone()
  128. new_script.Disabled = false
  129. new_script.Parent = missile
  130.  
  131. local creator_tag = Instance.new("ObjectValue")
  132. creator_tag.Value = player
  133. creator_tag.Name = "creator"
  134. creator_tag.Parent = missile
  135.  
  136.  
  137.  
  138. missile.Parent = game.Workspace
  139.  
  140. end
  141.  
  142. function onClicked()
  143. if debounce == false then
  144. debounce = true
  145. switch.BrickColor = BrickColor.new(21)
  146. -- let slip the dogs of war
  147. fire(player)
  148. wait(.1)
  149.  
  150. wait(0.5)
  151. debounce = false
  152. switch.BrickColor = BrickColor.new(37)
  153. end
  154. end
  155.  
  156.  
  157. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  158.  
  159.  
  160. end;
  161. function() ball = script.Parent
  162. damage = 100
  163.  
  164. function onTouched(hit)
  165.  
  166.  
  167. local humanoid = hit.Parent:findFirstChild("Humanoid")
  168. if humanoid~=nil then
  169. tagHumanoid(humanoid)
  170. humanoid.Health = humanoid.Health - damage
  171. wait(0.01)
  172. untagHumanoid(humanoid)
  173. connection:disconnect()
  174. else
  175. damage = damage / 2
  176. if damage < 2 then
  177. connection:disconnect()
  178. ball.Parent = nil
  179. end
  180. end
  181.  
  182. if math.random(1,1) == 1 then
  183. explosion = Instance.new("Explosion")
  184. explosion.BlastRadius = 50
  185. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  186. explosion.Position = script.Parent.Position
  187. explosion.Parent = game.Workspace
  188. connection:disconnect()
  189. ball.Parent = nil
  190. cancollide = true
  191. end
  192.  
  193. end
  194.  
  195. function tagHumanoid(humanoid)
  196. -- todo: make tag expire
  197. local tag = ball:findFirstChild("creator")
  198. if tag ~= nil then
  199. local new_tag = tag:clone()
  200. new_tag.Parent = humanoid
  201. end
  202. end
  203.  
  204.  
  205. function untagHumanoid(humanoid)
  206. if humanoid ~= nil then
  207. local tag = humanoid:findFirstChild("creator")
  208. if tag ~= nil then
  209. tag.Parent = nil
  210. end
  211. end
  212. end
  213.  
  214. connection = ball.Touched:connect(onTouched)
  215.  
  216. r = game:service("RunService")
  217. t, s = r.Stepped:wait()
  218. d = t + 5.0 - s
  219. while t < d do
  220. t = r.Stepped:wait()
  221. end
  222.  
  223. ball.Parent = nil end;
  224. function() local switch = script.Parent
  225. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  226.  
  227. local debounce = false
  228. local gunOne = true
  229.  
  230. local cannonBall = Instance.new("Part")
  231. cannonBall.Size = Vector3.new(1,1,1)
  232. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  233. cannonBall.Shape = 0
  234. cannonBall.BottomSurface = 0
  235. cannonBall.TopSurface = 0
  236. cannonBall.Name = "Cannon Shot"
  237. cannonBall.Elasticity = .1
  238. cannonBall.Reflectance = 0
  239. cannonBall.Friction = 0
  240.  
  241. function fire(player)
  242.  
  243. local sound = script.Parent:findFirstChild("GunSound")
  244. if sound == nil then
  245. sound = Instance.new("Sound")
  246. sound.Name = "GunSound"
  247. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  248. sound.Volume = 1
  249. sound.Parent = script.Parent
  250. end
  251. sound:play()
  252.  
  253.  
  254.  
  255.  
  256. local missile = Instance.new("Part")
  257.  
  258.  
  259. local barrel
  260.  
  261. if gunOne == true then
  262. barrel = gunBarrelOne
  263. gunOne = true
  264.  
  265. end
  266.  
  267. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  268.  
  269. local dx = math.random(50,50)
  270. local dy = math.random(0,0)
  271. local dz = math.random(0,0)
  272. local mag = math.random(750,750)
  273.  
  274. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  275.  
  276. local missile = cannonBall:clone()
  277.  
  278. missile.Position = spawnPos
  279. missile.Velocity = v
  280.  
  281.  
  282.  
  283. local new_script = script.Parent.CannonBall:clone()
  284. new_script.Disabled = false
  285. new_script.Parent = missile
  286.  
  287. local creator_tag = Instance.new("ObjectValue")
  288. creator_tag.Value = player
  289. creator_tag.Name = "creator"
  290. creator_tag.Parent = missile
  291.  
  292.  
  293.  
  294. missile.Parent = game.Workspace
  295.  
  296. end
  297.  
  298. function onClicked()
  299. if debounce == false then
  300. debounce = true
  301. switch.BrickColor = BrickColor.new(21)
  302. -- let slip the dogs of war
  303. fire(player)
  304. wait(.1)
  305.  
  306. wait(0.5)
  307. debounce = false
  308. switch.BrickColor = BrickColor.new(37)
  309. end
  310. end
  311.  
  312.  
  313. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  314.  
  315.  
  316. end;
  317. function() function onTouched(hit)
  318.  
  319.  
  320.  
  321. print("Door Hit")
  322.  
  323. script.Parent.Parent.Door.CanCollide = false
  324. script.Parent.Parent.Door.Transparency = 1
  325.  
  326.  
  327. wait(2)
  328.  
  329. script.Parent.Parent.Door.CanCollide = true
  330. script.Parent.Parent.Door.Transparency = 0
  331.  
  332.  
  333. end
  334.  
  335.  
  336.  
  337. script.Parent.Touched:connect(onTouched)
  338. end;
  339. function() function onTouched(hit)
  340.  
  341.  
  342.  
  343. print("Door Hit")
  344.  
  345. script.Parent.Parent.Door.CanCollide = false
  346. script.Parent.Parent.Door.Transparency = 1
  347.  
  348.  
  349. wait(2)
  350.  
  351. script.Parent.Parent.Door.CanCollide = true
  352. script.Parent.Parent.Door.Transparency = 0
  353.  
  354.  
  355. end
  356.  
  357.  
  358.  
  359. script.Parent.Touched:connect(onTouched)
  360. end;
  361. function() --[[
  362.  
  363. Mark901's AircraftSeat [Version 1.0]
  364.  
  365. ------------------------------------------------------------------------------------------
  366.  
  367. Version Log:
  368.  
  369. -V1.0
  370. First version launched! Comments would be greatly appreciated
  371.  
  372. -V1.1
  373. Fixed Camera
  374. When turned off, speed resets to 0
  375.  
  376. ------------------------------------------------------------------------------------------
  377.  
  378. Thank you for using Mark901's AircraftSeat! Below are instructions
  379. on how to use your seat and make any model fly! If you have any
  380. comments or need to report bugs, glitches, and any other problems,
  381. simply send a message to Mark901. Enjoy! :D
  382.  
  383. Instructions:
  384.  
  385. -- A: Pre-Existing Model --
  386. 1. Use a move tool [in-game or Roblox Studio] and place seat in
  387. desired position
  388. |Note: Make sure no one is using the seat, or else you will be unable
  389. to move it
  390. 2. Sit on the seat
  391. 3. Select the tool
  392. 4. Follow controls in GUI to pilot your vehicle
  393.  
  394. -- B: Building From Scratch --
  395. |Note: These are instructions on how to use this seat during online
  396. mode, at a building game for example
  397. 1. Make a large, flat brick first
  398. 2. Build your vehicle on top of the flat brick [This is to make sure that
  399. the vehicle is not stuck to the ground]
  400. 3. Follow instructions from section A
  401.  
  402. Have fun!
  403. -- Mark901 end;
  404. function() position = script.Parent.Position
  405. local frame = Instance.new("CFrameValue")
  406. frame.Name = "OriginCFrame"
  407. frame.Value = script.Parent.CFrame
  408. frame.Parent = script.Parent
  409.  
  410. local object = Instance.new("ObjectValue")
  411. object.Value = script.Parent
  412.  
  413. seat = script.Parent
  414. seat.Direction.cframe = seat.CFrame
  415.  
  416. function onSitUp(child, hopper, gui, plane)
  417. if child.Parent == nil then
  418. seat.Direction.maxTorque = Vector3.new(0,0,0)
  419. seat.Thrust.maxForce = Vector3.new(0,0,0)
  420. hopper.Parent = script
  421. hopper.Active = false
  422. gui.Parent = script
  423. script.Parent.Locked = false
  424. script.Parent.Parent = game.Workspace
  425. end
  426. end
  427.  
  428. function onChildAdded(part)
  429. if part.className == "Weld" then
  430. local torso = part.Part1
  431. if torso ~= nil then
  432.  
  433. local char = torso.Parent
  434. local player = game.Players:GetPlayerFromCharacter(char)
  435. if player ~= nil then
  436. local hopper = script["Aircraft"]
  437. hopper.Parent = player.Backpack
  438. local GUI = script["Controls"]
  439. GUI.Parent = player.PlayerGui
  440. part.AncestryChanged:connect(function(child) onSitUp(child, hopper, GUI, script.Parent) end)
  441. end
  442.  
  443. local parent = torso.Parent
  444. if parent ~= nil then
  445. script.Parent.Locked = true
  446. script.Parent.Parent = parent
  447. end
  448. end
  449. end
  450. end
  451.  
  452. seat.ChildAdded:connect(onChildAdded)
  453. -- Mark901 end;
  454. function() bin = script.Parent
  455. plane = nil
  456. hold = false
  457. local debounce = false
  458. local planedebounce = false
  459. local stuntdebounce = false
  460. local controlling = false
  461. local currentspeed = 0
  462. local turn = nil
  463. fly = false
  464.  
  465. function computeDirection(vec)
  466. local lenSquared = vec.magnitude * vec.magnitude
  467. local invSqrt = 1 / math.sqrt(lenSquared)
  468. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  469. end
  470.  
  471. function move(point, engine)
  472. local origincframe = engine:findFirstChild("Direction").cframe
  473. size = engine.Size
  474.  
  475. target = engine.Position+((point - engine.Position).unit*100)
  476. local dir = (target - engine.Position).unit
  477. local spawnPos = engine.Position
  478. left = engine.CFrame*CFrame.new(-size.x/2, 0, 0).p
  479. right = engine.CFrame*CFrame.new(size.x/2, 0, 0).p
  480. md = (target - engine.Position).magnitude
  481.  
  482. foebmd = engine.CFrame*CFrame.new(0, 0, -md).p
  483. toleft = (target -left).magnitude
  484. toright = (target -right).magnitude
  485. rot = ((foebmd - target).magnitude/10)
  486. local pos = spawnPos + (dir * 1)
  487. turn = math.rad((rot/10)*engine.TiltFactor.Value)
  488. if turn > math.rad(89) then
  489. turn = math.rad(89)
  490. end
  491. if toleft< toright and toleft >rot then
  492. engine:findFirstChild("Direction").cframe = CFrame.new(pos, pos + dir)*CFrame.fromEulerAnglesXYZ(0, 0, turn)
  493. elseif toleft > toright and toright >rot then
  494. engine:findFirstChild("Direction").cframe = CFrame.new(pos, pos + dir)*CFrame.fromEulerAnglesXYZ(0, 0, -turn)
  495. else
  496. engine:findFirstChild("Direction").cframe = CFrame.new(pos, pos + dir)
  497. end
  498. engine:findFirstChild("Direction").P = engine.TurnSpeed.Value
  499. end
  500.  
  501. function findPlane(player)
  502. local list = player.Character:GetChildren()
  503. for x = 1, #list do
  504. if (list[x].Name == "AircraftSeat") then
  505. return list[x]
  506. end
  507. end
  508. return nil
  509. end
  510.  
  511. function onButton1Down(mouse)
  512. local vehicle = findPlane(script.Parent.Parent.Parent)
  513. if vehicle ~= nil and debounce == false and planedebounce == false then
  514. if fly == false and taxi == false then return end
  515. debounce = true
  516.  
  517. controlling = true
  518.  
  519. while true do
  520. wait()
  521. local engine = vehicle
  522. local position = mouse.Hit
  523. local target = position.p
  524. move(target, engine)
  525. if planedebounce == true or
  526. controlling == false then break end
  527. end
  528. wait(0.1)
  529. debounce = false
  530. end
  531. end
  532.  
  533. function onButton1Up(mouse)
  534. controlling = false
  535. end
  536.  
  537. function onSelected(mouse)
  538. mouse.Icon = "http://www.roblox.com/asset/?id=7419350"
  539. game.Workspace.CurrentCamera.CameraSubject = bin.Parent.Parent.Character.Head
  540. game.Workspace.CurrentCamera.CameraType = "Track"
  541. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  542. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  543. mouse.KeyDown:connect(onKeyDown)
  544. mouse.KeyUp:connect(onKeyUp)
  545. mouse.Move:connect(function() Fly(mouse) end)
  546. mouse.Idle:connect(function() Fly(mouse) end)
  547. end
  548.  
  549. function onDeselected(mouse)
  550. game.Workspace.CurrentCamera.CameraSubject = bin.Parent.Parent.Character.Humanoid
  551. game.Workspace.CurrentCamera.CameraType = "Custom"
  552. end
  553.  
  554. function Fly(mouse)
  555. local vehicle = findPlane(script.Parent.Parent.Parent)
  556. if (vehicle==nil) then return end
  557. vehicle.Thrust.velocity = (vehicle.CFrame.lookVector * currentspeed) + Vector3.new(0,vehicle.LiftTrim.Value/100,0)
  558. end
  559.  
  560. function onKeyDown(key)
  561. if (key~=nil) then
  562. key = key:lower()
  563. local vehicle = findPlane(script.Parent.Parent.Parent)
  564. if (vehicle==nil) then return end
  565. if key == "y" then
  566. fly = true
  567. vehicle.Direction.cframe = vehicle.CFrame
  568. vehicle.Direction.maxTorque = Vector3.new(4e3,4e3,4e3)
  569. vehicle.Thrust.maxForce = Vector3.new(9e20,9e20,9e20)
  570. while fly == true do
  571. if currentspeed < vehicle.Speed.Value then
  572. currentspeed = currentspeed + 1
  573. elseif currentspeed > vehicle.Speed.Value then
  574. currentspeed = currentspeed - 1
  575. end
  576. if vehicle.Acceleration.Value > 1000 then vehicle.Acceleration.Value = 1000 end
  577. wait((1-(vehicle.Acceleration.Value/1000))+0.01)
  578. if fly == false then break end
  579. end
  580. end
  581. if key == "x" then
  582. fly = false
  583. currentspeed = 0
  584. vehicle.Direction.maxTorque = Vector3.new(0,0,0)
  585. vehicle.Thrust.maxForce = Vector3.new(0,0,0)
  586. end
  587. if key == "w" then
  588. if vehicle.Speed.Value < vehicle.MaxSpeed.Value then
  589. vehicle.Speed.Value = vehicle.Speed.Value + 10
  590. end
  591. end
  592. if key == "s" then
  593. if vehicle.Speed.Value > -10 then
  594. vehicle.Speed.Value = vehicle.Speed.Value - 10
  595. end
  596. end
  597. if (key=="'") and (bin.Locked.Value == false) then
  598. local repl = script:clone()
  599. repl.Parent = bin
  600. wait(1)
  601. script:remove()
  602. end
  603. if key == "l" and fly == true then
  604. vehicle.Direction.maxTorque = Vector3.new(4e3,0,4e3)
  605. local frame = vehicle:FindFirstChild("OriginCFrame")
  606. if frame ~= nil then
  607. vehicle.Direction.cframe = frame.Value
  608. end
  609. wait(2)
  610. vehicle.Direction.cframe = vehicle.CFrame
  611. vehicle.Direction.maxTorque = Vector3.new(4e3,4e3,4e3)
  612. end
  613. end
  614. end
  615.  
  616. function onKeyUp(key)
  617. if (key~=nil) then
  618. key = key:lower()
  619. local vehicle = findPlane(script.Parent.Parent.Parent)
  620. if (vehicle==nil) then return end
  621. end
  622. end
  623.  
  624. bin.Selected:connect(onSelected)
  625. bin.Deselected:connect(onDeselected)
  626. -- Mark901 end;
  627. function() function onTouched(hit)
  628.  
  629.  
  630.  
  631. print("Door Hit")
  632.  
  633. script.Parent.Parent.Door.CanCollide = false
  634. script.Parent.Parent.Door.Transparency = 1
  635.  
  636.  
  637. wait(2)
  638.  
  639. script.Parent.Parent.Door.CanCollide = true
  640. script.Parent.Parent.Door.Transparency = 0
  641.  
  642.  
  643. end
  644.  
  645.  
  646.  
  647. script.Parent.Touched:connect(onTouched)
  648. end;
  649. function() function onTouched(hit)
  650.  
  651.  
  652.  
  653. print("Door Hit")
  654.  
  655. script.Parent.Parent.Door.CanCollide = false
  656. script.Parent.Parent.Door.Transparency = 1
  657.  
  658.  
  659. wait(2)
  660.  
  661. script.Parent.Parent.Door.CanCollide = true
  662. script.Parent.Parent.Door.Transparency = 0
  663.  
  664.  
  665. end
  666.  
  667.  
  668.  
  669. script.Parent.Touched:connect(onTouched)
  670. end;
  671. function() local shut = true
  672.  
  673. function close()
  674. shut = true
  675. script.Parent.Lock1.Transparency = 0
  676. script.Parent.Lock1.CanCollide = true
  677. wait(.1)
  678. script.Parent.Monior.BrickColor = BrickColor.new(28)
  679. wait(.1)
  680. script.Parent.Lock2.Transparency = 1
  681. script.Parent.Lock2.CanCollide = false
  682. script.Parent.Monior.BrickColor = BrickColor.new(28)
  683. end
  684.  
  685. function open()
  686. shut = false
  687. script.Parent.Lock2.Transparency = 0
  688. script.Parent.Lock2.CanCollide = true
  689. wait(.1)
  690. script.Parent.Monior.BrickColor = BrickColor.new(21)
  691. wait(.1)
  692. script.Parent.Lock1.Transparency = 1
  693. script.Parent.Lock1.CanCollide = false
  694. script.Parent.Monior.BrickColor = BrickColor.new(21)
  695. end
  696.  
  697. function onClicked()
  698.  
  699. if shut == true then open() else close() end
  700.  
  701. end
  702.  
  703. script.Parent.Head1.ClickDetector.MouseClick:connect(onClicked)
  704. script.Parent.Head2.ClickDetector.MouseClick:connect(onClicked)
  705. script.Parent.Head3.ClickDetector.MouseClick:connect(onClicked)
  706. script.Parent.Head4.ClickDetector.MouseClick:connect(onClicked)
  707.  
  708.  
  709. close() end;
  710. function() ball = script.Parent
  711. damage = 100
  712.  
  713. function onTouched(hit)
  714.  
  715.  
  716. local humanoid = hit.Parent:findFirstChild("Humanoid")
  717. if humanoid~=nil then
  718. tagHumanoid(humanoid)
  719. humanoid.Health = humanoid.Health - damage
  720. wait(0.01)
  721. untagHumanoid(humanoid)
  722. connection:disconnect()
  723. else
  724. damage = damage / 2
  725. if damage < 2 then
  726. connection:disconnect()
  727. ball.Parent = nil
  728. end
  729. end
  730.  
  731. if math.random(1,1) == 1 then
  732. explosion = Instance.new("Explosion")
  733. explosion.BlastRadius = 50
  734. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  735. explosion.Position = script.Parent.Position
  736. explosion.Parent = game.Workspace
  737. connection:disconnect()
  738. ball.Parent = nil
  739. cancollide = true
  740. end
  741.  
  742. end
  743.  
  744. function tagHumanoid(humanoid)
  745. -- todo: make tag expire
  746. local tag = ball:findFirstChild("creator")
  747. if tag ~= nil then
  748. local new_tag = tag:clone()
  749. new_tag.Parent = humanoid
  750. end
  751. end
  752.  
  753.  
  754. function untagHumanoid(humanoid)
  755. if humanoid ~= nil then
  756. local tag = humanoid:findFirstChild("creator")
  757. if tag ~= nil then
  758. tag.Parent = nil
  759. end
  760. end
  761. end
  762.  
  763. connection = ball.Touched:connect(onTouched)
  764.  
  765. r = game:service("RunService")
  766. t, s = r.Stepped:wait()
  767. d = t + 5.0 - s
  768. while t < d do
  769. t = r.Stepped:wait()
  770. end
  771.  
  772. ball.Parent = nil end;
  773. function() local switch = script.Parent
  774. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  775.  
  776. local debounce = false
  777. local gunOne = true
  778.  
  779. local cannonBall = Instance.new("Part")
  780. cannonBall.Size = Vector3.new(1,1,1)
  781. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  782. cannonBall.Shape = 0
  783. cannonBall.BottomSurface = 0
  784. cannonBall.TopSurface = 0
  785. cannonBall.Name = "Cannon Shot"
  786. cannonBall.Elasticity = .1
  787. cannonBall.Reflectance = 0
  788. cannonBall.Friction = 0
  789.  
  790. function fire(player)
  791.  
  792. local sound = script.Parent:findFirstChild("GunSound")
  793. if sound == nil then
  794. sound = Instance.new("Sound")
  795. sound.Name = "GunSound"
  796. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  797. sound.Volume = 1
  798. sound.Parent = script.Parent
  799. end
  800. sound:play()
  801.  
  802.  
  803.  
  804.  
  805. local missile = Instance.new("Part")
  806.  
  807.  
  808. local barrel
  809.  
  810. if gunOne == true then
  811. barrel = gunBarrelOne
  812. gunOne = true
  813.  
  814. end
  815.  
  816. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  817.  
  818. local dx = math.random(50,50)
  819. local dy = math.random(0,0)
  820. local dz = math.random(0,0)
  821. local mag = math.random(750,750)
  822.  
  823. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  824.  
  825. local missile = cannonBall:clone()
  826.  
  827. missile.Position = spawnPos
  828. missile.Velocity = v
  829.  
  830.  
  831.  
  832. local new_script = script.Parent.CannonBall:clone()
  833. new_script.Disabled = false
  834. new_script.Parent = missile
  835.  
  836. local creator_tag = Instance.new("ObjectValue")
  837. creator_tag.Value = player
  838. creator_tag.Name = "creator"
  839. creator_tag.Parent = missile
  840.  
  841.  
  842.  
  843. missile.Parent = game.Workspace
  844.  
  845. end
  846.  
  847. function onClicked()
  848. if debounce == false then
  849. debounce = true
  850. switch.BrickColor = BrickColor.new(21)
  851. -- let slip the dogs of war
  852. fire(player)
  853. wait(.1)
  854.  
  855. wait(0.5)
  856. debounce = false
  857. switch.BrickColor = BrickColor.new(37)
  858. end
  859. end
  860.  
  861.  
  862. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  863.  
  864.  
  865. end;
  866. function() ball = script.Parent
  867. damage = 100
  868.  
  869. function onTouched(hit)
  870.  
  871.  
  872. local humanoid = hit.Parent:findFirstChild("Humanoid")
  873. if humanoid~=nil then
  874. tagHumanoid(humanoid)
  875. humanoid.Health = humanoid.Health - damage
  876. wait(0.01)
  877. untagHumanoid(humanoid)
  878. connection:disconnect()
  879. else
  880. damage = damage / 2
  881. if damage < 2 then
  882. connection:disconnect()
  883. ball.Parent = nil
  884. end
  885. end
  886.  
  887. if math.random(1,1) == 1 then
  888. explosion = Instance.new("Explosion")
  889. explosion.BlastRadius = 50
  890. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  891. explosion.Position = script.Parent.Position
  892. explosion.Parent = game.Workspace
  893. connection:disconnect()
  894. ball.Parent = nil
  895. cancollide = true
  896. end
  897.  
  898. end
  899.  
  900. function tagHumanoid(humanoid)
  901. -- todo: make tag expire
  902. local tag = ball:findFirstChild("creator")
  903. if tag ~= nil then
  904. local new_tag = tag:clone()
  905. new_tag.Parent = humanoid
  906. end
  907. end
  908.  
  909.  
  910. function untagHumanoid(humanoid)
  911. if humanoid ~= nil then
  912. local tag = humanoid:findFirstChild("creator")
  913. if tag ~= nil then
  914. tag.Parent = nil
  915. end
  916. end
  917. end
  918.  
  919. connection = ball.Touched:connect(onTouched)
  920.  
  921. r = game:service("RunService")
  922. t, s = r.Stepped:wait()
  923. d = t + 5.0 - s
  924. while t < d do
  925. t = r.Stepped:wait()
  926. end
  927.  
  928. ball.Parent = nil end;
  929. function() local switch = script.Parent
  930. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  931.  
  932. local debounce = false
  933. local gunOne = true
  934.  
  935. local cannonBall = Instance.new("Part")
  936. cannonBall.Size = Vector3.new(1,1,1)
  937. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  938. cannonBall.Shape = 0
  939. cannonBall.BottomSurface = 0
  940. cannonBall.TopSurface = 0
  941. cannonBall.Name = "Cannon Shot"
  942. cannonBall.Elasticity = .1
  943. cannonBall.Reflectance = 0
  944. cannonBall.Friction = 0
  945.  
  946. function fire(player)
  947.  
  948. local sound = script.Parent:findFirstChild("GunSound")
  949. if sound == nil then
  950. sound = Instance.new("Sound")
  951. sound.Name = "GunSound"
  952. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  953. sound.Volume = 1
  954. sound.Parent = script.Parent
  955. end
  956. sound:play()
  957.  
  958.  
  959.  
  960.  
  961. local missile = Instance.new("Part")
  962.  
  963.  
  964. local barrel
  965.  
  966. if gunOne == true then
  967. barrel = gunBarrelOne
  968. gunOne = true
  969.  
  970. end
  971.  
  972. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  973.  
  974. local dx = math.random(50,50)
  975. local dy = math.random(0,0)
  976. local dz = math.random(0,0)
  977. local mag = math.random(750,750)
  978.  
  979. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  980.  
  981. local missile = cannonBall:clone()
  982.  
  983. missile.Position = spawnPos
  984. missile.Velocity = v
  985.  
  986.  
  987.  
  988. local new_script = script.Parent.CannonBall:clone()
  989. new_script.Disabled = false
  990. new_script.Parent = missile
  991.  
  992. local creator_tag = Instance.new("ObjectValue")
  993. creator_tag.Value = player
  994. creator_tag.Name = "creator"
  995. creator_tag.Parent = missile
  996.  
  997.  
  998.  
  999. missile.Parent = game.Workspace
  1000.  
  1001. end
  1002.  
  1003. function onClicked()
  1004. if debounce == false then
  1005. debounce = true
  1006. switch.BrickColor = BrickColor.new(21)
  1007. -- let slip the dogs of war
  1008. fire(player)
  1009. wait(.1)
  1010.  
  1011. wait(0.5)
  1012. debounce = false
  1013. switch.BrickColor = BrickColor.new(37)
  1014. end
  1015. end
  1016.  
  1017.  
  1018. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  1019.  
  1020.  
  1021. end;
  1022. function() ball = script.Parent
  1023. damage = 100
  1024.  
  1025. function onTouched(hit)
  1026.  
  1027.  
  1028. local humanoid = hit.Parent:findFirstChild("Humanoid")
  1029. if humanoid~=nil then
  1030. tagHumanoid(humanoid)
  1031. humanoid.Health = humanoid.Health - damage
  1032. wait(0.01)
  1033. untagHumanoid(humanoid)
  1034. connection:disconnect()
  1035. else
  1036. damage = damage / 2
  1037. if damage < 2 then
  1038. connection:disconnect()
  1039. ball.Parent = nil
  1040. end
  1041. end
  1042.  
  1043. if math.random(1,1) == 1 then
  1044. explosion = Instance.new("Explosion")
  1045. explosion.BlastRadius = 50
  1046. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  1047. explosion.Position = script.Parent.Position
  1048. explosion.Parent = game.Workspace
  1049. connection:disconnect()
  1050. ball.Parent = nil
  1051. cancollide = true
  1052. end
  1053.  
  1054. end
  1055.  
  1056. function tagHumanoid(humanoid)
  1057. -- todo: make tag expire
  1058. local tag = ball:findFirstChild("creator")
  1059. if tag ~= nil then
  1060. local new_tag = tag:clone()
  1061. new_tag.Parent = humanoid
  1062. end
  1063. end
  1064.  
  1065.  
  1066. function untagHumanoid(humanoid)
  1067. if humanoid ~= nil then
  1068. local tag = humanoid:findFirstChild("creator")
  1069. if tag ~= nil then
  1070. tag.Parent = nil
  1071. end
  1072. end
  1073. end
  1074.  
  1075. connection = ball.Touched:connect(onTouched)
  1076.  
  1077. r = game:service("RunService")
  1078. t, s = r.Stepped:wait()
  1079. d = t + 5.0 - s
  1080. while t < d do
  1081. t = r.Stepped:wait()
  1082. end
  1083.  
  1084. ball.Parent = nil end;
  1085. function() local switch = script.Parent
  1086. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  1087.  
  1088. local debounce = false
  1089. local gunOne = true
  1090.  
  1091. local cannonBall = Instance.new("Part")
  1092. cannonBall.Size = Vector3.new(1,1,1)
  1093. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  1094. cannonBall.Shape = 0
  1095. cannonBall.BottomSurface = 0
  1096. cannonBall.TopSurface = 0
  1097. cannonBall.Name = "Cannon Shot"
  1098. cannonBall.Elasticity = .1
  1099. cannonBall.Reflectance = 0
  1100. cannonBall.Friction = 0
  1101.  
  1102. function fire(player)
  1103.  
  1104. local sound = script.Parent:findFirstChild("GunSound")
  1105. if sound == nil then
  1106. sound = Instance.new("Sound")
  1107. sound.Name = "GunSound"
  1108. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  1109. sound.Volume = 1
  1110. sound.Parent = script.Parent
  1111. end
  1112. sound:play()
  1113.  
  1114.  
  1115.  
  1116.  
  1117. local missile = Instance.new("Part")
  1118.  
  1119.  
  1120. local barrel
  1121.  
  1122. if gunOne == true then
  1123. barrel = gunBarrelOne
  1124. gunOne = true
  1125.  
  1126. end
  1127.  
  1128. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  1129.  
  1130. local dx = math.random(50,50)
  1131. local dy = math.random(0,0)
  1132. local dz = math.random(0,0)
  1133. local mag = math.random(750,750)
  1134.  
  1135. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  1136.  
  1137. local missile = cannonBall:clone()
  1138.  
  1139. missile.Position = spawnPos
  1140. missile.Velocity = v
  1141.  
  1142.  
  1143.  
  1144. local new_script = script.Parent.CannonBall:clone()
  1145. new_script.Disabled = false
  1146. new_script.Parent = missile
  1147.  
  1148. local creator_tag = Instance.new("ObjectValue")
  1149. creator_tag.Value = player
  1150. creator_tag.Name = "creator"
  1151. creator_tag.Parent = missile
  1152.  
  1153.  
  1154.  
  1155. missile.Parent = game.Workspace
  1156.  
  1157. end
  1158.  
  1159. function onClicked()
  1160. if debounce == false then
  1161. debounce = true
  1162. switch.BrickColor = BrickColor.new(21)
  1163. -- let slip the dogs of war
  1164. fire(player)
  1165. wait(.1)
  1166.  
  1167. wait(0.5)
  1168. debounce = false
  1169. switch.BrickColor = BrickColor.new(37)
  1170. end
  1171. end
  1172.  
  1173.  
  1174. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  1175.  
  1176.  
  1177. end;
  1178. function() ball = script.Parent
  1179. damage = 100
  1180.  
  1181. function onTouched(hit)
  1182.  
  1183.  
  1184. local humanoid = hit.Parent:findFirstChild("Humanoid")
  1185. if humanoid~=nil then
  1186. tagHumanoid(humanoid)
  1187. humanoid.Health = humanoid.Health - damage
  1188. wait(0.01)
  1189. untagHumanoid(humanoid)
  1190. connection:disconnect()
  1191. else
  1192. damage = damage / 2
  1193. if damage < 2 then
  1194. connection:disconnect()
  1195. ball.Parent = nil
  1196. end
  1197. end
  1198.  
  1199. if math.random(1,1) == 1 then
  1200. explosion = Instance.new("Explosion")
  1201. explosion.BlastRadius = 50
  1202. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  1203. explosion.Position = script.Parent.Position
  1204. explosion.Parent = game.Workspace
  1205. connection:disconnect()
  1206. ball.Parent = nil
  1207. cancollide = true
  1208. end
  1209.  
  1210. end
  1211.  
  1212. function tagHumanoid(humanoid)
  1213. -- todo: make tag expire
  1214. local tag = ball:findFirstChild("creator")
  1215. if tag ~= nil then
  1216. local new_tag = tag:clone()
  1217. new_tag.Parent = humanoid
  1218. end
  1219. end
  1220.  
  1221.  
  1222. function untagHumanoid(humanoid)
  1223. if humanoid ~= nil then
  1224. local tag = humanoid:findFirstChild("creator")
  1225. if tag ~= nil then
  1226. tag.Parent = nil
  1227. end
  1228. end
  1229. end
  1230.  
  1231. connection = ball.Touched:connect(onTouched)
  1232.  
  1233. r = game:service("RunService")
  1234. t, s = r.Stepped:wait()
  1235. d = t + 5.0 - s
  1236. while t < d do
  1237. t = r.Stepped:wait()
  1238. end
  1239.  
  1240. ball.Parent = nil end;
  1241. function() local switch = script.Parent
  1242. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  1243.  
  1244. local debounce = false
  1245. local gunOne = true
  1246.  
  1247. local cannonBall = Instance.new("Part")
  1248. cannonBall.Size = Vector3.new(1,1,1)
  1249. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  1250. cannonBall.Shape = 0
  1251. cannonBall.BottomSurface = 0
  1252. cannonBall.TopSurface = 0
  1253. cannonBall.Name = "Cannon Shot"
  1254. cannonBall.Elasticity = .1
  1255. cannonBall.Reflectance = 0
  1256. cannonBall.Friction = 0
  1257.  
  1258. function fire(player)
  1259.  
  1260. local sound = script.Parent:findFirstChild("GunSound")
  1261. if sound == nil then
  1262. sound = Instance.new("Sound")
  1263. sound.Name = "GunSound"
  1264. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  1265. sound.Volume = 1
  1266. sound.Parent = script.Parent
  1267. end
  1268. sound:play()
  1269.  
  1270.  
  1271.  
  1272.  
  1273. local missile = Instance.new("Part")
  1274.  
  1275.  
  1276. local barrel
  1277.  
  1278. if gunOne == true then
  1279. barrel = gunBarrelOne
  1280. gunOne = true
  1281.  
  1282. end
  1283.  
  1284. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  1285.  
  1286. local dx = math.random(50,50)
  1287. local dy = math.random(0,0)
  1288. local dz = math.random(0,0)
  1289. local mag = math.random(750,750)
  1290.  
  1291. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  1292.  
  1293. local missile = cannonBall:clone()
  1294.  
  1295. missile.Position = spawnPos
  1296. missile.Velocity = v
  1297.  
  1298.  
  1299.  
  1300. local new_script = script.Parent.CannonBall:clone()
  1301. new_script.Disabled = false
  1302. new_script.Parent = missile
  1303.  
  1304. local creator_tag = Instance.new("ObjectValue")
  1305. creator_tag.Value = player
  1306. creator_tag.Name = "creator"
  1307. creator_tag.Parent = missile
  1308.  
  1309.  
  1310.  
  1311. missile.Parent = game.Workspace
  1312.  
  1313. end
  1314.  
  1315. function onClicked()
  1316. if debounce == false then
  1317. debounce = true
  1318. switch.BrickColor = BrickColor.new(21)
  1319. -- let slip the dogs of war
  1320. fire(player)
  1321. wait(.1)
  1322.  
  1323. wait(0.5)
  1324. debounce = false
  1325. switch.BrickColor = BrickColor.new(37)
  1326. end
  1327. end
  1328.  
  1329.  
  1330. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  1331.  
  1332.  
  1333. end;}local ActualScripts = {}
  1334. function s(var)
  1335. local func = table.remove(Scripts,1)
  1336. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  1337. __index = getfenv(func),
  1338. }))
  1339. table.insert(ActualScripts,coroutine.wrap(func))
  1340. end
  1341. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  1342. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  1343. function(t,f)
  1344. for a,b in pairs(t) do
  1345. f(a,b)
  1346. end
  1347. end
  1348. local Types = {
  1349. Color3 = Color3.new,
  1350. Vector3 = Vector3.new,
  1351. Vector2 = Vector2.new,
  1352. UDim = UDim.new,
  1353. UDim2 = UDim2.new,
  1354. CFrame = CFrame.new,
  1355. Rect = Rect.new,
  1356. NumberRange = NumberRange.new,
  1357. BrickColor = BrickColor.new,
  1358. PhysicalProperties = PhysicalProperties.new,
  1359. NumberSequence = function(...)
  1360. local a = {...}
  1361. local t = {}
  1362. repeat
  1363. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  1364. until #a==0
  1365. return NumberSequence.new(t)
  1366. end,
  1367. ColorSequence = function(...)
  1368. local a = {...}
  1369. local t = {}
  1370. repeat
  1371. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  1372. until #a==0
  1373. return ColorSequence.new(t)
  1374. end,
  1375. number = tonumber,
  1376. boolean = function(a)
  1377. return a=="1"
  1378. end
  1379. }
  1380. split = function(str,sep)
  1381. if not str then return end
  1382. local fields = {}
  1383. local ConcatNext = false
  1384. str:gsub(("([^%s]+)"):format(sep),function(c)
  1385. if ConcatNext == true then
  1386. fields[#fields] = fields[#fields]..sep..c
  1387. ConcatNext = false
  1388. else
  1389. fields[#fields+1] = c
  1390. end
  1391. if c:sub(#c)=="\\" then
  1392. c = fields[#fields]
  1393. fields[#fields] = c:sub(1,#c-1)
  1394. ConcatNext = true
  1395. end
  1396. end)
  1397. return fields
  1398. end
  1399. RemoveAndSplit = function(t)
  1400. return split(table_remove(t,1),comma)
  1401. end
  1402. t = split(str,";")
  1403. props = RemoveAndSplit(t)
  1404. classes = RemoveAndSplit(t)
  1405. values = split(table_remove(t,1),'|')
  1406. ICList = RemoveAndSplit(t)
  1407. InstanceList = {}
  1408. Model = inst"Model"
  1409. CurPar = Model
  1410. table_foreach(t,function(ct,c)
  1411. if c=="n" or c=="p" then
  1412. CurPar = c=="n" and LastIns or CurPar[parnt]
  1413. else
  1414. ct = split(c,"|")
  1415. local class = classes[tonum(table_remove(ct,1))]
  1416. if class=="UnionOperation" then
  1417. LastIns = {UsePartColor="1"}
  1418. else
  1419. LastIns = inst(class)
  1420. if LastIns:IsA"Script" then
  1421. s(LastIns)
  1422. elseif LastIns:IsA("ModuleScript") then
  1423. ms(LastIns)
  1424. end
  1425. end
  1426.  
  1427. local function SetProperty(LastIns,p,str,s)
  1428. s = Types[typeof(LastIns[p])]
  1429. if p=="CustomPhysicalProperties" then
  1430. s = PhysicalProperties.new
  1431. end
  1432. if s then
  1433. LastIns[p] = s(unpack(split(str,comma)))
  1434. else
  1435. LastIns[p] = str
  1436. end
  1437. end
  1438.  
  1439. local UnionData
  1440. table_foreach(ct,function(s,p,a,str)
  1441. a = p:find":"
  1442. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  1443. if p=="UnionData" then
  1444. UnionData = split(str," ")
  1445. return
  1446. end
  1447. if class=="UnionOperation" then
  1448. LastIns[p] = str
  1449. return
  1450. end
  1451. SetProperty(LastIns,p,str)
  1452. end)
  1453.  
  1454. if UnionData then
  1455. local LI_Data = LastIns
  1456. LastIns = DecodeUnion(UnionData)
  1457. table_foreach(LI_Data,function(p,str)
  1458. SetProperty(LastIns,p,str)
  1459. end)
  1460. end
  1461. table.insert(InstanceList,LastIns)
  1462. LastIns[parnt] = CurPar
  1463. end
  1464. end)
  1465. table_remove(ICList,1)
  1466. table_foreach(ICList,function(a,b)
  1467. b = split(b,">")
  1468. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  1469. end)
  1470.  
  1471. return Model:GetChildren()
  1472. end
  1473.  
  1474. local Objects = Decode('Name,PrimaryPart,Color,Position,Orientation,Size,BottomSurface,LeftSurface,RightSurface,TopSurface,C0,C1,Part0,Part1,Scale,Transparency,BackSurface,MeshType,FrontSurface,SoundId,Volume,MaxActivationDistance,MaxTorque,Velocity,MaxForce,Reflectance,CanCollide,P,CFrame,Value,BackgroundColor3,BorderColor3,Text,TextColor3,TextSize,TextXAlignment,Material,Heat,SecondaryColor;Part,Model,Weld,SpecialMesh,TrussPart,CylinderMesh,Sound,ClickDetector,BlockMesh,Script,BodyGyro,BodyVelocity,Seat,IntValue,CFrameValue,HopperBin,GuiMain,TextLabel,Snap,Fire;Part|CoffeeTable|0.3843,0.2784,0.196|94.8204,5.9,-26.6396|0,90,180|1,1,1|0|2|95.8204,5.9,-26.63'
  1475. ..'96|95.8204,5.9,-25.6396|0,0.5,0,-1,-0,-0,0,0,1,0,1,0|-4,0.1999,-3,-1,0,0,0,0,-1,0,-1,0|0,-0.5,0,1,0,0,-0,-0,-1,0,1,0|-4,-0.2001,-3,1,0,0,0,0,1,-0,-1,-0|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,0,0,0,0,-1,0,1,0,1,0,0|90.8204,5.9,-26.6396|89.8204,5.9,-26.6396|-5,0.1999,3,-1,0,0,0,0,-1,0,-1,0|-5,-0.2001,3,1,0,0,0,0,1,-0,-1,-0|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,0,0,0,0,1,0,1,0,-1,0,0|89.8204,5.9,-25.6396|-4,0.1999,3,-1,0,0,0,0,-1,0,-1,0|-4,-0.2001,3,1,0,0,0,0,1,-0,-1,-0|90.8204,4.5,-25.6396|1.25,1.25,1.25|0.4117,0.2509,0.1568|92.8204,6.6,-21.6396|0,-90,0|11,0.4,9|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|5,-0.5001,-2,1,0,0,0,0,1,0,-1,0|5,-0.5001,-3,1,0,0'
  1476. ..',0,0,1,0,-1,0|-5,-0.5001,3,1,0,0,0,0,1,0,-1,0|-4,-0.5001,3,1,0,0,0,0,1,0,-1,0|5,-0.5001,2,1,0,0,0,0,1,0,-1,0|-5,-0.5001,2,1,0,0,0,0,1,0,-1,0|92.8204,5.2,-21.6396|11,0.4,7|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|5,0.4999,-2,-1,0,0,0,0,-1,0,-1,0|5,0.4999,-3,-1,0,0,0,0,-1,0,-1,0|4,-0.5,-2,1,0,0,0,0,1,0,-1,0|-5,0.4999,3,-1,0,0,0,0,-1,0,-1,0|-4,0.4999,3,-1,0,0,0,0,-1,0,-1,0|4,-0.5,2,1,0,0,0,0,1,0,-1,0|-4,-0.5,-2,1,0,0,0,0,1,0,-1,0|5,0.4999,2,-1,0,0,0,0,-1,0,-1,0|-5,0.4999,2,-1,0,0,0,0,-1,0,-1,0|94.8204,4.5,-25.6396|89.8204,5.9,-17.6396|95.8204,5.9,-17.6396|4,0.1999,-3,-1,0,0,0,0,-1,0,-1,0|4,-0.2001,-3,1,0,0,0,0,1,-0,-1,-0|90.8204,4.5,-17.6396|4,-0.2'
  1477. ..',2,1,0,0,0,0,1,0,-1,0|94.8204,4.5,-17.6396|94.8204,5.9,-16.6396|5,0.1999,-2,-1,0,0,0,0,-1,0,-1,0|5,-0.2001,-2,1,0,0,0,0,1,-0,-1,-0|89.8204,5.9,-16.6396|90.8204,5.9,-16.6396|95.8204,5.9,-16.6396|5,0.1999,-3,-1,0,0,0,0,-1,0,-1,0|5,-0.2001,-3,1,0,0,0,0,1,-0,-1,-0|0,0.5607,0.6117|0.6|21.3204,30,-20.6396|0,90,0|9,4,2|-4.5,0,0,-0,-0,-1,0,1,0,1,0,0|1,-1,0,0,1,0,0,0,1,1,0,0|4.5,0,0,0,0,1,0,1,0,-1,-0,-0|1,0,1,0,1,0,1,0,0,0,0,-1|0.3882,0.3725,0.3843|21.3204,27,-20.6396|2,2,9|0,0,4.5,1,0,0,0,1,0,0,0,1|-2,-1,0,0,1,0,0,0,1,1,0,0|0,0,-4.5,-1,-0,-0,0,1,0,-0,-0,-1|-2,0,1,0,1,0,1,0,0,0,0,-1|0,1,0,-1,-0,-0,0,0,1,0,1,0|0,-2,0,0,-1,0,0,0,1,-1,0,0|0,-1,0'
  1478. ..',1,0,0,-0,-0,-1,0,1,0|0,0.5,2.5,0,1,0,0,0,-1,-1,0,0|21.3204,29,-15.1396|0,90,90|6,2,2|21.3204,29,-26.1396|0,0,90|23.8204,25.5,-20.6396|13,1,7|0,0,-3.5,-1,-0,-0,0,1,0,-0,-0,-1|4.5,0,4.4999,-1,0,0,0,1,0,0,0,-1|5.5,-1,4.5,-1,0,0,0,0,1,0,1,0|-5.5,4,3.5,0,-1,0,0,0,-1,1,0,0|0,4,-0.5,1,0,0,0,0,-1,0,1,0|-3,-5.5,2.5,0,0,1,-1,0,0,0,-1,0|-5.5,-1,4.5,-1,0,0,0,0,1,0,1,0|-3,-2.5,5.5,0,0,1,0,1,0,-1,0,0|24.8204,29,-15.1396|2,2,5|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,1,0,1,0,1,0,0,0,0,-1|-1.6796,20,-25.6396|5,2,16|0,0,8,1,0,0,0,1,0,0,0,1|0,1,8,-1,0,0,0,1,0,0,0,-1|-5,1,-4,-1,0,0,0,0,-1,0,-1,0|10.3204,19,-20.6396|5,4,16|0,-2,0,1,0,0,-0,-0,-1,0,1,0|-7,0.'
  1479. ..'5,0,0,-1,0,0,0,-1,1,0,0|3,0.5,0,0,-1,0,0,0,-1,1,0,0|0,1,-8,1,0,0,0,1,0,0,0,1|0,-1,8,-1,0,0,0,1,0,0,0,-1|-17.6796,18,-38.6396|5,2,24|0,0,12,1,0,0,0,1,0,0,0,1|0,0,4,-1,0,0,0,1,0,0,0,-1|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|15.5,0,4,0,0,-1,0,1,0,1,0,0|-4,0.5,-18,0,1,0,0,0,-1,-1,0,0|-1.6796,18,-38.6396|5,2,8|2.5,0,0,0,0,1,0,1,0,-1,-0,-0|-15.5,0,-4,0,0,1,0,1,0,-1,0,0|35.3204,30,-20.6396|2,4,9|0,2,0,-1,-0,-0,0,0,1,0,1,0|0,-1,-7,0,1,0,0,0,1,1,0,0|-0.0001,1,0,1,0,0,0,0,-1,0,1,0|-5.6796,20,-20.6396|-1.6796,20,-15.6396|5,1,-4,-1,0,0,0,0,-1,0,-1,0|14.3204,19,-25.6396|31.8204,25.5,-25.1396|4,1,9|2,0,0,0,0,1,0,1,0,-1,-0,-0|-2.5,0,2.5,0,0,1,0,1,0,-1,0,0|-'
  1480. ..'3.5001,-1,-4.5,0,-1,0,0,0,1,-1,0,0|28.3204,27,-26.1396|2,2,12|-1,0.5,3.4999,1,0,0,0,0,-1,0,1,0|0,-1,3.5,1,0,0,0,0,1,0,-1,0|0,0,6,1,0,0,0,1,0,0,0,1|7.3204,16.5,-20.6396|10,1,17|5,-2.0001,7,0,1,0,0,0,1,1,0,0|5,0,0,0,0,1,0,1,0,-1,-0,-0|-5,0,0,0,0,1,0,1,0,-1,0,0|-7,-2,0.9999,0,1,0,1,0,0,0,0,-1|-2,3.9999,8,1,0,0,0,0,-1,0,1,0|3,3.9999,-7.5,1,0,0,0,0,-1,0,1,0|0,0,8.5,1,0,0,0,1,0,0,0,1|-4,-6,2,0,-1,0,0,0,1,-1,0,0|0,0,-8.5,-1,-0,-0,0,1,0,-0,-0,-1|3.9999,-6,2,0,1,0,0,0,1,1,0,0|4.3204,12,-13.1396|4,8,2|0.5,-3,-3,-1,0,0,0,0,1,0,1,0|0,0,1,1,0,0,0,1,0,0,0,1|0.5,-6,5,0,-1,0,0,0,1,-1,0,0|9.3204,15,-13.6396|-90,-90,0|1,6,2|9.3204,13,-13.6396|90,-90,0'
  1481. ..'|4.3204,12,-28.1396|-0.5,-3,-3,-1,0,0,0,0,1,0,1,0|0,4,0,-1,-0,-0,0,0,1,0,1,0|-3,-0.5,-7.5,-1,0,0,0,0,1,0,1,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,-6,5,0,1,0,0,0,1,1,0,0|-3,0,0.5,0,0,1,0,1,0,-1,0,0|9.3204,12,-12.6396|6,8,1|2,-0.5,8,-1,0,0,0,0,1,0,1,0|0,0,0.5,1,0,0,0,1,0,0,0,1|0.5,-6,0,0,-1,0,0,0,1,-1,0,0|3,0,0,0,0,1,0,1,0,-1,-0,-0|-2,0,0.5,0,0,1,0,1,0,-1,0,0|-3,0,0,-0,-0,-1,0,1,0,1,0,0|2,0,0.5,0,0,-1,0,1,0,1,0,0|9.3204,11,-13.6396|0,-3,0,1,0,0,-0,-0,-1,0,1,0|2,-1,-0.5,0,0,-1,0,1,0,1,0,0|0,0,0.9999,1,0,0,0,-1,0,0,0,-1|9.3204,11,-27.6396|2,-1,0.5,0,0,-1,0,1,0,1,0,0|9.3204,13,-27.6396|9.3204,15,-27.6396|2,-0.5,-7,0,1,0,0,0,1,1,0,0|9.3204,'
  1482. ..'9,-27.6396|9.3204,12,-28.6396|9.3204,9,-13.6396|35.3204,29,-26.1396|0,-90,90|-5.5,-1,-7,0,-1,0,0,0,1,-1,0,0|-1,0.5,-3.5,0,-1,0,0,0,-1,1,0,0|-0.0001,2,-4.5,0,-1,0,1,0,0,0,0,1|0,2,-6,0,-1,0,1,0,0,0,0,1|0,0,2.5,0,1,0,1,0,0,0,0,-1|14.3204,19,-15.6396|-3,0.5,5,0,-1,0,0,0,-1,1,0,0|7,0.5,5,0,-1,0,0,0,-1,1,0,0|27.3204,16.5,-15.1396|10,1,6|-8,0,5.5,0,0,1,0,1,0,-1,0,0|5.5,-4.0001,-4,0,1,0,0,0,1,1,0,0|-1.5,-2,0.9999,0,1,0,1,0,0,0,0,-1|35.3204,29,-15.1396|0,-180,90|5.5,-1,-7,1,0,0,0,0,1,0,-1,0|0,2,4.5,0,1,0,1,0,0,0,0,-1|1,0.5,-3.5,-1,0,0,0,0,-1,0,-1,0|0,-1,4.5,0,1,0,1,0,0,0,0,-1|-5.6796,18,-20.6396|31,2,16|15.5,0,0,0,0,1,0,1,0,-1,-0,-0|2.5,0,12,'
  1483. ..'0,0,-1,0,1,0,1,0,0|0,-1,0,1,0,0,0,0,1,0,-1,0|0,0,8,-1,0,0,0,1,0,0,0,-1|28.3204,33,-20.6396|13,2,16|3,-5.5,7,0,0,-1,1,0,0,0,-1,0|3,-7,5.5,0,0,-1,0,1,0,1,0,0|0,2,7,-1,0,0,0,0,-1,0,-1,0|17.3204,16.5,-20.6396|-5,0,-5.5,0,0,1,0,1,0,-1,0,0|5,-2.0001,-3,0,1,0,0,0,1,1,0,0|-4,-6,-8,0,-1,0,0,0,1,-1,0,0|3,3.9999,7.5,1,0,0,0,0,-1,0,1,0|3.9999,-6,-8,0,1,0,0,0,1,1,0,0|14.3204,12,-13.1396|-2,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,-3,1,1,0,0,0,0,1,0,-1,0|0.5,-3,-3,1,0,0,0,0,1,0,-1,0|19.3204,15,-13.6396|2,-0.5,7,0,1,0,0,0,1,1,0,0|2,3,-0.5,0,0,-1,0,1,0,1,0,0|19.3204,13,-13.6396|14.3204,12,-28.1396|-0.5,-3,0.9999,-1,0,0,0,0,1,0,1,0|-0.5,-3,1,1,0,0,0,0,1,0,-1,0|-'
  1484. ..'0.5,-6,-5,0,1,0,0,0,1,1,0,0|3,0,0.5,0,0,-1,0,1,0,1,0,0|-0.5,-3,-3,1,0,0,0,0,1,0,-1,0|19.3204,12,-12.6396|19.3204,11,-13.6396|19.3204,11,-27.6396|19.3204,13,-27.6396|-2,1,0.5,0,0,1,0,-1,0,1,0,0|19.3204,15,-27.6396|2,3,0.5,0,0,-1,0,1,0,1,0,0|19.3204,9,-27.6396|-2,-3,0.5,0,0,1,0,-1,0,1,0,0|19.3204,12,-28.6396|19.3204,9,-13.6396|-2,-3,-0.5,0,0,1,0,-1,0,1,0,0|27.3204,16.5,-26.1396|-8,0,-5.5,0,0,1,0,1,0,-1,0,0|-5.5,-4.0001,-4,0,1,0,0,0,1,1,0,0|-2,-4.0001,-2,-1,0,0,0,0,1,0,1,0|-5,0,0,-0,-0,-1,0,1,0,1,0,0|5,0,-5.5,0,0,-1,0,1,0,1,0,0|1.5,-2,0.9999,0,1,0,1,0,0,0,0,-1|-2,3.9999,2.5,1,0,0,0,0,-1,0,1,0|3,3.9999,2,1,0,0,0,0,-1,0,1,0|35.3204,27,-20'
  1485. ..'.6396|29.3204,21,-24.1396|10,8,2|0,-4,0,1,0,0,-0,-0,-1,0,1,0|-11,0.5,-3.5,1,0,0,0,0,-1,0,1,0|1,-0.5001,2.5,0,1,0,0,0,1,1,0,0|-21.6796,18,-20.6396|29.3204,21,-17.1396|-11,0.5,3.5,1,0,0,0,0,-1,0,1,0|3.5,-0.5001,-5.5,0,1,0,0,0,1,1,0,0|1.9999,0.5,-2,1,0,0,0,0,-1,0,1,0|-1,-0.5001,2.5,0,1,0,0,0,1,1,0,0|34.3204,25.5,-20.6396|5,1,4|-1,-1,0,0,-1,0,0,0,1,-1,0,0|28.3204,27,-15.1396|31.8204,25.5,-16.1396|2.5,0,2.5,0,0,-1,0,1,0,1,0,0|-3.5,-1,4.5,0,-1,0,0,0,1,-1,0,0|4.5,0,-3.5,1,0,0,0,1,0,0,0,1|-1,-1,-3.5,-1,0,0,0,0,1,0,1,0|28.3204,17,-19.1396|2,18,2|1,0,0,0,0,1,0,1,0,-1,-0,-0|-2,-8.5001,3.4999,0,0,1,0,1,0,-1,0,0|1.5,-8.5001,-3.5,1,0,0,0,1,0,0,0,1'
  1486. ..'|23.3204,21,-20.6396|9,8,2|33.3204,21,-20.6396|5,8,2|0,-0.5001,1,-1,0,0,0,0,1,0,1,0|-13.6796,16.5,-20.6396|32,1,41|-13.5,3.9999,15,0,1,0,0,0,-1,-1,0,0|-18,-1.0001,12,0,1,0,0,0,1,1,0,0|13.5,3.9999,15,0,1,0,0,0,-1,-1,0,0|-6,3.9999,-19.5,1,0,0,0,0,-1,0,1,0|-6,3.9999,19.5,1,0,0,0,0,-1,0,1,0|4,3.9999,-19.5,1,0,0,0,0,-1,0,1,0|16,0,0,0,0,1,0,1,0,-1,-0,-0|3.9999,-14.5,7,0,1,0,1,0,0,0,0,-1|9,3.9999,-20,1,0,0,0,0,-1,0,1,0|-1,3.9999,-20,1,0,0,0,0,-1,0,1,0|18,-1.0001,12,0,1,0,0,0,1,1,0,0|4,3.9999,19.5,1,0,0,0,0,-1,0,1,0|-19,9,0.9999,0,1,0,1,0,0,0,0,-1|19,-11,0.9999,0,1,0,1,0,0,0,0,-1|18,-1.0001,4,0,-1,0,0,0,1,-1,0,0|0,-1.0001,8,0,-1,0,0,0,1,-1,0'
  1487. ..',0|-19,-11,0.9999,0,1,0,1,0,0,0,0,-1|19,-1,0.9999,0,1,0,1,0,0,0,0,-1|14,3.9999,-19.5,1,0,0,0,0,-1,0,1,0|-4,-14.5,7,0,-1,0,-1,0,0,0,0,-1|-10.5,3.9999,-15,0,1,0,0,0,-1,-1,0,0|-15.5,3.9999,-15.5,0,1,0,0,0,-1,-1,0,0|0,3.9999,-15,0,1,0,0,0,-1,-1,0,0|-10.5,3.9999,15,0,-1,0,0,0,-1,1,0,0|-19,-1,0.9999,0,1,0,1,0,0,0,0,-1|9,3.9999,20,1,0,0,0,0,-1,0,1,0|-1,3.9999,20,1,0,0,0,0,-1,0,1,0|-14.5,-15.5,0.9999,-1,0,0,0,1,0,0,0,-1|-15.5,3.9999,15.5,0,-1,0,0,0,-1,1,0,0|0,-1.0001,8,0,1,0,0,0,1,1,0,0|14.5,-15.5,0.9999,1,0,0,0,-1,0,0,0,-1|14,3.9999,19.5,1,0,0,0,0,-1,0,1,0|19,9,0.9999,0,1,0,1,0,0,0,0,-1|-1.6796,18,-2.6396|0,0,4,1,0,0,0,1,0,0,0,1|0,0,12,-1,0'
  1488. ..',0,0,1,0,0,0,-1|-17.6796,18,-2.6396|-15.5,0,4,0,0,1,0,1,0,-1,0,0|31.8204,29,-15.1396|0,1,-3.5,-1,0,0,0,0,-1,0,-1,0|GunBarrel|One|0.7686,0.1568,0.1098|28.3204,29,-6.1396|2,2,2|OH SNAP YOU GOT INFECTED XD XD XD|4|28.3204,29,-11.6396|90,0,0|2,9,2|-3.5,0,-2.5,0,-1,0,1,0,0,0,0,1|0,4.5,0,-1,-0,-0,0,0,1,0,1,0|-1,0,0,0,0,1,1,0,0,0,1,0|3.5,1,0,0,1,0,0,0,-1,-1,0,0|0,-4.5,0,1,0,0,-0,-0,-1,0,1,0|0,-0.2,0,0,-1,0,0,-0,1,-1,-0,0|-1,0,0,-0,-0,-1,0,1,0,1,0,0|-3.5,0,2.5,0,-1,0,-1,0,0,0,0,-1|Switch|0.2941,0.5921,0.2941|28.3204,29,-16.3396|2,0.4,2|5|GunSound|http://www.roblox.com/asset?id=2101148|1|100|CannonBall|FireGun|28.3204,31,-15.1396|2,-1,0,0,1,0'
  1489. ..',0,0,1,1,0,0|0,-3.5,-1,0,1,0,-1,0,0,0,0,1|0,1,3.5,1,0,0,0,0,-1,0,1,0|0,1,-3.5,1,0,0,0,0,-1,0,1,0|0,0,-6,-1,-0,-0,0,1,0,-0,-0,-1|2,0,1,0,1,0,1,0,0,0,0,-1|5.5,-1,0,1,0,0,0,0,1,0,-1,0|24.8204,29,-26.1396|0,-1,0,0,1,0,0,0,1,1,0,0|28.3204,29,-35.1396|90,90,0|0,4.5,0,0,-1,0,0,0,-1,1,0,0|28.3204,29,-29.6396|90,180,0|-3.5,1,0,0,-1,0,0,0,-1,1,0,0|0,-0.2,0,0,-1,0,0,0,1,-1,0,0|3.5,0,2.5,0,1,0,1,0,0,0,0,-1|28.3204,29,-24.9396|31.8204,29,-26.1396|-1,-3.5,0,0,0,1,-1,0,0,0,-1,0|28.3204,31,-26.1396|2,0,0.9999,0,1,0,1,0,0,0,0,-1|0,-3.5,-1,0,-1,0,1,0,0,0,0,1|-5.5,-1,0,1,0,0,0,0,1,0,-1,0|34.3204,12,-28.1396|-29.1796,12,-36.1396|-28.1796,11,-36.1396|-90'
  1490. ..',0,0|-28.1796,15,-36.1396|-28.1796,13,-36.1396|-28.6796,12,-31.1396|-15,0.4999,-10.5,0,1,0,0,0,-1,-1,0,0|-28.1796,9,-36.1396|49.3204,28,-20.6396|0,0,7.9999,1,0,0,0,-1,0,0,0,-1|0,-2,0,1,0,0,0,0,1,0,-1,0|56.3204,22,-32.1396|8,16,2|0,-8,0,1,0,0,-0,-0,-1,0,1,0|-0.5,-2.0001,-5.5,0,-1,0,1,0,0,0,0,1|0.5,1,-0.5,0,-1,0,1,0,0,0,0,1|-0.5,2,-0.5,0,-1,0,1,0,0,0,0,1|7.4999,3.5,-10.5,0,-1,0,1,0,0,0,0,1|11.5,-3.5001,-6.5,0,-1,0,1,0,0,0,0,1|56.3204,15.5,-30.6396|16,1,1|8,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,3.5,-1,0,0,1,0,1,0,-1,0,0|-6,2.5,0,1,0,0,0,0,-1,0,1,0|0,-0.5,-10,-1,0,0,0,0,1,0,1,0|0,2.5,0,1,0,0,0,0,-1,0,1,0|5.9999,2.5,0,1,0,0,0,0,-1,0,1,0|0,0,-0.5,'
  1491. ..'-1,-0,-0,0,1,0,-0,-0,-1|-1,0,1,0,1,0,1,0,0,0,0,-1|56.3204,16.5,-20.6396|16,1,21|-2,-0.2001,6.5,1,0,0,0,0,1,0,-1,0|49.5204,22,-20.6396|0,180,90|4,0.4,5|0,0.5,0.5,0,1,0,1,0,0,0,0,-1|0,-0.2001,-1,-1,0,0,0,0,1,0,1,0|0,-0.2001,-2,-1,0,0,0,0,1,0,1,0|62.3204,12.5,-30.6396|4,5,1|-0.5,0.5,-1,0,0,1,0,1,0,-1,0,0|-22.6796,12,-40.6396|-22.6796,11,-39.6396|-22.6796,15,-39.6396|-22.6796,13,-39.6396|-27.6796,12,-40.1396|3,0,1.5,0,0,-1,0,1,0,1,0,0|-14,0.4999,-19.5,1,0,0,0,0,-1,0,1,0|-22.6796,9,-39.6396|-9,0.4999,-19,0,-1,0,0,0,-1,1,0,0|39.3204,13,-27.6396|-3.0001,1,0.5,0,0,1,0,-1,0,1,0,0|45.3204,12,-28.1396|6,8,2|48.8204,24,-20.6396|0,180,0|1,2,21|0,'
  1492. ..'-0.5,-7.5,0,1,0,0,0,1,1,0,0|10,1.5,0,0,1,0,0,0,-1,-1,0,0|0,0,-10.5,-1,-0,-0,0,1,0,-0,-0,-1|-2.5001,7.4999,1,0,-1,0,-1,0,0,0,0,-1|0,1.5,0,0,1,0,0,0,-1,-1,0,0|-10,1.5,0,0,1,0,0,0,-1,-1,0,0|6,1.5,0,0,1,0,0,0,-1,-1,0,0|-6,1.5,0,0,1,0,0,0,-1,-1,0,0|2,-0.2,0,0,1,0,0,0,1,1,0,0|0,0,10.5,1,0,0,0,1,0,0,0,1|2,7.4999,1,0,1,0,1,0,0,0,0,-1|49.9204,22,-20.6396|4,0.4,1|0,0.2,0,1,0,0,0,0,-1,0,1,0|56.3204,16.5,-32.1396|3,16,2|-0.5,4.4999,-2.5,0,0,1,1,0,0,0,1,0|7.4999,-2.0001,-10.5,0,-1,0,1,0,0,0,0,1|0,0,-10.5,0,-1,0,1,0,0,0,0,1|56.3204,12.5,-30.6396|8,5,1|4,0,0,0,0,1,0,1,0,-1,-0,-0|-2,0,0,0,0,1,0,1,0,-1,0,0|-4,0,0,-0,-0,-1,0,1,0,1,0,0|1.9999,0,0,0,0,-'
  1493. ..'1,0,1,0,1,0,0|48.8204,21.5,-14.6396|7,3,1|48.8204,18.5,-20.6396|1,3,21|0,1.5,0,-1,-0,-0,0,0,1,0,1,0|10,-1.5001,0,0,-1,0,0,0,1,-1,0,0|0,-1.5,0,1,0,0,-0,-0,-1,0,1,0|-7.5,0.5,0,1,0,0,0,0,-1,0,1,0|6,-1.5001,0,0,-1,0,0,0,1,-1,0,0|-2.6796,12,-40.6396|-6.5,0,1,-1,0,0,0,1,0,0,0,-1|11,-0.5,-20,-1,0,0,0,0,1,0,1,0|2,0,-0.5,0,0,-1,0,1,0,1,0,0|11,0.4999,-20,1,0,0,0,0,-1,0,1,0|-2.6796,11,-39.6396|-2.6796,15,-39.6396|-2.6796,13,-39.6396|-5.5,1,1,1,0,0,0,-1,0,0,0,-1|-7.6796,12,-40.1396|6,0.4999,-19.5,1,0,0,0,0,-1,0,1,0|-2.6796,9,-39.6396|-5.5,-3,1,1,0,0,0,-1,0,0,0,-1|-12.6796,12,-40.6396|-12.6796,11,-39.6396|-12.6796,15,-39.6396|-12.6796,13,-39.6396'
  1494. ..'|-17.6796,12,-40.1396|-12.6796,9,-39.6396|39.3204,12,-28.6396|49.9204,22,-19.6396|0,0.2,-1,1,0,0,0,0,-1,0,1,0|48.8204,21.5,-20.6396|5,3,1|3.5,0,0,0,0,-1,0,1,0,1,0,0|49.9204,22,-21.6396|49.9204,22,-22.6396|38.8204,32,-20.6396|5,4,5|0,0,2.5,1,0,0,0,1,0,0,0,1|0,-1,-8,1,0,0,0,1,0,0,0,1|1,2,0,0,0,-1,0,1,0,1,0,0|48.8204,21.5,-10.6396|1,3,1|-3.5,0,0,0,0,1,0,1,0,-1,0,0|64.8204,12,-29.6396|1,8,5|39.3204,11,-27.6396|0.7058,0.8235,0.8941|58.3204,15.8,-27.1396|0,180,180|4,0.4,4|1.9999,-0.5001,-6.5,1,0,0,0,0,1,0,-1,0|50.3204,12.5,-30.6396|45.3204,12,-30.1396|10,6,2|-8,-4.5,-9.5,0,0,1,1,0,0,0,1,0|-2,-0.5,0.5,0,0,1,1,0,0,0,1,0|-8,4.4999,-9.5,0,0,1,'
  1495. ..'1,0,0,0,1,0|5,-4.5,-8.5,0,-1,0,1,0,0,0,0,1|-0.0001,4.4999,-8.5,0,-1,0,1,0,0,0,0,1|0,0,-1,0,-1,0,1,0,0,0,0,1|-8,-3.5,0.5,0,0,1,1,0,0,0,1,0|48.8204,21.5,-26.6396|0,1.5,-6,0,1,0,0,0,-1,-1,0,0|49.9204,22,-18.6396|0,0.2,-2,1,0,0,0,0,-1,0,1,0|56.3204,9,-30.6396|16,2,1|-0.5,-3,-1,0,0,1,0,1,0,-1,0,0|-6,-2.5,0,-1,0,0,0,0,1,0,1,0|0,-2.5,0,-1,0,0,0,0,1,0,1,0|5.9999,-2.5,0,-1,0,0,0,0,1,0,1,0|0.5,0,1,0,1,0,1,0,0,0,0,-1|0,0.4999,-10,1,0,0,0,0,-1,0,1,0|-8,0,0,-0,-0,-1,0,1,0,1,0,0|-3,-3,-0.5,0,1,0,0,0,1,1,0,0|29.3204,9,-27.6396|-13.6796,7.5,-20.6396|0,-14.5,20,0,-1,0,-1,0,0,0,0,-1|-19,11,0.9999,0,1,0,1,0,0,0,0,-1|13.5,-4,15,0,1,0,0,0,1,1,0,0|19,11,0'
  1496. ..'.9999,0,1,0,1,0,0,0,0,-1|0,-14.5,20,0,1,0,1,0,0,0,0,-1|19,1,0.9999,0,1,0,1,0,0,0,0,-1|-1,-4,20,-1,0,0,0,0,1,0,1,0|-1,-4,-20,-1,0,0,0,0,1,0,1,0|-27,3.4999,-5,1,0,0,0,0,-1,0,1,0|4,-4,19.5,-1,0,0,0,0,1,0,1,0|14,-4,-19.5,-1,0,0,0,0,1,0,1,0|-14.5,15.5,0.9999,1,-0,-0,0,-1,-0,0,-0,-1|-27,3.4999,5,1,0,0,0,0,-1,0,1,0|-10.5,-4,-15,0,1,0,0,0,1,1,0,0|-15.5,-4,-15.5,0,1,0,0,0,1,1,0,0|0,-4,-15,0,1,0,0,0,1,1,0,0|14.5,15.5,0.9999,-1,0,0,0,1,0,0,0,-1|9,-4,20,-1,0,0,0,0,1,0,1,0|-15.5,-4,15.5,0,-1,0,0,0,1,-1,0,0|40.3204,16.5,-20.6396|16,1,17|-8,0,0,0,0,1,0,1,0,-1,0,0|-7,1,0.9999,0,1,0,1,0,0,0,0,-1|7.5,4,3.9999,-1,0,0,0,1,0,0,0,-1|1,3.9999,8,1,0,0,0,0,-'
  1497. ..'1,0,1,0|-5.0001,3.9999,7.5,1,0,0,0,0,-1,0,1,0|6,3.9999,7.5,1,0,0,0,0,-1,0,1,0|39.3204,15,-27.6396|-1,-0.5,-7,0,1,0,0,0,1,1,0,0|56.3204,8.5,-32.1396|-0.5,-3.5,-2.5,0,0,1,1,0,0,0,1,0|-4,0.9999,-2.5,0,0,1,1,0,0,0,1,0|0,0.9999,-10.5,0,-1,0,1,0,0,0,0,1|39.3204,9,-27.6396|-3.0001,-3,0.5,0,0,1,0,-1,0,1,0,0|57.3204,21,-30.6396|1,8,16|-8.5,0.5,-1,0,1,0,0,0,-1,-1,0,0|10,-0.5001,0.9999,-1,0,0,0,0,1,0,1,0|0.9999,0.5,-10,0,1,0,0,0,-1,-1,0,0|10,-0.5001,-13.5,-1,0,0,0,0,1,0,1,0|58.3204,15.8,-20.6396|1.9999,-0.5001,0,1,0,0,0,0,1,0,-1,0|64.8204,15,-24.6396|1,2,5|-5.5,-0.5,-7,-1,0,0,0,0,1,0,1,0|-0.0001,3,2.5,-1,0,0,0,1,0,0,0,-1|47.8204,12,-26.1396|1,8'
  1498. ..',2|7.5,-0.5,-5.5,-1,0,0,0,0,1,0,1,0|0,-0.5,0,-1,0,0,0,0,1,0,1,0|2.5,0,1,-1,0,0,0,1,0,0,0,-1|2.4999,0.4999,-5.5,1,0,0,0,0,-1,0,1,0|47.8204,12,-24.6396|-90,-180,0|1,1,8|48.8204,21.5,-30.6396|0,1.5,-10,0,1,0,0,0,-1,-1,0,0|29.3204,12,-28.6396|-2,0,-0.5,0,0,1,0,1,0,-1,0,0|49.3204,32,-20.6396|-28.6796,12,-20.6396|17,8,2|56.3204,25.5,-20.6396|21,1,16|0,-2,9,1,0,0,0,0,1,0,-1,0|10,4,-1,1,0,0,0,0,-1,0,1,0|24.3204,12,-28.1396|29.3204,15,-27.6396|29.3204,13,-27.6396|29.3204,11,-27.6396|0,-0.0001,0.9999,1,0,0,0,-1,0,0,0,-1|1.3204,12,-34.1396|14,8,2|-0.5,-1,7,0,1,0,1,0,0,0,0,-1|9.3204,12.5,-35.1396|9,12,14|0,-6,0,1,0,0,-0,-0,-1,0,1,0|0,0.5,-0.5,0,'
  1499. ..'-1,0,1,0,0,0,0,1|22.3204,7.5,-35.1396|1,12,40|47.8204,12,-19.6396|7.5,-0.5,1,1,0,0,0,0,1,0,-1,0|-22.6796,15,-1.6396|-22.6796,13,-1.6396|-22.6796,12,-0.6396|-9,0.4999,20,1,0,0,0,0,-1,0,1,0|-22.6796,11,-1.6396|-27.6796,12,-1.1396|0.5,-3,0.9999,-1,0,0,0,0,1,0,1,0|-22.6796,9,-1.6396|-9,0.4999,19,0,-1,0,0,0,-1,1,0,0|29.3204,11,-13.6396|64.8204,21,-9.6396|1,8,1|-5.5,0.5,8,0,1,0,0,0,-1,-1,0,0|-11,-0.5001,-6,-1,0,0,0,0,1,0,1,0|0.5,-8,0.5,0,-1,0,0,0,1,-1,0,0|24.3204,12,-13.1396|-3,-0.5,2,-1,0,0,0,0,1,0,1,0|29.3204,9,-13.6396|29.3204,13,-13.6396|1.3204,12,-7.1396|-5.5,-3,1,1,0,0,0,0,1,0,-1,0|-5.5,-3,-3,1,0,0,0,0,1,0,-1,0|0.5,-1,7,0,-1,0,-1,0,0'
  1500. ..',0,0,-1|15,0.4999,13.5,0,-1,0,0,0,-1,1,0,0|29.3204,12,-12.6396|1.9999,-0.5,2.5,-1,0,0,0,0,1,0,1,0|56.3204,9,-10.6396|-7,0,4,1,0,0,0,-1,0,0,0,-1|0,0.4999,10,1,0,0,0,0,-1,0,1,0|-0.5,0,1,0,-1,0,-1,0,0,0,0,-1|58.3204,15.8,-14.1396|45.3204,12,-13.1396|0.5,-3.0001,1,1,0,0,0,0,1,0,-1,0|5,-0.5,7.5,-1,0,0,0,0,1,0,1,0|3,0,-0.5,0,0,-1,0,1,0,1,0,0|0,0,1,0,-1,0,-1,0,0,0,0,-1|0.5,-3.0001,-3,1,0,0,0,0,1,0,-1,0|-0.0001,0.4999,7.5,1,0,0,0,0,-1,0,1,0|0.1058,0.1647,0.2078|49.3204,9,-15.1396|0,0,180|2,2,8|Engine|56.3204,7.5,-20.6396|10000000000,10000000000,10000000000|0,0,0|-4,0,9,0,0,1,0,1,0,-1,0,0|0.9999,0,1,0,-1,0,-1,0,0,0,0,-1|-7,0.9999,-5.5,1,0,0,0'
  1501. ..',0,-1,0,1,0|2.9999,0,0,0,0,-1,0,1,0,1,0,0|56.3204,15.5,-10.6396|0,-0.5,10,-1,0,0,0,0,1,0,1,0|34.3204,12,-13.1396|-6,-0.5,7.5,-1,0,0,0,0,1,0,1,0|-3,0,-0.5,0,0,1,0,1,0,-1,0,0|39.3204,9,-13.6396|50.3204,12.5,-10.6396|-0.5,-3,-0.5,0,-1,0,0,0,1,-1,0,0|0,-2.5,0,1,0,0,-0,-0,-1,0,1,0|-6,0.9999,0,1,0,0,0,0,-1,0,1,0|0,2.5,0,-1,-0,-0,0,0,1,0,1,0|-6,-0.5,0,-1,0,0,0,0,1,0,1,0|-4,0,0,0,0,1,0,1,0,-1,0,0|45.3204,7.5,-20.6396|6,1,17|32,3.4999,5,1,0,0,0,0,-1,0,1,0|0,-4,7.5,-1,0,0,0,0,1,0,1,0|39.3204,12,-12.6396|-1,-0.5,8,-1,0,0,0,0,1,0,1,0|57.3204,21,-10.6396|-13,0.5,7,0,1,0,0,0,-1,-1,0,0|1,0.5,10,0,1,0,0,0,-1,-1,0,0|-10,-0.5001,-13.5,-1,0,0,0,0,1,0,1'
  1502. ..',0|45.3204,12,-11.1396|0,180,-90|-8,4.4999,9.5,0,0,1,-1,0,0,0,-1,0|-8,-3.5,-0.5,0,0,1,-1,0,0,0,-1,0|5,-4.5,8.5,0,-1,0,-1,0,0,0,0,-1|-8,-4.5,9.5,0,0,1,-1,0,0,0,-1,0|-8,2.9999,-0.5,0,0,1,-1,0,0,0,-1,0|-0.0001,4.4999,8.5,0,-1,0,-1,0,0,0,0,-1|29.3204,15,-13.6396|56.3204,12.5,-10.6396|39.3204,15,-13.6396|56.3204,16,-9.1396|2,16,2|-6,-0.5,8.5,0,0,1,-1,0,0,0,-1,0|0,-0.5,10.5,0,-1,0,-1,0,0,0,0,-1|0,0.4999,0.5,0,-1,0,-1,0,0,0,0,-1|39.3204,11,-13.6396|62.3204,12.5,-10.6396|4,0,0,0,0,-1,0,1,0,1,0,0|39.3204,13,-13.6396|64.8204,12,-21.1396|-5.5,-0.5,-3.5,-1,0,0,0,0,1,0,1,0|-1,0,-1.5,1,0,0,0,1,0,0,0,1|0,-3,2.5,-1,0,0,0,1,0,0,0,-1|-2.5,0.9999,0,0,0'
  1503. ..',1,0,1,0,-1,0,0|0.5,-0.2001,0,0,-1,0,0,0,1,-1,0,0|-5.5,0.4999,-3.5,1,0,0,0,0,-1,0,1,0|22.3204,7.5,-20.6396|40,1,17|20,0,0,0,0,1,0,1,0,-1,-0,-0|-3,0,0,0,0,1,0,1,0,-1,0,0|-17,-4,-8,-1,0,0,0,0,1,0,1,0|-7,16.9999,0.9999,0,1,0,1,0,0,0,0,-1|-12,-4,7.5,-1,0,0,0,0,1,0,1,0|-7,6.9999,0.9999,0,1,0,1,0,0,0,0,-1|-7,-4,-8,-1,0,0,0,0,1,0,1,0|-12,-4,-7.5,-1,0,0,0,0,1,0,1,0|-2,-4,-7.5,-1,0,0,0,0,1,0,1,0|-1.5,-9,6,0,1,0,0,0,1,1,0,0|-7,-4,8,-1,0,0,0,0,1,0,1,0|7,16.9999,0.9999,0,1,0,1,0,0,0,0,-1|7,6.9999,0.9999,0,1,0,1,0,0,0,0,-1|-7,-3,0.9999,0,1,0,1,0,0,0,0,-1|7,-3,0.9999,0,1,0,1,0,0,0,0,-1|8,-4,-7.5,-1,0,0,0,0,1,0,1,0|8,-4,7.5,-1,0,0,0,0,1,0,1,0|7,-13'
  1504. ..',0.9999,0,1,0,1,0,0,0,0,-1|13,-4,8,-1,0,0,0,0,1,0,1,0|-7,-13,0.9999,0,1,0,1,0,0,0,0,-1|0,-6,0,0,-1,0,0,0,1,-1,0,0|3,-4,-8,-1,0,0,0,0,1,0,1,0|13,-4,-8,-1,0,0,0,0,1,0,1,0|9,3.4999,-5,1,0,0,0,0,-1,0,1,0|18,-4,-7.5,-1,0,0,0,0,1,0,1,0|18,-4,7.5,-1,0,0,0,0,1,0,1,0|-2,-4,7.5,-1,0,0,0,0,1,0,1,0|-17,-4,8,-1,0,0,0,0,1,0,1,0|-20,0,0,-0,-0,-1,0,1,0,1,0,0|16,0,0,0,0,-1,0,1,0,1,0,0|0,-6,0,0,1,0,0,0,1,1,0,0|3,-4,8,-1,0,0,0,0,1,0,1,0|9,3.4999,5,1,0,0,0,0,-1,0,1,0|47.8204,12,-16.6396|7.5,-0.5,4,-1,0,0,0,0,1,0,1,0|2.5,0,-1,1,0,0,0,1,0,0,0,1|1.5,0.1999,-0.5,1,-0,-0,0,-0,-1,0,1,0|2.4999,0.4999,4,1,0,0,0,0,-1,0,1,0|56.3204,21.5,-9.1396|9,16,2|-11.5,-4.00'
  1505. ..'01,-6.5,0,1,0,-1,0,0,0,0,1|0.5,-2.5001,-5.5,0,1,0,-1,0,0,0,0,1|-28.1796,15,-5.1396|-28.1796,13,-5.1396|-0.5,1,-1,-1,0,0,0,-1,0,0,0,1|-29.1796,12,-5.1396|-1.5,0,-1,1,0,0,0,1,0,0,0,1|-28.1796,11,-5.1396|0,0,0.9999,1,-0,-0,0,-1,-0,0,-0,-1|-28.6796,12,-10.1396|-28.1796,9,-5.1396|-0.5,-3,-1,-1,0,0,0,-1,0,0,0,1|Beer|56.8204,10.4,-17.6396|-0.0001,-0.157,0|1,1.6,1|0.2,0.15,0.2|9.3204,12.5,-6.1396|0,-90,-90|-5,0.5,1,0,-1,0,-1,0,0,0,0,-1|64.8204,20,-8.6396|1,6,1|-6,-1.5001,0,0,0,1,0,1,0,-1,0,0|0,3,0,-1,-0,-0,0,0,1,0,1,0|0,-1.0001,-5,-1,0,0,0,0,1,0,1,0|-6,1.5,0,0,0,1,0,1,0,-1,0,0|-5.5,0.5,9,0,1,0,0,0,-1,-1,0,0|1.5,-8,-0.5,0,-1,0,0,0,1,-1,0,0|22'
  1506. ..'.3204,7.5,-6.1396|48.5204,12.5,-15.1396|-90,90,0|8,0.4,5|-0.5,-3,4,-0,-1,0,-0,-0,1,-1,-0,0|3,0.5,-2,0,0,-1,0,1,0,1,0,0|64.8204,12,-14.1396|1,8,6|-5.5,-0.5,3.5,-1,0,0,0,0,1,0,1,0|0,0,-3,-1,-0,-0,0,1,0,-0,-0,-1|-1,0,1.5,-1,0,0,0,1,0,0,0,-1|-12.6796,15,-1.6396|-12.6796,13,-1.6396|-12.6796,12,-0.6396|-12.6796,11,-1.6396|-17.6796,12,-1.1396|-4,0.4999,19.5,1,0,0,0,0,-1,0,1,0|-12.6796,9,-1.6396|1,0.4999,19,0,-1,0,0,0,-1,1,0,0|56.3204,8.5,-9.1396|-2.6796,15,-1.6396|-2.6796,13,-1.6396|-2.6796,12,-0.6396|6.5,0,1,-1,0,0,0,1,0,0,0,-1|11,-0.5,20,-1,0,0,0,0,1,0,1,0|11,0.4999,20,1,0,0,0,0,-1,0,1,0|-2.6796,11,-1.6396|-7.6796,12,-1.1396|6,0.4999,19.5'
  1507. ..',1,0,0,0,0,-1,0,1,0|-2.6796,9,-1.6396|65.3204,28,-20.6396|-4,1.5,-5,1,0,0,0,1,0,0,0,1|0,0.5,-5.5,-1,0,0,0,0,-1,0,-1,0|65.8204,16.5,-29.6396|3,1,5|-4.5,0,-9.5,1,0,0,0,1,0,0,0,1|1.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,1.5,0.5,0,1,0,1,0,0,0,0,-1|-2,-4.0001,1,0,-1,0,0,0,1,-1,0,0|1,3.9999,0,1,0,0,0,0,-1,0,1,0|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,-8,2.5,0,1,0,0,0,1,1,0,0|p3|-22.0796,3.5,-20.6396|11,0.8,7|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|-35.0001,0,-5,0,0,1,0,1,0,-1,0,0|-35.0001,0,5,0,0,1,0,1,0,-1,0,0|13.3204,3.5,-25.6396|70,7,1|64.8204,20,-32.6396|3.5,-8,-0.5,0,1,0,0,0,1,1,0,0|0.0509,0.4117,0.6745|0.3|0.1|65.5204,12.5,-29.6396|0,0,-90|1,0.4,5|0.5,0.5,0,'
  1508. ..'0,0,-1,-1,0,0,0,1,0|-0.5,0.5,-4.8,0,0,1,1,0,0,0,1,0|64.8204,21,-31.6396|11,-0.5001,-6,-1,0,0,0,0,1,0,1,0|4.5,-8,0.5,0,1,0,0,0,1,1,0,0|Door|button|0.9607,0.8039,0.1882|66.2204,11,-24.6396|5,6,1|0|0.949,0.9529,0.9529|64.8204,11,-24.6396|0,0,0.4999,-1,0,0,0,1,0,0,0,-1|-0.0001,-1,2.5,-1,0,0,0,1,0,0,0,-1|63.8204,11,-24.6396|7.5,0.4999,-4,0,1,0,0,0,-1,-1,0,0|65.5204,12.5,-21.1396|1,0.4,2|-0.3,0.5,-1.5,0,1,0,-1,0,0,0,0,1|65.8204,12,-18.6396|3,8,3|1,2,0.5,1,0,0,0,-1,0,0,0,-1|65.8204,12,-9.6396|2,-0.5,1,0,0,-1,0,1,0,1,0,0|-1,2.9999,0.5,-1,0,0,0,1,0,0,0,-1|-3.5,0.5,0,0,0,1,0,1,0,-1,0,0|1,2.9999,0.5,-1,0,0,0,1,0,0,0,-1|0,0,-1.5,-1,-0,-0,0,1,0,-'
  1509. ..'0,-0,-1|1,0,3,-1,0,0,0,1,0,0,0,-1|8,2.9999,1,0,0,-1,0,1,0,1,0,0|-4.5,-0.5,8,-1,0,0,0,0,1,0,1,0|8,-3.5,1,0,0,-1,0,1,0,1,0,0|-3.5,-8,0.5,0,-1,0,0,0,1,-1,0,0|3.9999,-8,0.5,-0,-1,0,-0,-0,1,-1,-0,0|-3.5,-3.5,0,0,0,1,0,1,0,-1,0,0|-0.5,-0.2,-1,0,-1,0,0,0,1,-1,0,0|75.8204,12,-29.6396|0,-3,-2.5,1,0,0,0,1,0,0,0,1|1.5,-0.5,0,-1,0,0,0,0,1,0,1,0|2.5,0.9999,0,0,0,-1,0,1,0,1,0,0|1.5,0.4999,0,1,0,0,0,0,-1,0,1,0|67.8204,14,-31.6396|1,12,1|-3.5,-4.5001,0.5,-1,0,0,0,1,0,0,0,-1|-1.5,-4.5001,0,0,0,1,0,1,0,-1,0,0|-1.5,-0.5,0,0,0,1,0,1,0,-1,0,0|-1.5,1.5,0,0,0,1,0,1,0,-1,0,0|-1.5,5.4999,0,0,0,1,0,1,0,-1,0,0|-1.5,-2.5,0,0,0,1,0,1,0,-1,0,0|-0.5,0.4999,-2,1,0,'
  1510. ..'0,0,0,-1,0,1,0|Left|0.1568,0.498,0.2784|75.8204,18.6,-20.1396|Backward|74.8204,18.2,-21.1396|1,0.4,4|78.8204,21,-26.6396|1,8,3|-2.5,1,1,-1,0,0,0,1,0,0,0,-1|1,-1,-1.0001,1,0,0,0,0,1,0,-1,0|-1,-1,-1.0001,1,0,0,0,0,1,0,-1,0|1,-2.5,-3.0001,-1,0,0,0,0,1,0,1,0|0.5,0.5,-6,0,1,0,0,0,-1,-1,0,0|69.8204,18.5,-31.6396|3,1,1|-0.5,4.5,0,0,0,1,0,1,0,-1,0,0|71.3204,21.5,-32.6396|12,3,1|0,1.5,0,1,0,0,0,0,-1,0,1,0|3,-1.0001,-5,0,-1,0,0,0,1,-1,0,0|-6,0,0,-0,-0,-1,0,1,0,1,0,0|0,1.5,0.4999,-1,0,0,0,1,0,0,0,-1|0,-1.0001,1.5,0,-1,0,0,0,1,-1,0,0|75.8204,15,-24.6396|76.5204,19,-18.1396|2,1.6,2|0,0.8,0,-1,-0,-0,0,0,1,0,1,0|-0.5,0.1999,0,0,-1,0,0,0,-1,1,0,0|-2'
  1511. ..',0.5,0.6999,-1,0,-0,0,0,-1,0,-1,0|0.5,0.1999,0,0,-1,0,0,0,-1,1,0,0|71.8204,16.5,-28.1396|0,90,-90|1,2,1|-2.0001,0,1.5,0,0,1,-1,0,0,0,-1,0|0.8431,0.7725,0.6039|71.1204,20.7,-21.1396|1,0.4,1|70.3204,12,-32.6396|1,10,12|-4,-4.5,-2.5,1,0,0,0,1,0,0,0,1|0.5,-4.8001,-2.5,0,-1,0,1,0,0,0,0,1|-4,4.4999,-2.5,1,0,0,0,1,0,0,0,1|0,-5,0,1,0,0,-0,-0,-1,0,1,0|-12,-2,-4.5,-1,0,0,0,0,1,0,1,0|0,5,0,-1,-0,-0,0,0,1,0,1,0|-1,-1.5001,0,0,1,0,0,0,1,1,0,0|0,-3.0001,5.4999,-1,0,0,0,0,1,0,1,0|0.5,-4.5,-0.5,1,0,0,0,1,0,0,0,1|-1.5,-2,-0.5,1,0,0,0,1,0,0,0,1|0.5,-0.5,-0.5,1,0,0,0,1,0,0,0,1|4.4999,-4.5,-2.5,1,0,0,0,1,0,0,0,1|0.5,3.4999,-0.5,1,0,0,0,1,0,0,0,1|-4.5,-8'
  1512. ..',-0.5,0,1,0,0,0,1,1,0,0|2.4999,-2,-0.5,1,0,0,0,1,0,0,0,1|5.4999,0,-2.5,1,0,0,0,1,0,0,0,1|0.5,-2.5,-0.5,1,0,0,0,1,0,0,0,1|3.4999,-8,-0.5,0,1,0,0,0,1,1,0,0|-5.5,0,-2.5,1,0,0,0,1,0,0,0,1|1.9999,4.4999,-2.5,1,0,0,0,1,0,0,0,1|69.3204,26.5,-28.1396|8,1,10|0,0,5,1,0,0,0,1,0,0,0,1|-2.5,-1.5,-4,0,0,1,0,1,0,-1,0,0|7.5,0.5,-1.5,0,-1,0,0,0,-1,1,0,0|79.8204,24,-17.6396|1,5,2|-3,-0.5,1,0,1,0,0,0,1,1,0,0|0.5,3,1,0,0,-1,0,1,0,1,0,0|77.8204,24,-17.6396|-3,-0.5,-1,0,1,0,0,0,1,1,0,0|77.8204,20,-25.1396|1,2,6|0,0,3,1,0,0,0,1,0,0,0,1|-0.5,0.5,-4.5,1,0,0,0,0,-1,0,1,0|AircraftSeat|72.3204,18.4,-21.1396|Thrust|0,0.1599,0|Direction|1000|-101.1348,15.6172,-55'
  1513. ..'.0475,0.2775,0.9499,0.1432,-0.9575,0.2612,0.1226,0.0791,-0.1713,0.982|Speed|TurnSpeed|MaxSpeed|TiltFactor|40|Acceleration|LiftTrim|16|OriginCFrame|19,0.6,-37,-1,0,0,0,1,0,0,0,-1|-75,17.6,-23,1,0,0,0,1,0,0,0,1|39,1,-20,1,0,-0.0001,-0.0001,0.9999,0,0,-0.0001,0.9999|39,0.9885,-20,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|83,1,-94,1,0,0,0,1,0,0,0,1|60.5001,15.9642,-4,0.9999,0,-0.0001,-0.0001,1,-0.0001,0,0,0.9999|51.5,16.0649,-109,0.9999,0,-0.0001,-0.0001,1,-0.0001,0,0,0.9999|-32.5,16.0382,41,0.9999,0,-0.0001,-0.0001,1,-0.0001,0,0,0.9999|-11.5001,16.0899,-145,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|-79.5,16.1485,-53,1,-0.0001,0,0,1,-0.0001,-0.0001,'
  1514. ..'0,1|144.5054,16.218,-94.7108,0.9999,-0.0006,-0.0004,0.0005,0.9998,-0.016,0.0003,0.0159,0.9998|README|-192,17.6,51,1,0,0,0,1,0,0,0,1|-33.3578,23.4894,-49.2042,0.7476,0.0214,-0.6638,-0.0077,0.9996,0.0236,0.664,-0.0127,0.7476|29,18.7058,78.869,1,0,0,-0.0001,0.9998,0.018,-0.0001,-0.0181,0.9998|-18,17.8,-18,1,0,0,0,1,0,0,0,1|-178.4,4.9999,-167,-1.0001,0,0,-0.0001,1,0,0,-0.0001,-1|-17.864,17.7048,-18.1831,0.9999,-0.0006,0.0001,0.0004,0.9998,0.0179,-0.0002,-0.018,0.9998|-116.7152,17.505,-80.0738,0.9996,0.0003,-0.026,0.0001,0.9998,0.018,0.0259,-0.0181,0.9995|ToolScript|Aircraft|Controls|Title|0,0,0.6999,0|0,200,0,20|0,0,1|0.8117,0.8117,0.811'
  1515. ..'7|Kiki123456789\'s Attack Fighter|0.7333,0.8901,1|9|Y|0,0,1,0|0,20,0,20|0.0156,0.6862,0.9254|0.8156,0.8156,0.8156|0.7372,0.8941,1|12|Description|1,0,0,0|0,180,0,20|0.1294,0.3294,0.7254|- Start Up|X|0,0,2,0|0.8196,0.8196,0.8196|0.7411,0.898,1|- Turn Off|W|0,0,3,0|0.8235,0.8235,0.8235|0.745,0.9019,1|- Faster|S|0,0,4,0|0.8274,0.8274,0.8274|0.749,0.9058,1|- Slower|\'|0,0,5,0|0.8313,0.8313,0.8313|0.7529,0.9098,1|14|- Regen Tool (Apostrophe)|L|0,0,6,0|- Level Out|0,0.3999,-0.5,1,0,0,0,0,-1,0,1,0|69.8204,14.5,-31.6396|-0.5,0.5,0,0,0,1,0,1,0,-1,0,0|67.8204,16.5,-28.1396|-2.5,0,-9.5,0,-1,0,1,0,0,0,0,1|70.8204,15.5,-18.6396|7,1,3|3.5,0,0,0,0,1'
  1516. ..',0,1,0,-1,-0,-0|-1,3.5,0,0,0,1,0,1,0,-1,0,0|-1,-1,-3,0,1,0,0,0,1,1,0,0|1,-1,-3,0,1,0,0,0,1,1,0,0|0.5,-0.5,-1,-1,0,0,0,0,1,0,1,0|0,3.5,0,1,0,0,0,0,-1,0,1,0|-1,-1,-3,-0,-1,0,-0,-0,1,-1,-0,0|1,-1,-3,-0,-1,0,-0,-0,1,-1,-0,0|-3.5,0,0,-0,-0,-1,0,1,0,1,0,0|1.4999,3.5,0,0,0,-1,0,1,0,1,0,0|71.8204,14,-31.6396|79.8204,24,-23.6396|69.8204,12.5,-31.6396|-0.5,-1.5,0,0,0,1,0,1,0,-1,0,0|77.8204,24,-23.6396|3,-0.5,-1,0,-1,0,0,0,1,-1,0,0|-0.5,3,-1,0,0,1,0,1,0,-1,0,0|69.8204,24,-8.6396|1,2,11|0,0,5.5,1,0,0,0,1,0,0,0,1|-3,0,-1,1,0,0,0,1,0,0,0,1|-12,-0.5,-1,-1,0,0,0,0,1,0,1,0|70.3204,16.5,-17.6396|12,1,19|3,-1.0001,4,1,0,0,0,0,1,0,-1,0|-11.5,-3.0001,-6,'
  1517. ..'0,-1,0,0,0,1,-1,0,0|-0.0001,-0.2001,-2.9001,-1,0,0,0,0,1,0,1,0|0,0,-9.5,-1,-0,-0,0,1,0,-0,-0,-1|-4.0001,0,2.5,-1,0,0,0,1,0,0,0,-1|0,-1,-1.5001,0,-1,0,0,0,1,-1,0,0|-5,3.9999,1,1,0,0,0,0,-1,0,1,0|-5.5001,0.9999,7,1,0,0,0,0,-1,0,1,0|-7.5,-0.5001,-5.0001,0,-1,0,0,0,1,-1,0,0|4.4999,3.9999,1,1,0,0,0,0,-1,0,1,0|6,0,0,0,0,1,0,1,0,-1,-0,-0|-2.0001,0,3,0,0,1,0,1,0,-1,0,0|74.3204,7.5,-29.6396|4,1,5|3.9999,0,0,0,0,-1,0,1,0,1,0,0|78.3204,16.5,-20.6396|4,1,13|-1.5,4.5,3,-1,0,0,0,1,0,0,0,-1|76.3204,24,-29.6396|7,2,2|3,3,-1.5001,1,0,0,0,1,0,0,0,1|9,-0.5,5.5,-1,0,0,0,0,1,0,1,0|0.5,3,0,1,0,0,0,0,-1,0,1,0|-3,0,5.5,-1,0,0,0,1,0,0,0,-1|68.3204,7.5,-29.63'
  1518. ..'96|8,1,5|-3.5,-6,2,-1,0,0,0,0,1,0,1,0|3.5,-4,0,-1,0,0,0,0,1,0,1,0|Stop|75.3204,18.2,-25.1396|0,0.4999,0,0,-1,0,0,0,-1,1,0,0|79.8204,20,-25.1396|71.3204,18.5,-32.6396|-0.5,4.5,-0.5,1,0,0,0,1,0,0,0,1|20,0.5,-1.5001,-1,0,0,0,-1,0,0,0,1|1.5,0,-0.5,1,0,0,0,1,0,0,0,1|78.8204,21,-20.6396|11,8,1|-5.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,-0.5001,0,-1,0,0,0,0,1,0,1,0|5.5,0,0,0,0,1,0,1,0,-1,-0,-0|0.5,0.5,0,0,1,0,0,0,-1,-1,0,0|75.3204,17.5,-25.1396|2,1,2|Up|0.898,0.8941,0.8745|75.5204,19.5,-18.1396|69.8204,10.5,-31.6396|-0.5,-3.5,0,0,0,1,0,1,0,-1,0,0|0.4999,-3.5,0,0,0,-1,0,1,0,1,0,0|-0.5,-1.5,-0.5,0,0,1,0,1,0,-1,0,0|69.8204,16.5,-31.6396|-0.5,2.4999,0,0,0'
  1519. ..',1,0,1,0,-1,0,0|74.3204,16.5,-29.6396|71.1204,19.2,-21.1396|0,0.8,1,0,-1,0,-1,0,0,0,0,-1|72.3204,17.2,-21.1396|2,0.5,-3.5,0,1,0,0,0,-1,-1,0,0|0,-0.4001,-0.5,1,0,0,0,0,1,0,-1,0|Right|75.8204,18.6,-22.1396|71.8204,17.8,-21.1396|2,0.8,1|Foward|76.8204,19,-21.1396|0,0.1999,0,0,-1,0,0,0,-1,1,0,0|70.8204,25.5,-20.6396|25,1,13|1.5,-0.5,-7.5,0,1,0,0,0,1,1,0,0|78.8204,25.5,-20.6396|13,1,3|1,3,1,0,-1,0,-1,0,0,0,0,-1|-6,4,0,1,0,0,0,0,-1,0,1,0|0,0,6.5,-1,0,0,0,1,0,0,0,-1|69.3204,26.5,-13.1396|76.3204,20,-29.1396|6,6,2|15,-3,-1.5001,0,-1,0,1,0,0,0,0,1|-2.0001,0.5,-8.5,0,1,0,0,0,-1,-1,0,0|1.9999,0.5,0.5,0,1,0,0,0,-1,-1,0,0|69.8204,24,-32.6396|12,-'
  1520. ..'0.5,-1,-1,0,0,0,0,1,0,1,0|76.8204,18.6,-21.1396|69.8204,8.5,-31.6396|-0.5,-5.5,0,0,0,1,0,1,0,-1,0,0|1.4999,0.4999,-2,1,0,0,0,0,-1,0,1,0|75.1204,12.5,-29.6396|2.5,1.4999,0.3,0,0,-1,-1,0,0,0,1,0|-0.5,0.5,0,0,0,1,1,0,0,0,1,0|76.3204,18.2,-21.1396|4,0.4,2|1,0.4999,0.5,1,0,0,0,0,-1,0,1,0|-0.5,0.2,1,0,-1,0,0,0,-1,1,0,0|0,-0.2001,-0.5,-1,0,0,0,0,1,0,1,0|-0.5,0.2,-1,0,-1,0,0,0,-1,1,0,0|75.8204,17.5,-20.1396|6,1,3|5.5,0.5,-2.5,0,1,0,0,0,-1,-1,0,0|-2.5001,0.5,0.5,0,1,0,0,0,-1,-1,0,0|-1,0.1999,1,0,-1,0,0,0,-1,1,0,0|76.3204,24,-11.6396|-9,-0.5,5.5,-1,0,0,0,0,1,0,1,0|70.8204,1.5,-7.6396|5,1,1|70.3204,7.5,-17.6396|-5.0001,-4,-8,-1,0,0,0,0,1,0,1,0|'
  1521. ..'7,-1,-3.5001,0,-1,0,0,0,1,-1,0,0|0,0,9.5,1,0,0,0,1,0,0,0,1|-3.5001,3,-0.5,1,0,0,0,1,0,0,0,1|-5.5001,-4,-3.5,-1,0,0,0,0,1,0,1,0|-7,-3,-5.5001,0,-1,0,0,0,1,-1,0,0|3,-2,-4.5001,0,1,0,0,0,1,1,0,0|-5.5001,-4,3.5,-1,0,0,0,0,1,0,1,0|-0.5,3,-2.5,0,0,1,0,1,0,-1,0,0|-7,-3,-4.5001,0,-1,0,0,0,1,-1,0,0|0.9999,-8,8.5,-0,-1,0,-0,-0,1,-1,-0,0|-0.5,-3.5,1,-1,0,0,0,0,1,0,1,0|-5,-4,1,-1,0,0,0,0,1,0,1,0|0,-1,-2.5,0,1,0,0,0,1,1,0,0|5.4999,-4,-3.5,-1,0,0,0,0,1,0,1,0|-9,-1,-2.5,0,1,0,0,0,1,1,0,0|0,-1,-3.5001,0,-1,0,0,0,1,-1,0,0|-7,-3,5.4999,0,-1,0,0,0,1,-1,0,0|-2,-1,-3.5001,0,-1,0,0,0,1,-1,0,0|2,-1,-2.5,0,1,0,0,0,1,1,0,0|-0.5001,-3.5,-8,-1,0,0,0,0,1,0,1,0|'
  1522. ..'-7,-3,4.0999,0,-1,0,0,0,1,-1,0,0|4.4999,-4,-8,-1,0,0,0,0,1,0,1,0|1.9999,0,2.5,-1,0,0,0,1,0,0,0,-1|9,-1,-3.5001,0,-1,0,0,0,1,-1,0,0|-3,-3.5,-12,0,-1,0,0,0,1,-1,0,0|7.9999,0,3,0,0,-1,0,1,0,1,0,0|73.8204,9,-10.6396|-1,-3,-1,0,0,1,0,1,0,-1,0,0|76.8204,7.5,-24.6396|74.8204,5,-20.6396|25,4,3|0.5,-0.5,9,0,1,0,0,0,1,1,0,0|79.8204,4.5,-24.6396|-0.5,1,1.9999,0,0,1,-1,0,0,0,-1,0|73.8204,9,-19.6396|78.8204,6.5,-21.6396|1,5,5|-1,1.9999,2.5,0,1,0,1,0,0,0,0,-1|0,1,2.5,0,1,0,1,0,0,0,0,-1|1,-0.0001,2.5,0,1,0,1,0,0,0,0,-1|-2.5,-4.5,2,0,0,1,1,0,0,0,1,0|2,-1.0001,2.5,0,1,0,1,0,0,0,0,-1|70.8204,15.5,-9.6396|0.5,-0.5,8,-1,0,0,0,0,1,0,1,0|77.8204,6.5,-24.6'
  1523. ..'396|-0.5,-1,-0.0001,0,0,1,-1,0,0,0,-1,0|78.8204,6.5,-27.6396|2,-1.0001,-2.5,0,1,0,-1,0,0,0,0,1|70.8204,5.5,-7.6396|67.8204,4.5,-7.6396|1,7,1|-2.5,2.9999,0,0,0,1,0,1,0,-1,0,0|-2.5,-1,0,0,0,1,0,1,0,-1,0,0|67.8204,14,-17.6396|0,-90,180|78.8204,5.5,-24.6396|-0.5,0,1,0,0,1,-1,0,0,0,-1,0|13.3204,0.5,-20.6396|70,1,9|35,0,0,0,0,1,0,1,0,-1,-0,-0|0,3,10,1,0,0,0,-1,0,0,0,-1|-35,0,0,-0,-0,-1,0,1,0,1,0,0|0,-0.4001,-3,-1,0,0,0,0,1,0,1,0|58.3204,3.5,-20.6396|11,7,20|0,-3.5,0,1,0,0,-0,-0,-1,0,1,0|2,-0.5,0,0,-1,0,0,0,1,-1,0,0|0,0,10,1,0,0,0,1,0,0,0,1|35,0,-5,0,0,-1,0,-1,0,-1,0,0|35,0,5,0,0,-1,0,-1,0,-1,0,0|75.8204,12,-21.1396|5.5,-0.5,-3.5,-1,0,0,0,0'
  1524. ..',1,0,1,0|0.5,0,-1.5,1,0,0,0,1,0,0,0,1|67.8204,9,-19.6396|1.5,-3,-1,0,0,-1,0,1,0,1,0,0|73.8204,4.5,-7.6396|2.5,-1,0,0,0,-1,0,1,0,1,0,0|12.5,0.5,-1,0,0,-1,0,-1,0,-1,0,0|2.5,2.9999,0,0,0,-1,0,1,0,1,0,0|73.8204,14,-10.6396|67.8204,14,-19.6396|1.5,2,-1,0,0,-1,0,-1,0,-1,0,0|75.8204,12,-14.1396|5.5,-0.5,3.5,-1,0,0,0,0,1,0,1,0|0.5,0,1.5,-1,0,0,0,1,0,0,0,-1|75.3204,12,-18.6396|2,8,3|0.5,0.1999,1,0,-1,0,-1,0,0,0,0,-1|1,2.9999,0.4999,-1,0,0,0,1,0,0,0,-1|-1,2.9999,0.4999,-1,0,0,0,1,0,0,0,-1|70.8204,3.5,-7.6396|67.8204,14,-10.6396|-3,-0.5,-1,0,-1,0,0,0,1,-1,0,0|75.1204,12.5,-21.1396|Down|75.5204,18.5,-18.1396|79.8204,20,-16.1396|1.5,0.5,4.5,-1,0,'
  1525. ..'0,0,0,-1,0,-1,0|78.8204,21,-14.6396|2.5,1,1,-1,0,0,0,1,0,0,0,-1|-1,-1,-1.0001,1,-0,0,0,-0,1,0,-1,0|1,-1,-1.0001,1,-0,0,0,-0,1,0,-1,0|3,-3.0001,1,-1,0,0,0,1,0,0,0,-1|-6,-0.5001,0,-1,0,0,0,0,1,0,1,0|0.5,0.5,6,0,1,0,0,0,-1,-1,0,0|77.8204,20,-16.1396|-0.5,0.5,4.5,-1,0,0,0,0,-1,0,-1,0|Seat|70.3204,17.2,-14.7396|70.3204,19.2,-15.9396|0,0.8,-1,0,1,0,-1,0,0,0,0,1|70.3204,20.7,-15.9396|70.3204,17.8,-15.2396|0,0.2,-0.5,-1,0,0,0,0,-1,0,-1,0|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|0,-0.2,-0.5,1,0,0,0,0,1,0,-1,0|70.3204,18.4,-14.7396|67.8204,9,-17.6396|1.5,-3,1,0,0,-1,0,1,0,1,0,0|67.8204,14,-8.6396|-3,-0.5,1,0,-1,0,0,0,1,-1,0,0|1.5,2,1,0,0,-1,0,-1,0,-1,0,0|'
  1526. ..'13.3204,3.5,-15.6396|0,3.5,0,-1,-0,-0,0,0,1,0,1,0|-32,-0.5,5,-1,0,0,0,0,1,0,1,0|73.3204,19.5,-11.1396|0,1,3,1,0,0,0,0,-1,0,1,0|74.8204,11,-24.6396|1.4999,-0.3001,-1,0,-1,0,1,0,0,0,0,1|0,0,-0.5,1,0,0,0,1,0,0,0,1|75.8204,11,-24.6396|76.8204,11,-24.6396|-0.5,-2.0001,-4.5,0,0,1,-1,0,0,0,-1,0|Big Door|LampScript|Monior|65.5204,12.5,-14.1396|3,0.4,4|Lock2|70.8204,11.5,-18.6396|7,7,1|-1,-0.5,0,0,0,1,0,1,0,-1,0,0|1.4999,-0.5,0,0,0,-1,0,1,0,1,0,0|Lock1|70.8204,11.5,-9.6396|Head4|66.8204,11.5,-16.9396|60|1,-0.5,1.4999,0,1,0,1,0,0,0,0,-1|Head3|66.8204,11.5,-11.3396|Head2|66.8204,11.5,-20.3396|1,-0.5,-1.5,0,1,0,-1,0,0,0,0,1|Head1|66.8204,11.5,-7'
  1527. ..'.9396|73.8204,9,-17.6396|67.8204,9,-10.6396|76.3204,20,-12.1396|0.5,-1.0001,-0.0001,-1,0,0,0,0,1,0,1,0|73.3204,18,-13.6396|2,2,3|0.6274,0.3725,0.2078|512|73.3204,19.2,-13.6396|3,0.4,2|0,1,0,0,1,0,0,0,-1,-1,0,0|69.3204,19.2,-11.1396|6,0.4,2|75.3204,12,-9.6396|5,-0.5,8,-1,0,0,0,0,1,0,1,0|-1,2,0.5,1,0,0,0,-1,0,0,0,-1|3.5,0.5,0,0,0,-1,0,1,0,1,0,0|-0.5,0,3,-1,0,0,0,1,0,0,0,-1|3.5,-3.5,0,0,0,-1,0,1,0,1,0,0|70.3204,18,-11.1396|-1,-0.2001,0,0,-1,0,0,0,1,-1,0,0|0,0.5,6.5,0,1,0,0,0,-1,-1,0,0|67.8204,9,-8.6396|71.3204,21.5,-8.6396|-3,-1.0001,-5,0,-1,0,0,0,1,-1,0,0|71.3204,18.5,-8.6396|0,-1.5001,0,-1,0,0,0,0,1,0,1,0|73.8204,14,-17.6396|-1,2,1,0,'
  1528. ..'0,1,0,-1,0,1,0,0|73.8204,14,-19.6396|73.8204,9,-8.6396|73.8204,14,-8.6396|91.3204,15,-29.6396|30,2,3|0,0,1.5,1,0,0,0,1,0,0,0,1|0,-1,0.5,-1,0,0,0,0,1,0,1,0|91.3204,9,-34.6396|30,3,10|91.3204,9,-32.1396|30,2,10|-0.0001,0,1.4999,1,0,0,0,-1,0,0,0,-1|91.3204,16.5,-29.1396|30,1,4|0,-3.0001,15,0,1,0,0,0,1,1,0,0|-15,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,0.9999,8.5,0,0,-1,0,1,0,1,0,0|15,0,0,0,0,1,0,1,0,-1,-0,-0|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|13,0,-6.5,1,0,0,0,1,0,0,0,1|0,-1,-0.5,-1,0,0,0,0,1,0,1,0|91.3204,15.5,-32.1396|1.9999,-1,-2.5,0,0,-1,1,0,0,0,-1,0|99.3204,2,-12.1396|4,16,2|0,-8,-1.5001,-1,0,0,0,0,1,0,1,0|91.3204,15.5,-9.1396|0,-0.5,1.5,-1,0,0,0,'
  1529. ..'1,0,0,0,-1|91.3204,9,-9.1396|0,0,1.4999,1,0,0,0,-1,0,0,0,-1|0,-1.5,0,1,0,0,0,0,1,0,-1,0|99.3204,2,-29.1396|91.3204,15,-11.6396|91.3204,16.5,-12.1396|0.5,0.9999,-8.5,0,0,-1,0,1,0,1,0,0|0,0,2,1,0,0,0,1,0,0,0,1|2,0,-6.5,1,0,0,0,1,0,0,0,1|13,0,6.5,-1,0,0,0,1,0,0,0,-1|6,0,5.5,0,0,-1,0,1,0,1,0,0|-0.0001,-1,-0.5,1,0,0,0,0,1,0,-1,0|93.3204,16.5,-20.6396|26,1,13|-13,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,0.9999,0,0,0,-1,0,1,0,1,0,0|0,0,6.5,1,0,0,0,1,0,0,0,1|-2.0001,0,-2,1,0,0,0,1,0,0,0,1|13,0,0,0,0,1,0,1,0,-1,-0,-0|2,0,0,0,0,-1,0,1,0,1,0,0|94.8204,19.5,-12.1396|4,35,5|0,-17.5,0,1,0,0,-0,-0,-1,0,1,0|0,-0.5,1,1,0,0,0,-1,0,0,0,-1|15,5.5,0,0,-1,0,0,0,-1,1,'
  1530. ..'0,0|91.3204,9,-6.6396|91.8204,3.5,-20.6396|31,1,31|-15.0001,-14,4.9999,0,-1,0,-1,0,0,0,0,-1|0,0,-15.5,-1,-0,-0,0,1,0,-0,-0,-1|-8.5,-8,0,-1,0,0,0,0,1,0,1,0|8.5,-8,-0.0001,-1,0,0,0,0,1,0,1,0|0,-1.5,14.5,-1,0,0,0,0,1,0,1,0|8.5,7.5,1,-1,0,0,0,1,0,0,0,-1|-8.5,7.5,1,-1,0,0,0,1,0,0,0,-1|0.5,-14,4.9999,0,-1,0,-1,0,0,0,0,-1|-1,13,2.4999,1,-0,0,0,-1,0,0,-0,-1|-7,13,2.4999,1,-0,0,0,-1,0,0,-0,-1|15,-5,-9.5,0,1,0,0,0,1,1,0,0|0,0,15.5,1,0,0,0,1,0,0,0,1|0,1.4999,1.5,1,0,0,0,-1,0,0,0,-1|15,-14,4.9999,0,1,0,1,0,0,0,0,-1|-0.5001,-14,4.9999,0,1,0,1,0,0,0,0,-1|15,-5,9.5,0,1,0,0,0,1,1,0,0|94.8204,19.5,-29.1396|106.8204,9,-6.6396|1,3,10|106.8204,15.5,-32.'
  1531. ..'1396|1,2,3|0,0,10.5,1,0,0,0,-1,0,0,0,-1|0,4.9999,2,1,0,0,0,0,-1,0,1,0|106.3204,9,-20.6396|1,-3.5,1,0,0,-1,1,0,0,0,-1,0|-1,-3.5,1,0,0,1,-1,0,0,0,-1,0|1,-3.5,-1,0,0,-1,1,0,0,0,-1,0|-1,-3.5,-1,0,0,1,-1,0,0,0,-1,0|106.8204,15.5,-20.6396|2.5,4,8.5,0,0,-1,0,1,0,1,0,0|0,4.9999,-9.5,1,0,0,0,0,-1,0,1,0|106.8204,15.5,-9.1396|0,4.9999,-2,-1,0,0,0,0,-1,0,-1,0|0,0,-10.5,-1,0,0,0,-1,0,0,0,1|106.3204,12.5,-20.6396|2,3,13|5.5,-3.5,-1,0,1,0,-1,0,0,0,0,1|-5.5,-3.5,-1,0,1,0,-1,0,0,0,0,1|0,1.9999,0,1,0,0,0,0,-1,0,1,0|0.5,3.4999,-3,1,0,0,0,1,0,0,0,1|0.5,-1.5,0,-1,0,0,0,0,1,0,1,0|0,0,-6.5,-1,-0,-0,0,1,0,-0,-0,-1|0.5,3.4999,3,-1,0,0,0,1,0,0,0,-1|115.3204,1'
  1532. ..'0,-26.1396|109.8204,10,-26.1396|-2,-8,1.4999,0,0,1,0,1,0,-1,0,0|-3,1,-3,0,-1,0,1,0,0,0,0,1|0,-0.2001,0,0,-1,0,0,0,1,-1,0,0|105.1204,10,-26.1396|106.8204,9,-30.1396|1,10,6|106.8204,9,-11.1396|0,-1.5,-9.5,-1,0,0,0,0,1,0,1,0|2.5,-2.5,-1,0,0,-1,0,1,0,1,0,0|1,-8,5.4999,-1,0,0,0,0,1,0,1,0|109.8204,11.5,-29.1396|5,11,2|0,-5.5,0,1,0,0,0,0,1,0,-1,0|0,5.5,0,-1,-0,-0,0,0,1,0,1,0|0,15,2.5,0,1,0,1,0,0,0,0,-1|-0.5,-4,8.5,0,0,1,0,1,0,-1,0,0|0,-5.5,0,1,0,0,-0,-0,-1,0,1,0|0,-5.5,2.4999,0,-1,0,-1,0,0,0,0,-1|-0.5,2.4999,-1,0,0,1,0,1,0,-1,0,0|106.8204,9,-34.6396|0,0,3,1,0,0,0,-1,0,0,0,-1|115.3204,8,-15.1396|109.8204,8,-15.1396|2,-8,3.4999,0,0,-1,0,1,0,1'
  1533. ..',0,0|-3,-1,3,0,-1,0,-1,0,0,0,0,-1|105.1204,8,-15.1396|0,-4.5,0,0,-1,0,0,0,1,-1,0,0|106.3204,5.5,-20.6396|13,3,2|6.5,0,0,0,0,1,0,1,0,-1,-0,-0|0.5,-3.5001,3,-1,0,0,0,1,0,0,0,-1|0,-2.0001,0,0,1,0,0,0,1,1,0,0|-5.5,-3.5,1,1,0,0,0,-1,0,0,0,-1|5.5,-3.5,1,1,0,0,0,-1,0,0,0,-1|-6.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,-3.5001,-3,1,0,0,0,1,0,0,0,1|115.3204,10,-15.1396|109.8204,10,-15.1396|2,-8,1.4999,0,0,-1,0,1,0,1,0,0|-3,1,3,0,-1,0,-1,0,0,0,0,-1|0,0,-1,1,0,0,0,1,0,0,0,1|105.1204,10,-15.1396|0.9999,0,0,0,0,-1,0,1,0,1,0,0|115.3204,8,-26.1396|109.8204,8,-26.1396|-2,-8,3.4999,0,0,1,0,1,0,-1,0,0|0,0,0.9999,-1,0,0,0,1,0,0,0,-1|-3,-1,-3,0,-1,0,1,0,0,0,0,1|10'
  1534. ..'5.1204,8,-26.1396|-1,0,0,0,0,1,0,1,0,-1,0,0|109.8204,11.5,-12.1396|117.8204,11.5,-12.1396|4,11,11|-2.5,0,0,0,0,1,0,-1,0,1,0,0|0,2.5,2.4999,-1,0,0,0,1,0,0,0,-1|115.3204,3.5,-12.1396|4,16,5|117.8204,11.5,-29.1396|115.3204,3.5,-29.1396|0,-2.5,5.4999,-1,0,0,0,1,0,0,0,-1|0,-8,1.5,-1,0,0,0,0,1,0,1,0|-0.5,-5.5,-1,0,0,1,0,1,0,-1,0,0|-23.1796,3.5,-20.6396|7,1,7|0,0,0.6|7|25|0.9725,0.9725,0.9725;0,3>2>20,7>13>6,7>14>27,8>13>6,8>14>20,9>13>6,9>14>5,12>13>11,12>14>27,13>13>11,13>14>20,14>13>11,14>14>15,16>13>15,16>14>27,17>13>15,17>14>20,21>13>20,21>14>4,22>13>20,22>14>5,23>13>20,23>14>51,24>13>20,24>14>39,25>13>20,25>14>10,26>13>20,26>14>53,28>'
  1535. ..'13>27,28>14>4,29>13>27,29>14>5,30>13>27,30>14>37,31>13>27,31>14>51,32>13>27,32>14>39,33>13>27,33>14>18,34>13>27,34>14>46,35>13>27,35>14>10,36>13>27,36>14>53,41>13>40,41>14>27,42>13>40,42>14>20,45>13>43,45>14>27,49>13>48,49>14>27,50>13>48,50>14>20,52>13>51,52>14>39,55>13>54,55>14>27,56>13>54,56>14>40,57>13>54,57>14>20,60>13>59,60>14>67,61>13>59,61>14>69,63>13>62,63>14>67,64>13>62,64>14>69,65>13>62,65>14>59,66>13>62,66>14>71,72>13>71,72>14>110,73>13>71,73>14>113,74>13>71,74>14>252,75>13>71,75>14>275,76>13>71,76>14>67,77>13>71,77>14>264,78>13>71,78>14>69,80>13>79,80>14>67,83>13>81,83>14>108,84>13>81,84>14>185,87>13>85,87>14>194,88>13>85'
  1536. ..',88>14>118,89>13>85,89>14>185,90>13>85,90>14>103,93>13>91,93>14>96,94>13>91,94>14>255,95>13>91,95>14>279,98>13>96,98>14>185,100>13>99,100>14>189,101>13>99,101>14>251,102>13>99,102>14>161,107>13>105,107>14>185,111>13>110,111>14>262,112>13>110,112>14>251,114>13>113,114>14>110,115>13>113,115>14>347,116>13>113,116>14>69,119>13>118,119>14>108,120>13>118,120>14>194,121>13>118,121>14>129,122>13>118,122>14>158,123>13>118,123>14>126,124>13>118,124>14>838,125>13>118,125>14>644,127>13>126,127>14>129,128>13>126,128>14>838,134>13>133,134>14>153,135>13>133,135>14>118,136>13>133,136>14>644,137>13>133,137>14>158,139>13>138,139>14>118,140>13>138,140>'
  1537. ..'14>838,141>13>138,141>14>202,142>13>138,142>14>126,145>13>143,145>14>126,146>13>143,146>14>131,149>13>147,149>14>133,150>13>147,150>14>151,155>13>153,155>14>118,163>13>161,163>14>189,164>13>161,164>14>110,165>13>161,165>14>251,166>13>161,166>14>113,167>13>161,167>14>367,170>13>168,170>14>194,171>13>168,171>14>118,172>13>168,172>14>105,174>13>173,174>14>581,175>13>173,175>14>275,176>13>173,176>14>752,179>13>177,179>14>189,180>13>177,180>14>264,181>13>177,181>14>251,182>13>177,182>14>319,183>13>177,183>14>267,184>13>177,184>14>99,186>13>185,186>14>316,187>13>185,187>14>103,188>13>185,188>14>255,190>13>189,190>14>67,191>13>189,191>14>69'
  1538. ..',192>13>189,192>14>59,195>13>194,195>14>173,196>13>194,196>14>108,197>13>194,197>14>202,198>13>194,198>14>239,199>13>194,199>14>838,200>13>194,200>14>211,201>13>194,201>14>644,203>13>202,203>14>131,204>13>202,204>14>159,207>13>205,207>14>194,208>13>205,208>14>202,212>13>211,212>14>226,213>13>211,213>14>151,214>13>211,214>14>644,215>13>211,215>14>239,216>13>211,216>14>158,217>13>211,217>14>156,219>13>218,219>14>194,220>13>218,220>14>677,221>13>218,221>14>202,224>13>222,224>14>209,225>13>222,225>14>202,230>13>228,230>14>630,231>13>228,231>14>226,234>13>232,234>14>194,235>13>232,235>14>211,238>13>236,238>14>630,242>13>240,242>14>677,244'
  1539. ..'>13>243,244>14>581,245>13>243,245>14>275,246>13>243,246>14>252,247>13>243,247>14>194,248>13>243,248>14>632,249>13>243,249>14>621,250>13>243,250>14>630,253>13>252,253>14>581,254>13>252,254>14>110,258>13>257,258>14>581,259>13>257,259>14>71,260>13>257,260>14>173,261>13>257,261>14>267,263>13>262,263>14>251,265>13>264,265>14>79,266>13>264,266>14>67,268>13>267,268>14>262,269>13>267,269>14>251,270>13>267,270>14>71,271>13>267,271>14>264,273>13>272,273>14>267,274>13>272,274>14>71,277>13>276,277>14>581,278>13>276,278>14>262,280>13>279,280>14>685,281>13>279,281>14>313,282>13>279,282>14>642,283>13>279,283>14>891,284>13>279,284>14>486,285>13>279,'
  1540. ..'285>14>864,286>13>279,286>14>644,287>13>279,287>14>658,288>13>279,288>14>861,289>13>279,289>14>96,290>13>279,290>14>506,291>13>279,291>14>653,292>13>279,292>14>481,293>13>279,293>14>316,294>13>279,294>14>255,295>13>279,295>14>879,296>13>279,296>14>118,297>13>279,297>14>502,298>13>279,298>14>664,299>13>279,299>14>838,300>13>279,300>14>831,301>13>279,301>14>824,302>13>279,302>14>626,303>13>279,303>14>387,304>13>279,304>14>856,305>13>279,305>14>421,306>13>279,306>14>497,307>13>279,307>14>819,308>13>279,308>14>379,309>13>279,309>14>185,310>13>279,310>14>382,311>13>279,311>14>431,312>13>279,312>14>426,315>13>313,315>14>316,318>13>316,318>'
  1541. ..'14>255,320>13>319,320>14>264,328>13>326,328>14>319,329>13>326,329>14>323,330>13>326,330>14>264,331>13>326,331>14>333,332>13>326,332>14>79,341>13>340,341>14>177,342>13>340,342>14>326,343>13>340,343>14>79,344>13>340,344>14>319,345>13>340,345>14>67,346>13>340,346>14>189,348>13>347,348>14>69,354>13>351,354>14>355,357>13>355,357>14>113,358>13>355,358>14>360,359>13>355,359>14>347,368>13>367,368>14>355,369>13>367,369>14>113,371>13>370,371>14>367,372>13>370,372>14>161,373>13>370,373>14>347,374>13>370,374>14>355,375>13>370,375>14>69,376>13>370,376>14>189,386>13>384,386>14>380,388>13>387,388>14>382,389>13>387,389>14>380,390>13>387,390>14>379,3'
  1542. ..'91>13>387,391>14>561,396>13>394,396>14>899,397>13>394,397>14>624,400>13>398,400>14>1163,401>13>398,401>14>919,402>13>398,402>14>913,403>13>398,403>14>468,404>13>398,404>14>1151,406>13>405,406>14>529,407>13>405,407>14>418,408>13>405,408>14>412,409>13>405,409>14>464,410>13>405,410>14>536,411>13>405,411>14>459,413>13>412,413>14>700,415>13>414,415>14>517,416>13>414,416>14>520,417>13>414,417>14>521,419>13>418,419>14>529,424>13>422,424>14>429,425>13>422,425>14>431,428>13>426,428>14>431,432>13>431,432>14>421,433>13>431,433>14>392,434>13>431,434>14>384,435>13>431,435>14>379,436>13>431,436>14>561,439>13>437,439>14>506,440>13>437,440>14>561,44'
  1543. ..'3>13>441,443>14>530,444>13>441,444>14>445,446>13>445,446>14>513,448>13>447,448>14>627,449>13>447,449>14>527,450>13>447,450>14>814,451>13>447,451>14>517,452>13>447,452>14>618,453>13>447,453>14>467,454>13>447,454>14>546,455>13>447,455>14>414,456>13>447,456>14>398,458>13>457,458>14>414,461>13>459,461>14>529,462>13>459,462>14>468,463>13>459,463>14>412,465>13>464,465>14>418,466>13>464,466>14>536,469>13>468,469>14>527,470>13>468,470>14>412,471>13>468,471>14>467,474>13>473,474>14>642,475>13>473,475>14>279,476>13>473,476>14>486,477>13>473,477>14>561,480>13>478,480>14>483,485>13>483,485>14>642,487>13>486,487>14>481,488>13>486,488>14>504,489>1'
  1544. ..'3>486,489>14>497,490>13>486,490>14>478,491>13>486,491>14>511,492>13>486,492>14>561,495>13>493,495>14>642,500>13>498,500>14>506,501>13>498,501>14>504,507>13>506,507>14>502,508>13>506,508>14>429,509>13>506,509>14>497,510>13>506,510>14>421,514>13>513,514>14>377,516>13>515,516>14>414,518>13>517,518>14>467,519>13>517,519>14>468,524>13>522,524>14>624,525>13>522,525>14>189,526>13>522,526>14>99,528>13>527,528>14>467,532>13>530,532>14>377,535>13>533,535>14>412,539>13>537,539>14>412,540>13>537,540>14>536,541>13>537,541>14>710,542>13>537,542>14>581,543>13>537,543>14>735,544>13>537,544>14>445,545>13>537,545>14>405,547>13>546,547>14>468,549>13>54'
  1545. ..'8,549>14>414,551>13>550,551>14>529,552>13>550,552>14>418,553>13>550,553>14>464,554>13>550,554>14>536,555>13>550,555>14>592,556>13>550,556>14>710,557>13>550,557>14>537,560>13>558,560>14>377,562>13>561,562>14>847,563>13>561,563>14>897,564>13>561,564>14>642,565>13>561,565>14>493,566>13>561,566>14>647,567>13>561,567>14>511,568>13>561,568>14>497,569>13>561,569>14>861,570>13>561,570>14>1323,571>13>561,571>14>506,572>13>561,572>14>664,573>13>561,573>14>833,574>13>561,574>14>912,575>13>561,575>14>831,576>13>561,576>14>824,577>13>561,577>14>626,578>13>561,578>14>392,579>13>561,579>14>421,580>13>561,580>14>379,582>13>581,582>14>412,583>13>581,'
  1546. ..'583>14>755,584>13>581,584>14>616,585>13>581,585>14>513,586>13>581,586>14>445,587>13>581,587>14>377,590>13>588,590>14>581,591>13>588,591>14>377,594>13>592,594>14>529,595>13>592,595>14>1115,596>13>592,596>14>710,599>13>597,599>14>445,601>13>600,601>14>903,602>13>600,602>14>627,603>13>600,603>14>412,604>13>600,604>14>1151,607>13>605,607>14>412,609>13>608,609>14>1095,610>13>608,610>14>529,612>13>611,612>14>581,613>13>611,613>14>616,614>13>611,614>14>445,615>13>611,615>14>735,619>13>618,619>14>468,620>13>618,620>14>546,622>13>621,622>14>377,623>13>621,623>14>630,628>13>627,628>14>899,629>13>627,629>14>740,631>13>630,631>14>239,634>13>632,'
  1547. ..'634>14>630,637>13>635,637>14>377,640>13>638,640>14>630,641>13>638,641>14>635,643>13>642,643>14>644,646>13>644,646>14>158,651>13>649,651>14>581,655>13>653,655>14>664,659>13>658,659>14>664,660>13>658,660>14>561,663>13>661,663>14>656,665>13>664,665>14>661,668>13>666,668>14>561,671>13>669,671>14>677,672>13>669,672>14>683,674>13>673,674>14>1095,675>13>673,675>14>1151,676>13>673,676>14>814,678>13>677,678>14>173,679>13>677,679>14>752,680>13>677,680>14>209,686>13>685,686>14>881,687>13>685,687>14>897,688>13>685,688>14>838,689>13>685,689>14>561,691>13>690,691>14>173,692>13>690,692>14>721,693>13>690,693>14>677,695>13>694,695>14>765,696>13>694,6'
  1548. ..'96>14>754,697>13>694,697>14>709,698>13>694,698>14>710,699>13>694,699>14>876,703>13>702,703>14>767,704>13>702,704>14>581,705>13>702,705>14>738,706>13>702,706>14>744,707>13>702,707>14>728,708>13>702,708>14>735,713>13>710,713>14>1115,714>13>710,714>14>876,715>13>710,715>14>709,716>13>710,716>14>735,718>13>717,718>14>765,719>13>717,719>14>412,720>13>717,720>14>754,722>13>721,722>14>762,723>13>721,723>14>581,724>13>721,724>14>738,725>13>721,725>14>681,726>13>721,726>14>683,727>13>721,727>14>755,731>13>730,731>14>744,732>13>730,732>14>694,733>13>730,733>14>717,734>13>730,734>14>754,736>13>735,736>14>912,737>13>735,737>14>445,739>13>738,739'
  1549. ..'>14>581,741>13>740,741>14>1095,742>13>740,742>14>412,743>13>740,743>14>1151,746>13>744,746>14>710,747>13>744,747>14>717,748>13>744,748>14>581,749>13>744,749>14>412,750>13>744,750>14>694,751>13>744,751>14>735,759>13>757,759>14>1095,760>13>757,760>14>412,761>13>757,761>14>717,764>13>762,764>14>767,766>13>765,766>14>754,770>13>769,770>14>1095,771>13>769,771>14>934,772>13>769,772>14>608,773>13>769,773>14>925,774>13>769,774>14>932,775>13>769,775>14>1184,777>13>776,777>14>735,778>13>776,778>14>738,779>13>776,779>14>728,780>13>776,780>14>377,781>13>776,781>14>681,782>13>776,782>14>690,783>13>776,783>14>721,784>13>776,784>14>677,785>13>776,7'
  1550. ..'85>14>272,786>13>776,786>14>621,787>13>776,787>14>597,788>13>776,788>14>558,789>13>776,789>14>240,790>13>776,790>14>236,791>13>776,791>14>202,792>13>776,792>14>211,793>13>776,793>14>156,794>13>776,794>14>158,795>13>776,795>14>159,796>13>776,796>14>847,797>13>776,797>14>218,798>13>776,798>14>138,799>13>776,799>14>1323,800>13>776,800>14>126,801>13>776,801>14>133,802>13>776,802>14>630,803>13>776,803>14>513,804>13>776,804>14>561,805>13>776,805>14>647,806>13>776,806>14>239,807>13>776,807>14>912,809>13>808,809>14>581,810>13>808,810>14>702,811>13>808,811>14>649,812>13>808,812>14>849,813>13>808,813>14>735,816>13>814,816>14>1151,817>13>814,81'
  1551. ..'7>14>1092,823>13>821,823>14>664,825>13>824,825>14>664,826>13>824,826>14>831,829>13>827,829>14>821,830>13>827,830>14>831,832>13>831,832>14>819,835>13>833,835>14>664,840>13>838,840>14>202,842>13>841,842>14>1385,843>13>841,843>14>1092,844>13>841,844>14>1388,845>13>841,845>14>1095,846>13>841,846>14>814,850>13>849,850>14>744,851>13>849,851>14>702,853>13>852,853>14>1095,854>13>852,854>14>934,860>13>858,860>14>862,865>13>864,865>14>856,866>13>864,866>14>862,867>13>864,867>14>656,868>13>864,868>14>666,869>13>864,869>14>861,870>13>864,870>14>658,871>13>864,871>14>561,874>13>872,874>14>891,875>13>872,875>14>561,883>13>881,883>14>889,885>13>884'
  1552. ..',885>14>685,886>13>884,886>14>279,887>13>884,887>14>891,888>13>884,888>14>561,892>13>891,892>14>879,893>13>891,893>14>889,894>13>891,894>14>861,895>13>891,895>14>858,896>13>891,896>14>561,901>13>899,901>14>1157,902>13>899,902>14>1151,904>13>903,904>14>1095,905>13>903,905>14>1071,906>13>903,906>14>919,907>13>903,907>14>529,908>13>903,908>14>459,910>13>909,910>14>1323,911>13>909,911>14>912,914>13>913,914>14>459,915>13>913,915>14>1163,917>13>916,917>14>529,918>13>916,918>14>986,920>13>919,920>14>1151,921>13>919,921>14>459,926>13>925,926>14>608,927>13>925,927>14>929,928>13>925,928>14>529,931>13>929,931>14>710,933>13>932,933>14>934,935>13'
  1553. ..'>934,935>14>1245,937>13>936,937>14>765,938>13>936,938>14>1383,939>13>936,939>14>1346,940>13>936,940>14>1364,941>13>936,941>14>852,942>13>936,942>14>694,943>13>936,943>14>1095,944>13>936,944>14>717,945>13>936,945>14>876,946>13>936,946>14>757,947>13>936,947>14>1230,948>13>936,948>14>1351,950>13>949,950>14>977,951>13>949,951>14>1139,952>13>949,952>14>1332,953>13>949,953>14>1106,955>13>954,955>14>1122,956>13>954,956>14>970,957>13>954,957>14>1069,958>13>954,958>14>1086,959>13>954,959>14>1166,960>13>954,960>14>1137,961>13>954,961>14>1115,965>13>964,965>14>1159,966>13>964,966>14>1016,967>13>964,967>14>1120,968>13>964,968>14>1084,969>13>964,'
  1554. ..'969>14>1108,971>13>970,971>14>1083,973>13>972,973>14>1122,974>13>972,974>14>1110,975>13>972,975>14>913,976>13>972,976>14>1163,979>13>978,979>14>1290,980>13>978,980>14>1177,981>13>978,981>14>1132,984>13>982,984>14>1139,987>13>986,987>14>1139,988>13>986,988>14>1169,989>13>986,989>14>1106,990>13>986,990>14>1216,991>13>986,991>14>1122,992>13>986,992>14>913,993>13>986,993>14>1137,994>13>986,994>14>1083,995>13>986,995>14>1086,996>13>986,996>14>903,997>13>986,997>14>1166,998>13>986,998>14>459,999>13>986,999>14>954,1000>13>986,1000>14>529,1001>13>986,1001>14>1069,1002>13>986,1002>14>592,1003>13>986,1003>14>949,1004>13>986,1004>14>1115,1007>1'
  1555. ..'3>1005,1007>14>899,1008>13>1005,1008>14>1151,1011>13>1009,1011>14>1153,1012>13>1009,1012>14>1294,1015>13>1013,1015>14>1153,1018>13>1016,1018>14>1108,1068>13>1019,1068>14>1147,1070>13>1069,1070>14>1083,1073>13>1071,1073>14>1095,1075>13>1074,1075>14>1279,1076>13>1074,1076>14>1390,1077>13>1074,1077>14>1393,1078>13>1074,1078>14>1095,1079>13>1074,1079>14>1343,1080>13>1074,1080>14>1273,1081>13>1074,1081>14>1245,1082>13>1074,1082>14>934,1087>13>1086,1087>14>1083,1090>13>1088,1090>14>1153,1091>13>1088,1091>14>964,1093>13>1092,1093>14>1181,1094>13>1092,1094>14>1151,1096>13>1095,1096>14>1368,1097>13>1095,1097>14>1159,1098>13>1095,1098>14>1306,'
  1556. ..'1099>13>1095,1099>14>1139,1100>13>1095,1100>14>982,1101>13>1095,1101>14>1279,1102>13>1095,1102>14>977,1103>13>1095,1103>14>1131,1104>13>1095,1104>14>934,1105>13>1095,1105>14>1108,1107>13>1106,1107>14>1115,1109>13>1108,1109>14>1120,1111>13>1110,1111>14>964,1112>13>1110,1112>14>1151,1113>13>1110,1113>14>1159,1114>13>1110,1114>14>1163,1116>13>1115,1116>14>1083,1117>13>1115,1117>14>529,1119>13>1118,1119>14>1131,1123>13>1122,1123>14>1083,1124>13>1122,1124>14>1414,1125>13>1122,1125>14>970,1127>13>1126,1127>14>1294,1128>13>1126,1128>14>1153,1129>13>1126,1129>14>964,1130>13>1126,1130>14>1108,1134>13>1133,1134>14>1083,1135>13>1133,1135>14>954'
  1557. ..',1136>13>1133,1136>14>986,1138>13>1137,1138>14>1083,1141>13>1140,1141>14>1019,1142>13>1140,1142>14>985,1144>13>1143,1144>14>1095,1145>13>1143,1145>14>1147,1150>13>1149,1150>14>1165,1152>13>1151,1152>14>1157,1154>13>1153,1154>14>1084,1155>13>1153,1155>14>964,1156>13>1153,1156>14>1151,1160>13>1159,1160>14>1414,1161>13>1159,1161>14>1108,1162>13>1159,1162>14>1139,1164>13>1163,1164>14>1151,1167>13>1166,1167>14>1083,1168>13>1166,1168>14>1115,1170>13>1169,1170>14>1328,1171>13>1169,1171>14>949,1173>13>1172,1173>14>1177,1174>13>1172,1174>14>1146,1175>13>1172,1175>14>1165,1176>13>1172,1176>14>962,1178>13>1177,1178>14>1095,1179>13>1177,1179>14>'
  1558. ..'1108,1180>13>1177,1180>14>963,1182>13>1181,1182>14>1151,1185>13>1184,1185>14>1372,1186>13>1184,1186>14>1212,1187>13>1184,1187>14>1266,1188>13>1184,1188>14>1276,1189>13>1184,1189>14>1332,1190>13>1184,1190>14>1216,1191>13>1184,1191>14>1257,1192>13>1184,1192>14>1241,1193>13>1184,1193>14>1328,1194>13>1184,1194>14>876,1195>13>1184,1195>14>1343,1196>13>1184,1196>14>1279,1197>13>1184,1197>14>1316,1198>13>1184,1198>14>852,1199>13>1184,1199>14>1383,1200>13>1184,1200>14>1106,1201>13>1184,1201>14>1362,1202>13>1184,1202>14>925,1203>13>1184,1203>14>1221,1204>13>1184,1204>14>1263,1205>13>1184,1205>14>1346,1206>13>1184,1206>14>923,1207>13>1184,1207'
  1559. ..'>14>936,1208>13>1184,1208>14>1115,1209>13>1184,1209>14>1395,1210>13>1184,1210>14>1252,1211>13>1184,1211>14>710,1214>13>1212,1214>14>1372,1218>13>1216,1218>14>1106,1220>13>1219,1220>14>1237,1225>13>1223,1225>14>1219,1226>13>1223,1226>14>1247,1227>13>1223,1227>14>1235,1228>13>1223,1228>14>1334,1229>13>1223,1229>14>1215,1231>13>1230,1231>14>1271,1232>13>1230,1232>14>1397,1233>13>1230,1233>14>1095,1234>13>1230,1234>14>1346,1236>13>1235,1236>14>1237,1239>13>1237,1239>14>1215,1242>13>1241,1242>14>1284,1243>13>1241,1243>14>1183,1244>13>1241,1244>14>1240,1248>13>1247,1248>14>1237,1250>13>1249,1250>14>1252,1251>13>1249,1251>14>909,1254>13>125'
  1560. ..'2,1254>14>710,1255>13>1252,1255>14>1323,1256>13>1252,1256>14>912,1258>13>1257,1258>14>1095,1259>13>1257,1259>14>977,1260>13>1257,1260>14>1289,1261>13>1257,1261>14>1332,1262>13>1257,1262>14>1279,1265>13>1263,1265>14>934,1267>13>1266,1267>14>1284,1268>13>1266,1268>14>1240,1269>13>1266,1269>14>1216,1270>13>1266,1270>14>1183,1275>13>1273,1275>14>934,1277>13>1276,1277>14>1095,1278>13>1276,1278>14>1279,1280>13>1279,1280>14>1289,1281>13>1279,1281>14>1393,1282>13>1279,1282>14>1362,1283>13>1279,1283>14>1221,1287>13>1285,1287>14>1230,1288>13>1285,1288>14>936,1293>13>1291,1293>14>1108,1295>13>1294,1295>14>1366,1296>13>1294,1296>14>1302,1297>13>'
  1561. ..'1294,1297>14>1291,1298>13>1294,1298>14>1181,1299>13>1294,1299>14>1013,1300>13>1294,1300>14>1153,1301>13>1294,1301>14>1108,1304>13>1302,1304>14>1108,1308>13>1307,1308>14>1315,1309>13>1307,1309>14>1310,1313>13>1311,1313>14>1306,1314>13>1311,1314>14>1315,1318>13>1316,1318>14>934,1321>13>1319,1321>14>1230,1322>13>1319,1322>14>936,1324>13>1323,1324>14>735,1326>13>1325,1326>14>1380,1330>13>1328,1330>14>1289,1331>13>1328,1331>14>1332,1333>13>1332,1333>14>977,1336>13>1334,1336>14>1332,1337>13>1334,1337>14>1237,1342>13>1340,1342>14>852,1344>13>1343,1344>14>1279,1345>13>1343,1345>14>934,1350>13>1347,1350>14>934,1357>13>1354,1357>14>934,1361>13'
  1562. ..'>1358,1361>14>936,1367>13>1366,1367>14>1181,1370>13>1369,1370>14>1368,1373>13>1372,1373>14>1095,1374>13>1372,1374>14>1271,1375>13>1372,1375>14>1397,1376>13>1372,1376>14>1395,1377>13>1372,1377>14>1346,1378>13>1372,1378>14>1276,1379>13>1372,1379>14>1230,1381>13>1380,1381>14>1371,1382>13>1380,1382>14>1095,1386>13>1385,1386>14>1181,1387>13>1385,1387>14>1092,1389>13>1388,1389>14>1385,1392>13>1390,1392>14>1279,1401>13>1399,1401>14>1414,1404>13>1402,1404>14>1405,1407>13>1405,1407>14>1414,1409>13>1408,1409>14>1159,1410>13>1408,1410>14>1476,1411>13>1408,1411>14>1139,1412>13>1408,1412>14>1108,1413>13>1408,1413>14>1399,1416>13>1414,1416>14>1139'
  1563. ..',1419>13>1417,1419>14>1594,1422>13>1420,1422>14>1429,1425>13>1423,1425>14>1420,1426>13>1423,1426>14>1445,1432>13>1431,1432>14>1476,1433>13>1431,1433>14>1437,1434>13>1431,1434>14>1108,1435>13>1431,1435>14>1095,1436>13>1431,1436>14>1429,1438>13>1437,1438>14>1476,1439>13>1437,1439>14>1408,1440>13>1437,1440>14>1108,1443>13>1441,1443>14>1366,1444>13>1441,1444>14>1587,1448>13>1447,1448>14>1465,1449>13>1447,1449>14>1594,1450>13>1447,1450>14>1599,1451>13>1447,1451>14>1541,1452>13>1447,1452>14>1417,1453>13>1447,1453>14>1427,1454>13>1447,1454>14>1445,1455>13>1447,1455>14>1223,1456>13>1447,1456>14>1237,1457>13>1447,1457>14>1508,1458>13>1447,145'
  1564. ..'8>14>1216,1459>13>1447,1459>14>1520,1460>13>1447,1460>14>1402,1461>13>1447,1461>14>1509,1464>13>1462,1464>14>1159,1469>13>1467,1469>14>1476,1470>13>1467,1470>14>1508,1472>13>1471,1472>14>1552,1473>13>1471,1473>14>1496,1474>13>1471,1474>14>1529,1475>13>1471,1475>14>1572,1477>13>1476,1477>14>1587,1478>13>1476,1478>14>1508,1481>13>1479,1481>14>1509,1482>13>1479,1482>14>1476,1484>13>1483,1484>14>1552,1485>13>1483,1485>14>1496,1486>13>1483,1486>14>1471,1487>13>1483,1487>14>1508,1488>13>1483,1488>14>1476,1489>13>1483,1489>14>1509,1495>13>1492,1495>14>1496,1498>13>1496,1498>14>1597,1499>13>1496,1499>14>1508,1500>13>1496,1500>14>1501,1510>13'
  1565. ..'>1509,1510>14>1476,1511>13>1509,1511>14>1465,1512>13>1509,1512>14>1587,1513>13>1509,1513>14>1594,1515>13>1514,1515>14>1597,1516>13>1514,1516>14>1462,1517>13>1514,1517>14>1476,1518>13>1514,1518>14>1599,1519>13>1514,1519>14>1508,1522>13>1520,1522>14>1508,1528>13>1525,1528>14>1529,1531>13>1529,1531>14>1590,1532>13>1529,1532>14>1509,1540>13>1533,1540>14>1529,1542>13>1541,1542>14>1509,1543>13>1541,1543>14>1471,1544>13>1541,1544>14>1572,1545>13>1541,1545>14>1529,1546>13>1541,1546>14>1508,1554>13>1552,1554>14>1590,1555>13>1552,1555>14>1549,1556>13>1552,1556>14>1509,1557>13>1552,1557>14>1529,1565>13>1558,1565>14>1552,1566>13>1558,1566>14>153'
  1566. ..'3,1574>13>1572,1574>14>1569,1575>13>1572,1575>14>1597,1576>13>1572,1576>14>1496,1577>13>1572,1577>14>1508,1578>13>1572,1578>14>1579,1586>13>1579,1586>14>1501,1588>13>1587,1588>14>1594,1592>13>1590,1592>14>1587,1593>13>1590,1593>14>1594,1601>13>1599,1601>14>1597,1602>13>1599,1602>14>1427,1603>13>1599,1603>14>1508;2;n;2;n;2|1:2;n;1|3:3|4:4|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;1|3:3|4:9|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;1|3:3|4:10|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;n;3|11:11|12:12;3|11:13|12:14;3|11:15|12:16;p;1|3:3|4:17|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;1|3:3|4:18|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;n;3|11:11|12:19;3|11:13|12:20;3|11:21|12:22;p;1'
  1567. ..'|3:3|4:23|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;n;3|11:11|12:24;3|11:13|12:25;p;1|3:3|4:26|5:5|6:6|7:8|8:8|9:8|10:7|3:3|3:3;n;4|15:27;p;1|3:28|4:29|5:30|6:31|7:8|10:8|3:28|3:28;n;3|11:32|12:33;3|11:32|12:34;3|11:32|12:35;3|11:32|12:36;3|11:32|12:37;3|11:32|12:38;p;1|3:28|4:39|5:30|6:40|10:8|3:28|3:28;n;3|11:41|12:42;3|11:41|12:43;3|11:32|12:44;3|11:41|12:45;3|11:41|12:46;3|11:32|12:47;3|11:32|12:48;3|11:41|12:49;3|11:41|12:50;p;1|3:3|4:51|5:5|6:6|7:8|8:8|9:8|10:7|3:3|3:3;n;4|15:27;p;1|3:3|4:52|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;1|3:3|4:53|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;n;3|11:11|12:54;3|11:13|12:55;p;1|3:3|4:56|5:5|6:6|7:8|8:8|9:8|10:7|3:'
  1568. ..'3|3:3;n;4|15:27;3|11:13|12:57;p;1|3:3|4:58|5:5|6:6|7:8|8:8|9:8|10:7|3:3|3:3;n;4|15:27;p;1|3:3|4:59|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;n;3|11:11|12:60;3|11:13|12:61;p;1|3:3|4:62|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;n;3|11:15|12:16;p;1|3:3|4:63|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;1|3:3|4:64|5:5|6:6|7:7|8:8|9:8|10:7|3:3|3:3;n;3|11:11|12:65;3|11:15|12:16;3|11:13|12:66;p;p;2;n;1|3:67|16:68|4:69|5:70|6:71|7:8|9:8|10:8|3:67|3:67;n;3|11:72|12:73;3|11:74|12:75;p;1|3:76|4:77|6:78|7:8|10:8|3:76|3:76;n;3|11:79|12:80;3|11:81|12:82;3|11:83|12:84;3|11:85|12:86;p;1|3:76|4:87|5:88|6:89|17:8|7:8|9:8|10:7|3:76|3:76;n;4|18:8;p;1|3:76|4:90|5:91|6:89|17:8|7:8|9:8|'
  1569. ..'10:7|3:76|3:76;n;4|18:8;p;1|3:76|4:92|5:30|6:93|7:8|19:8|10:8|3:76|3:76;n;3|11:94|12:95;3|11:11|12:96;3|11:13|12:97;3|11:13|12:98;3|11:11|12:99;3|11:11|12:100;3|11:11|12:101;p;1|3:67|16:68|4:102|5:70|6:103|7:8|9:8|10:8|3:67|3:67;n;3|11:104|12:105;p;1|4:106|5:70|6:107|17:8|7:8|10:7;n;4|18:8;3|11:108|12:109;3|11:85|12:110;p;1|4:111|5:30|6:112|17:8|7:8|10:7;n;4|18:8;3|11:113|12:114;3|11:113|12:115;3|11:108|12:116;3|11:108|12:117;p;1|4:118|5:70|6:119|17:8|7:8|9:8|10:7;n;4|18:8;3|11:120|12:121;3|11:122|12:123;3|11:85|12:124;p;1|4:125|5:30|6:126|17:8|7:8|9:8|10:7;n;4|18:8;3|11:127|12:128;p;1|3:76|4:129|6:130|7:8|9:8|10:8|3:76|3:76;n;3|11:1'
  1570. ..'31|12:132;3|11:113|12:133;3|11:81|12:73;p;1|4:134|5:70|6:107|17:8|7:8|10:7;n;4|18:8;p;1|4:135|5:70|6:107|17:8|7:8|10:7;n;4|18:8;3|11:85|12:136;p;1|4:137|5:30|6:112|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:138|5:30|6:139|7:8|9:8|10:8|3:76|3:76;n;3|11:140|12:141;3|11:11|12:142;p;1|3:76|4:143|5:30|6:144|7:8|10:8|3:76|3:76;n;3|11:85|12:145;3|11:83|12:146;3|11:147|12:80;p;2;n;1|3:76|4:148|6:149|7:7|8:8|9:8|10:7|3:76|3:76;n;3|11:11|12:150;3|11:151|12:152;3|11:13|12:153;3|11:13|12:154;3|11:13|12:155;3|11:156|12:157;3|11:158|12:159;p;1|3:76|4:160|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:162;3|11:163|12:164;p;1|4:165|5:166|6:167|17:8|7:8|10:7;n;4|18:8'
  1571. ..';p;1|4:168|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:170|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:171;3|11:172|12:173;3|11:174|12:175;3|11:140|12:176;p;1|3:67|16:68|4:177|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:172|12:179;3|11:180|12:181;3|11:182|12:183;3|11:184|12:185;p;1|4:186|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:188;3|11:163|12:189;p;1|4:190|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:191;3|11:163|12:189;p;1|4:192|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:193|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:194;p;1|4:195|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:67|16:68|4:196|6:178|7:8|8:8|9:8|10:8|3:67|3:67;1|4:197|5:'
  1572. ..'169|6:167|17:8|7:8|10:7;n;4|18:8;p;p;1|3:76|4:198|5:199|6:89|17:8|7:8|9:8|10:7|3:76|3:76;n;4|18:8;3|11:182|12:200;3|11:184|12:201;3|11:85|12:202;3|11:163|12:203;3|11:163|12:204;p;1|4:205|5:30|6:112|17:8|7:8|10:7;n;4|18:8;3|11:113|12:206;3|11:113|12:207;3|11:108|12:117;p;1|3:76|4:208|6:209|7:7|8:8|9:8|10:7|3:76|3:76;n;3|11:151|12:210;3|11:11|12:211;3|11:13|12:212;p;1|3:76|4:213|5:214|6:89|17:8|7:8|9:8|10:7|3:76|3:76;n;4|18:8;3|11:182|12:215;3|11:85|12:203;3|11:163|12:216;3|11:85|12:204;3|11:184|12:217;3|11:163|12:218;p;1|3:76|4:219|5:30|6:220|7:8|10:8|3:76|3:76;n;3|11:221|12:222;3|11:83|12:223;3|11:108|12:224;p;1|3:76|4:225|5:30|6:226'
  1573. ..'|7:8|19:8|10:8|3:76|3:76;n;3|11:85|12:227;3|11:85|12:228;3|11:85|12:229;p;2;n;1|3:76|4:230|6:149|7:7|8:8|9:8|10:7|3:76|3:76;n;3|11:151|12:231;3|11:11|12:232;3|11:13|12:155;3|11:13|12:154;3|11:156|12:233;3|11:13|12:234;3|11:158|12:235;p;1|3:76|4:236|6:161|7:8|10:8|3:76|3:76;n;3|11:237|12:238;3|11:237|12:239;p;1|4:240|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:241;3|11:187|12:242;p;1|4:243|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:244|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:245;3|11:237|12:246;3|11:174|12:247;3|11:140|12:176;3|11:237|12:248;3|11:237|12:249;p;1|3:67|16:68|4:250|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:172|12:179;3'
  1574. ..'|11:182|12:183;3|11:184|12:185;p;1|4:251|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:189;3|11:187|12:188;p;1|4:252|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:253|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:254;3|11:163|12:189;p;1|4:255|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:194;3|11:187|12:256;p;1|4:257|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:258;p;1|3:67|16:68|4:259|6:178|7:8|8:8|9:8|10:8|3:67|3:67;1|4:260|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:261;p;p;1|3:76|4:262|6:209|7:7|8:8|9:8|10:7|3:76|3:76;n;3|11:151|12:263;3|11:11|12:264;3|11:11|12:265;3|11:266|12:267;3|11:13|12:268;3|11:13|12:269;3|11:13|12:270;p'
  1575. ..';1|3:76|4:271|6:78|7:8|10:8|3:76|3:76;1|3:76|4:272|6:273|7:8|10:8|3:76|3:76;n;3|11:274|12:275;3|11:172|12:276;p;1|4:277|5:70|6:220|17:8|7:8|9:8|10:7;n;4|18:8;p;1|3:76|4:278|6:273|7:8|10:8|3:76|3:76;n;3|11:274|12:279;3|11:172|12:280;3|11:274|12:281;3|11:172|12:282;p;1|3:76|4:283|5:30|6:284|7:8|10:8|3:76|3:76;n;3|11:11|12:285;p;1|3:76|4:286|5:30|6:144|7:8|10:8|3:76|3:76;n;3|11:83|12:146;3|11:147|12:82;p;1|3:76|4:287|5:30|6:139|7:8|8:8|10:8|3:76|3:76;n;3|11:237|12:288;3|11:11|12:289;3|11:79|12:290;3|11:11|12:291;p;5|3:76|4:292|5:30|6:293|3:76|3:76;n;3|11:294|12:295;3|11:163|12:296;p;1|3:76|4:297|5:30|6:298|7:8|10:8|3:76|3:76;1|3:76|4:29'
  1576. ..'9|5:30|6:300|7:8|10:8|3:76|3:76;n;3|11:274|12:114;3|11:172|12:301;p;1|3:76|4:302|6:303|7:7|8:8|9:8|10:7|3:76|3:76;n;3|11:13|12:304;3|11:11|12:305;3|11:13|12:306;3|11:13|12:307;3|11:13|12:308;3|11:13|12:309;3|11:310|12:311;3|11:13|12:312;3|11:13|12:313;3|11:11|12:314;3|11:13|12:315;3|11:13|12:316;3|11:13|12:317;3|11:11|12:318;3|11:11|12:319;3|11:13|12:320;3|11:310|12:152;3|11:13|12:321;3|11:13|12:322;3|11:310|12:323;3|11:13|12:324;3|11:13|12:325;3|11:13|12:326;3|11:13|12:327;3|11:13|12:328;3|11:13|12:329;3|11:13|12:330;3|11:13|12:331;3|11:13|12:332;3|11:11|12:333;3|11:13|12:334;3|11:13|12:335;3|11:13|12:336;p;1|4:337|5:30|6:126|17:8|7'
  1577. ..':8|9:8|10:7;n;4|18:8;3|11:338|12:339;p;1|4:340|5:70|6:119|17:8|7:8|9:8|10:7;n;4|18:8;3|11:127|12:341;p;1|3:67|16:68|4:342|5:70|6:103|7:8|9:8|10:8|3:67|3:67;n;3|11:85|12:343;p;2;n;2|1:344;n;1|1:345|3:346|4:347|5:169|6:348|7:7|8:8|10:7|3:346|3:346;n;3|1:349;4|18:350;p;p;1|3:76|4:351|5:352|6:353|17:8|7:8|19:8|8:8|9:8|10:8|3:76|3:76;n;6;3|11:294|12:354;3|11:355|12:356;3|11:163|12:357;3|11:358|12:359;3|11:360|12:361;p;1|1:362|3:363|4:364|5:199|6:365|17:8|7:366|19:366|8:366|9:366|10:7|3:363|3:363;n;7|1:367|20:368|21:369;8|22:370;3|1:349;9;10|1:371;10|1:372;p;p;1|3:67|16:68|4:373|5:70|6:144|7:8|9:8|10:8|3:67|3:67;n;3|11:147|12:374;3|11:85|1'
  1578. ..'2:375;3|11:85|12:376;3|11:85|12:377;3|11:378|12:379;3|11:83|12:380;p;1|3:67|16:68|4:381|5:70|6:103|7:8|9:8|10:8|3:67|3:67;n;3|11:104|12:382;p;2;n;2|1:344;n;1|1:345|3:346|4:383|5:384|6:348|7:7|8:8|10:7|3:346|3:346;n;3|1:349;4|18:350;3|11:360|12:385;p;p;1|3:76|4:386|5:387|6:353|17:8|7:8|19:8|8:8|9:8|10:8|3:76|3:76;n;6;3|11:163|12:388;3|11:358|12:389;3|11:294|12:390;p;1|1:362|3:363|4:391|5:88|6:365|17:8|7:366|19:366|8:366|9:366|10:7|3:363|3:363;n;7|1:367|20:368|21:369;8|22:370;3|1:349;9;10|1:371;10|1:372;p;p;1|3:67|16:68|4:392|5:70|6:103|7:8|9:8|10:8|3:67|3:67;n;3|11:104|12:393;3|11:85|12:343;p;1|3:67|16:68|4:394|5:70|6:144|7:8|9:8|10:8'
  1579. ..'|3:67|3:67;n;3|11:85|12:377;3|11:147|12:395;3|11:85|12:376;3|11:85|12:396;3|11:378|12:374;3|11:83|12:397;p;1|3:76|4:398|6:161|7:8|10:8|3:76|3:76;2;n;1|3:67|16:68|4:399|5:70|6:178|7:8|8:8|9:8|10:8|3:67|3:67;1|4:400|5:401|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:402|5:401|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:403|5:352|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:189;p;1|3:76|4:404|5:70|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:171;3|11:140|12:245;3|11:140|12:176;3|11:274|12:405;p;1|4:406|5:352|6:167|17:8|7:8|10:7;n;4|18:8;p;p;1|4:407|5:5|6:112|17:8|7:8|10:7;n;4|18:8;3|11:108|12:408;3|11:113|12:409;p;1|3:76|4:410|5:91|6:411|7:8|10:7|3:76|3:76;n;4|18:8'
  1580. ..';3|11:412|12:413;3|11:412|12:414;3|11:412|12:415;3|11:163|12:416;3|11:412|12:417;p;1|3:76|4:418|6:419|7:7|19:8|8:8|9:8|10:8|3:76|3:76;n;3|11:420|12:421;3|11:13|12:422;3|11:11|12:423;3|11:13|12:424;3|11:13|12:425;3|11:426|12:427;p;1|3:76|4:428|6:429|17:8|7:7|19:8|8:8|10:7|3:76|3:76;n;3|11:13|12:430;p;1|4:431|5:432|6:433|7:8|10:7;n;3|11:32|12:434;3|11:41|12:435;3|11:41|12:436;p;1|3:76|4:437|6:438|7:8|9:8|10:8|3:76|3:76;n;3|11:140|12:439;p;2;n;1|3:67|16:68|4:440|6:178|7:8|8:8|9:8|10:8|3:67|3:67;1|4:441|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:189;3|11:187|12:191;p;1|4:442|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:256;p;1|4:44'
  1581. ..'3|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:444|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:176;3|11:163|12:239;3|11:163|12:238;3|11:163|12:445;3|11:274|12:446;p;1|4:447|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:258;3|11:163|12:448;p;p;1|4:449|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:189;3|11:187|12:450;p;1|3:76|4:451|6:452|7:8|19:8|10:8|3:76|3:76;n;3|11:184|12:248;p;1|3:76|4:453|5:454|6:455|17:8|7:7|19:8|10:8|3:76|3:76;n;3|11:83|12:456;3|11:85|12:457;3|11:458|12:459;3|11:85|12:460;3|11:85|12:461;3|11:85|12:462;3|11:85|12:463;3|11:15|12:464;3|11:465|12:466;p;1|3:363|4:467|5:432|6:468|7:8|10:7|3:363|3:363;n;3|11:32|12:469;p;'
  1582. ..'1|4:470|5:91|6:471|7:8|10:7;n;4|18:8;3|11:412|12:472;3|11:163|12:473;3|11:163|12:474;p;1|3:67|16:68|4:475|6:476|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:477|12:478;3|11:479|12:480;p;1|3:67|16:68|4:481|5:70|6:482|7:8|8:8|9:8|10:8|3:67|3:67;1|3:76|4:483|6:484|7:8|19:8|10:7|3:76|3:76;n;3|11:485|12:486;3|11:487|12:488;3|11:485|12:489;p;2;n;1|3:67|16:68|4:490|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:182|12:491;3|11:172|12:492;3|11:184|12:493;3|11:274|12:494;p;1|4:495|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:189;p;1|4:496|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:497|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:498;p;1|3:76|4:499|6:161|7:8|'
  1583. ..'10:8|3:76|3:76;n;3|11:140|12:171;3|11:237|12:246;3|11:237|12:248;3|11:140|12:245;3|11:237|12:249;3|11:274|12:500;p;1|4:501|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:502;p;p;2;n;1|3:67|16:68|4:503|6:178|7:8|8:8|9:8|10:8|3:67|3:67;1|4:504|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:191;3|11:163|12:189;p;1|4:505|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:506|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:507|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:171;3|11:237|12:246;3|11:140|12:176;3|11:237|12:248;p;1|4:508|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;p;1|3:67|16:68|4:509|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:184|12:493;p;1|3:363|4:510|5'
  1584. ..':432|6:468|7:8|10:7|3:363|3:363;n;3|11:32|12:511;p;1|3:76|4:512|5:70|6:513|7:8|10:8|3:76|3:76;n;3|11:122|12:514;3|11:487|12:460;p;1|3:363|4:515|5:432|6:468|7:8|10:7|3:363|3:363;1|3:363|4:516|5:432|6:468|7:8|10:7|3:363|3:363;1|4:517|5:30|6:518|10:7;n;9;3|11:104|12:224;3|11:519|12:520;3|11:519|12:521;p;1|3:76|4:522|5:70|6:523|7:8|10:8|3:76|3:76;n;3|11:21|12:524;p;1|3:76|4:525|6:526|17:8|7:8|19:8|10:8|3:76|3:76;1|4:527|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:191;p;1|3:528|4:529|5:530|6:531|7:8|10:7|3:528|3:528;n;6;3|11:32|12:532;p;1|3:76|4:533|6:438|7:8|8:8|10:8|3:76|3:76;1|4:534|5:91|6:535|17:8|7:7|10:7;n;4|18:8;3|11:187|12:536;'
  1585. ..'3|11:187|12:537;3|11:187|12:538;3|11:163|12:539;3|11:163|12:540;3|11:163|12:541;3|11:187|12:542;p;1|3:67|16:68|4:543|5:70|6:482|7:8|9:8|10:8|3:67|3:67;n;3|11:487|12:544;p;1|3:363|4:545|5:432|6:468|7:8|10:7|3:363|3:363;n;3|11:32|12:546;p;1|3:76|4:547|6:548|7:8|19:8|8:8|9:8|10:7|3:76|3:76;n;3|11:420|12:549;3|11:83|12:550;3|11:83|12:551;3|11:83|12:552;3|11:426|12:553;3|11:85|12:554;3|11:555|12:556;p;1|4:557|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:258;p;1|3:76|4:558|6:303|7:7|8:8|9:8|10:7|3:76|3:76;n;3|11:310|12:559;3|11:11|12:560;3|11:11|12:561;3|11:11|12:562;3|11:310|12:563;3|11:11|12:564;3|11:11|12:565;3|11:11|12:566;3|11:13|12'
  1586. ..':567;3|11:11|12:568;3|11:11|12:569;3|11:11|12:570;3|11:13|12:571;3|11:11|12:572;3|11:11|12:573;3|11:11|12:574;3|11:11|12:575;3|11:11|12:576;3|11:11|12:577;p;1|3:76|4:578|6:579|7:7|8:8|9:8|10:7|3:76|3:76;n;3|11:420|12:580;3|11:13|12:581;3|11:13|12:582;3|11:13|12:583;3|11:13|12:584;3|11:13|12:585;p;1|4:586|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:587;3|11:187|12:256;p;1|4:588|5:91|6:471|17:8|7:8|10:7;n;4|18:8;3|11:412|12:589;3|11:412|12:590;3|11:163|12:591;p;1|4:592|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:593;p;1|3:76|4:594|5:70|6:595|7:8|10:8|3:76|3:76;n;3|11:274|12:596;3|11:172|12:597;3|11:274|12:598;3|11:172|12:599;p;1|'
  1587. ..'3:528|4:600|5:530|6:433|7:8|10:7|3:528|3:528;n;6;3|11:32|12:601;p;1|3:76|4:602|6:603|17:8|7:8|19:8|10:8|3:76|3:76;n;3|11:83|12:604;3|11:104|12:605;p;1|3:76|4:606|6:607|17:8|7:8|19:8|10:8|3:76|3:76;n;3|11:172|12:608;3|11:163|12:609;3|11:174|12:610;3|11:274|12:611;p;1|4:612|5:613|6:614|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:615|5:70|6:523|7:8|10:8|3:76|3:76;n;3|11:487|12:616;3|11:15|12:514;p;1|3:67|16:68|4:617|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:182|12:618;3|11:184|12:493;p;1|4:619|5:30|6:112|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:620|5:30|6:621|7:8|10:8|3:76|3:76;1|3:76|4:622|5:70|6:623|7:7|10:7|3:76|3:76;n;3|11:11|12:624;3|11:13|12:625;p;1'
  1588. ..'|3:76|4:626|6:161|7:8|10:8|3:76|3:76;n;3|11:237|12:248;p;1|4:627|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:256;p;1|4:628|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:254;p;1|4:629|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:191;3|11:163|12:630;p;1|3:76|4:631|5:30|6:632|7:8|10:8|3:76|3:76;n;3|11:174|12:633;p;1|4:634|5:199|6:635|17:8|7:8|10:7;n;4|18:8;3|11:636|12:637;p;1|4:638|5:199|6:639|17:8|7:8|10:7;n;4|18:8;p;1|4:640|5:401|6:614|17:8|7:8|10:7;n;4|18:8;3|11:338|12:641;p;2;n;1|4:642|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:242;p;1|4:643|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:67|16:68|4:644|6:178|7:8|8:8|9:8|10:8|3:6'
  1589. ..'7|3:67;n;3|11:184|12:185;3|11:274|12:645;p;1|4:646|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:189;p;1|3:76|4:647|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:648;p;1|4:649|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:650;p;p;1|4:651|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:188;3|11:163|12:630;p;1|3:76|4:652|5:70|6:653|7:8|10:8|3:76|3:76;n;3|11:274|12:654;3|11:172|12:655;3|11:426|12:656;p;1|3:76|4:657|6:161|7:8|10:8|3:76|3:76;n;3|11:172|12:658;3|11:140|12:162;3|11:237|12:238;p;1|4:659|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:660|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:661|5:30|6:632|7:8|10:8|3:76|3:76;n;3|11:163|12:662;3|1'
  1590. ..'1:163|12:663;3|11:174|12:664;3|11:274|12:665;p;1|3:67|16:68|4:666|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:172|12:667;3|11:182|12:183;3|11:184|12:185;p;1|3:76|4:668|6:548|17:8|7:8|8:8|9:8|10:7|3:76|3:76;n;3|11:83|12:550;3|11:83|12:551;3|11:426|12:669;3|11:85|12:670;3|11:180|12:671;p;1|3:528|4:672|5:530|6:531|7:8|10:7|3:528|3:528;n;6;p;1|3:76|4:673|6:452|17:8|7:8|10:8|3:76|3:76;n;3|11:184|12:674;3|11:172|12:675;3|11:184|12:676;3|11:163|12:677;3|11:184|12:678;3|11:274|12:679;p;1|3:680|4:681|5:682|6:683|17:8|7:7|10:8|3:680|3:680;1|1:684|4:685|6:429|17:8|7:7|19:8|8:8|9:8|10:7;n;11|23:686;12|24:687|25:686;3|11:420|12:688;3|11:465|12:689;3|'
  1591. ..'11:11|12:690;3|11:555|12:691;p;1|3:76|4:692|6:419|17:8|7:7|8:8|9:8|10:8|3:76|3:76;n;3|11:13|12:422;3|11:11|12:693;3|11:13|12:424;p;1|3:76|4:694|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:648;3|11:172|12:695;3|11:140|12:696;3|11:237|12:239;3|11:237|12:238;3|11:140|12:162;p;1|4:697|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:698|6:438|7:8|8:8|10:8|3:76|3:76;n;3|11:237|12:699;3|11:700|12:701;3|11:702|12:703;3|11:140|12:704;p;1|4:705|6:706|7:7|9:8|10:7;n;3|11:13|12:707;3|11:11|12:708;p;1|3:67|16:68|4:709|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:172|12:710;p;1|3:76|4:711|5:70|6:595|7:8|10:8|3:76|3:76;n;3|11:274|12:712;3|11:274|12:713;3|11:17'
  1592. ..'2|12:714;p;1|4:715|5:716|6:535|17:8|7:7|10:7;n;4|18:8;3|11:187|12:717;3|11:187|12:718;3|11:163|12:719;3|11:187|12:720;3|11:187|12:721;3|11:163|12:722;p;1|4:723|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:67|16:68|4:724|6:476|7:8|8:8|9:8|10:8|3:67|3:67;1|4:725|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:726|5:716|6:727|7:8|10:7;n;4|18:8;3|11:412|12:728;3|11:163|12:729;3|11:163|12:730;p;1|4:731|5:166|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:630;p;1|3:76|4:732|6:438|7:8|9:8|10:8|3:76|3:76;n;3|11:237|12:733;p;1|4:734|5:169|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:735|6:607|17:8|7:8|19:8|10:8|3:76|3:76;n;3|11:172|12:736;3|11:163|12:737;3|11:174|'
  1593. ..'12:738;3|11:174|12:739;3|11:21|12:740;3|11:274|12:741;p;1|4:742|6:743|7:7|8:8|9:8|10:8;n;3|11:744|12:745;3|11:11|12:746;3|11:11|12:747;3|11:11|12:748;3|11:11|12:749;3|11:11|12:750;3|11:11|12:751;3|11:11|12:752;3|11:11|12:753;3|11:11|12:754;3|11:11|12:755;3|11:11|12:756;3|11:11|12:757;3|11:11|12:758;3|11:11|12:759;3|11:11|12:760;3|11:11|12:761;3|11:11|12:762;3|11:11|12:763;3|11:156|12:764;3|11:11|12:765;3|11:11|12:766;3|11:13|12:767;3|11:11|12:768;3|11:11|12:769;3|11:11|12:770;3|11:11|12:771;3|11:772|12:773;3|11:158|12:774;3|11:11|12:775;3|11:13|12:776;p;1|3:76|4:777|6:526|17:8|7:8|19:8|10:8|3:76|3:76;n;3|11:172|12:778;3|11:519|12:779'
  1594. ..';3|11:104|12:609;3|11:21|12:780;3|11:274|12:781;p;1|3:76|4:782|5:716|6:783|7:8|10:7|3:76|3:76;n;4|18:8;3|11:412|12:784;3|11:412|12:785;p;2;n;1|4:786|5:613|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:787|5:387|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:788;p;1|3:67|16:68|4:789|5:30|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:182|12:790;3|11:184|12:185;p;1|4:791|5:613|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:792;3|11:187|12:188;p;1|3:76|4:793|5:30|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:162;p;1|4:794|5:387|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:795;p;p;1|1:796|3:28|4:797|5:30|24:798|6:799|7:8|10:7|3:28|3:28;n;4|15:800|18:366;p;1|4:801|5:802|6:635|17'
  1595. ..':8|7:8|10:7;n;4|18:8;3|11:636|12:803;p;1|3:76|4:804|5:70|6:805|7:8|10:8|3:76|3:76;n;3|11:180|12:806;3|11:807|12:808;3|11:180|12:809;3|11:187|12:810;3|11:426|12:811;p;1|4:812|5:802|6:639|17:8|7:8|10:7;n;4|18:8;p;1|3:680|4:813|5:814|6:815|7:7|10:8|3:680|3:680;n;3|11:41|12:816;3|11:41|12:817;p;1|3:76|4:818|6:819|17:8|7:8|19:8|10:8|3:76|3:76;n;3|11:172|12:820;3|11:821|12:822;p;2;n;1|4:823|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:824|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:189;p;1|3:67|16:68|4:825|6:178|7:8|8:8|9:8|10:8|3:67|3:67;1|4:826|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:827|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:162;3|'
  1596. ..'11:140|12:648;3|11:237|12:238;3|11:237|12:239;3|11:140|12:696;3|11:237|12:676;3|11:274|12:828;p;1|4:829|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:187|12:261;3|11:163|12:830;p;p;1|4:831|5:716|6:471|17:8|7:8|10:7;n;4|18:8;p;2;n;1|4:832|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|4:833|5:169|6:167|17:8|7:8|10:7;n;4|18:8;3|11:163|12:189;p;1|3:67|16:68|4:834|6:178|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:182|12:835;3|11:172|12:836;3|11:184|12:185;3|11:274|12:837;p;1|4:838|5:166|6:167|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:839|6:161|7:8|10:8|3:76|3:76;n;3|11:140|12:162;3|11:140|12:648;3|11:237|12:676;3|11:237|12:238;3|11:274|12:840;p;1|4:841|5:169|6:167|17:8'
  1597. ..'|7:8|10:7;n;4|18:8;p;p;1|4:842|5:30|6:112|17:8|7:8|10:7;n;4|18:8;3|11:127|12:843;3|11:113|12:844;p;1|3:76|4:845|6:846|17:8|7:7|19:8|10:7|3:76|3:76;n;3|11:519|12:847;3|11:848|12:849;3|11:11|12:850;3|11:13|12:851;3|11:852|12:853;p;1|1:854|4:855|5:814|6:856|7:8|8:8|10:8;n;3|11:857|12:858;3|11:857|12:859;p;1|4:860|6:861|7:7|8:8|9:8|10:8;1|3:76|4:862|5:70|6:805|7:8|10:8|3:76|3:76;n;3|11:426|12:863;3|11:807|12:808;p;1|3:864|26:865|16:866|4:867|5:868|6:869|17:8|7:8|19:8|8:8|9:8|10:7|3:864|3:864;n;3|11:32|12:870;3|11:104|12:871;p;1|3:76|4:872|5:70|6:653|7:8|10:8|3:76|3:76;n;3|11:172|12:873;3|11:426|12:874;p;2|1:875;n;1|1:876|3:877|16:369|4:8'
  1598. ..'78|5:70|6:879|27:880|17:8|7:8|19:8|8:8|9:8|10:8|3:877|3:877;n;10;p;1|1:875|3:881|4:882|5:70|6:879|7:8|8:8|9:8|10:8|3:881|3:881;n;3|11:807|12:382;3|11:426|12:883;3|11:127|12:884;p;1|1:876|3:877|16:369|4:885|5:70|6:879|27:880|17:8|7:8|19:8|8:8|9:8|10:8|3:877|3:877;n;10;3|11:187|12:886;p;p;1|3:864|26:865|16:866|4:887|5:868|6:888|17:8|7:8|19:8|8:8|9:8|10:7|3:864|3:864;n;3|11:163|12:889;p;1|3:76|4:890|6:891|7:7|10:8|3:76|3:76;n;3|11:848|12:892;p;1|3:76|4:893|6:891|7:8|10:8|3:76|3:76;n;3|11:852|12:894;3|11:848|12:895;3|11:848|12:896;3|11:848|12:897;3|11:898|12:899;3|11:852|12:900;3|11:172|12:901;3|11:852|12:902;3|11:852|12:903;3|11:852|12:'
  1599. ..'904;3|11:848|12:905;3|11:898|12:906;p;1|3:76|4:907|6:526|17:8|7:8|19:8|10:8|3:76|3:76;n;3|11:519|12:908;3|11:172|12:909;3|11:519|12:910;3|11:274|12:911;p;1|3:76|4:912|6:913|7:8|19:8|10:7|3:76|3:76;n;3|11:426|12:914;3|11:21|12:915;3|11:21|12:916;3|11:21|12:917;3|11:21|12:918;3|11:21|12:919;3|11:636|12:920;p;1|1:921|3:922|4:923|5:682|6:888|7:7|10:8|3:922|3:922;1|1:924|3:922|4:925|5:682|6:926|7:7|10:8|3:922|3:922;1|3:76|4:927|5:70|6:928|7:8|19:8|10:8|3:76|3:76;n;3|11:898|12:929;3|11:15|12:930;3|11:15|12:931;3|11:15|12:932;3|11:274|12:933;p;1|3:76|4:934|6:935|7:7|19:8|8:8|9:8|10:7|3:76|3:76;n;3|11:848|12:936;p;1|3:67|16:68|4:937|6:938|7:'
  1600. ..'8|8:8|10:8|3:67|3:67;n;3|11:487|12:939;3|11:485|12:940;3|11:941|12:942;3|11:485|12:943;p;1|3:76|4:944|6:603|17:8|7:8|19:8|10:8|3:76|3:76;1|4:945|5:814|6:946|7:7|19:8|10:7;n;3|11:947|12:948;3|11:174|12:949;3|11:947|12:950;p;1|4:951|5:952|6:953|27:880|17:8|7:8|10:7;n;4|18:8;3|11:180|12:954;p;1|3:955|4:956|5:868|6:957|7:7|10:7|3:955|3:955;1|3:76|4:958|5:70|6:959|7:7|10:8|3:76|3:76;n;3|11:15|12:960;3|11:15|12:961;3|11:15|12:962;3|11:963|12:964;3|11:965|12:966;3|11:965|12:967;3|11:15|12:968;3|11:15|12:969;3|11:15|12:970;3|11:15|12:971;3|11:15|12:972;3|11:378|12:973;3|11:15|12:974;3|11:15|12:975;3|11:15|12:976;3|11:378|12:977;3|11:15|12:97'
  1601. ..'8;3|11:15|12:979;p;1|3:76|4:980|6:981|17:8|7:8|19:8|8:8|9:8|10:8|3:76|3:76;n;6;3|11:982|12:983;3|11:13|12:984;p;1|4:985|5:401|6:986|17:8|7:8|10:7;n;4|18:8;3|11:163|12:987;3|11:700|12:988;p;1|4:989|5:401|6:986|17:8|7:8|10:7;n;4|18:8;3|11:163|12:990;p;1|4:991|5:352|6:992|17:8|7:8|10:7;n;4|18:8;3|11:993|12:994;p;13|1:995|3:955|4:996|5:30|6:365|7:8|10:8|3:955|3:955;n;12|1:997|24:998|25:687;11|1:999|23:687|28:1000|29:1001;14|1:1002|30:370;14|1:1003|30:1000;14|1:1004|30:370;14|1:1005|30:1006;14|1:1007|30:1000;14|1:1008|30:1009;15|1:1010|30:1011;15|1:1010|30:1012;15|1:1010|30:1011;15|1:1010|30:1012;15|1:1010|30:1013;15|1:1010|30:1014;15|1:1'
  1602. ..'010|30:1015;15|1:1010|30:1016;15|1:1010|30:1017;15|1:1010|30:1018;15|1:1010|30:1019;15|1:1010|30:1020;15|1:1010|30:1021;10|1:1022;15|1:1010|30:1023;15|1:1010|30:1024;15|1:1010|30:1025;15|1:1010|30:1026;15|1:1010|30:1026;15|1:1010|30:1027;15|1:1010|30:1027;15|1:1010|30:1028;15|1:1010|30:1029;10|1:1030;n;16|1:1031;n;10|1:1031;p;17|1:1032;n;18|1:1033|4:1034|6:1035|31:1036|32:1037|33:1038|34:1039|35:1040;n;18|1:1041|4:1042|6:1043|31:1044|32:1045|33:1041|34:1046|35:1047;n;18|1:1048|4:1049|6:1050|31:1051|32:1045|33:1052|34:1046|35:1040|36:7;p;18|1:1053|4:1054|6:1043|31:1044|32:1055|33:1053|34:1056|35:1047;n;18|1:1048|4:1049|6:1050|31:1036|'
  1603. ..'32:1055|33:1057|34:1056|35:1040|36:7;p;18|1:1058|4:1059|6:1043|31:1044|32:1060|33:1058|34:1061|35:1047;n;18|1:1048|4:1049|6:1050|31:1036|32:1060|33:1062|34:1061|35:1040|36:7;p;18|1:1063|4:1064|6:1043|31:1044|32:1065|33:1063|34:1066|35:1047;n;18|1:1048|4:1049|6:1050|31:1036|32:1065|33:1067|34:1066|35:1040|36:7;p;18|1:1068|4:1069|6:1043|31:1044|32:1070|33:1068|34:1071|35:1072;n;18|1:1048|4:1049|6:1050|31:1036|32:1070|33:1073|34:1071|35:1040|36:7;p;18|1:1074|4:1075|6:1043|31:1044|32:1070|33:1074|34:1071|35:1047;n;18|1:1048|4:1049|6:1050|31:1036|32:1070|33:1076|34:1071|35:1040|36:7;p;p;p;p;3|11:32|12:1077;p;1|3:76|4:1078|6:935|7:7|19:8|8'
  1604. ..':8|9:8|10:7|3:76|3:76;n;3|11:848|12:1079;p;1|4:1080|5:199|6:953|27:880|17:8|7:8|10:7;n;4|18:8;3|11:85|12:1081;p;1|3:76|4:1082|6:1083|7:7|8:8|9:8|10:8|3:76|3:76;n;3|11:1084|12:1085;3|11:13|12:1086;3|11:13|12:1087;3|11:11|12:1088;3|11:13|12:1089;3|11:13|12:1090;3|11:13|12:1091;3|11:1092|12:1093;p;1|3:76|4:1094|6:913|7:8|19:8|10:7|3:76|3:76;1|4:1095|5:613|6:986|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:1096|6:935|7:7|19:8|8:8|9:8|10:7|3:76|3:76;n;3|11:848|12:1097;p;1|4:1098|5:613|6:986|17:8|7:8|10:7;n;4|18:8;3|11:163|12:1099;3|11:700|12:1100;p;1|3:76|4:1101|5:70|6:1102|17:8|7:7|10:8|3:76|3:76;n;3|11:1103|12:1104;3|11:83|12:1105;p;1|3:76|4:1106|'
  1605. ..'6:1107|7:7|19:8|10:7|3:76|3:76;n;3|11:11|12:1108;3|11:11|12:1109;3|11:11|12:1110;3|11:1111|12:1112;3|11:1111|12:1113;3|11:13|12:1114;3|11:13|12:1115;3|11:11|12:1116;3|11:13|12:1117;3|11:1118|12:1119;p;1|3:76|4:1120|6:1121|17:8|7:7|19:8|8:8|10:7|3:76|3:76;n;3|11:237|12:1122;p;1|3:76|4:1123|6:1124|17:8|7:7|19:8|8:8|10:7|3:76|3:76;n;3|11:11|12:1125;p;1|3:76|4:1126|5:70|6:1127|7:7|10:8|3:76|3:76;n;3|11:163|12:1128;3|11:83|12:1129;3|11:85|12:1130;3|11:174|12:1131;p;1|3:76|4:1132|6:1133|17:8|7:7|19:8|8:8|9:8|10:7|3:76|3:76;n;3|11:11|12:1134;3|11:11|12:1135;p;1|1:1136|3:346|4:1137|5:682|6:365|7:7|10:8|3:346|3:346;n;3|11:41|12:1138;p;1|4:113'
  1606. ..'9|5:352|6:992|17:8|7:8|10:7;n;4|18:8;p;1|3:76|4:1140|6:938|7:8|10:7|3:76|3:76;n;3|11:180|12:1141;3|11:487|12:1142;3|11:180|12:1143;p;1|3:67|16:68|4:1144|5:70|6:1145|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:1146|12:16;3|11:172|12:1147;3|11:1148|12:22;3|11:274|12:1149;p;1|4:1150|5:70|6:1151|7:8|10:7;1|1:1152|3:1153|4:1154|5:868|6:888|7:7|10:8|3:1153|3:1153;1|3:76|4:1155|6:935|7:7|19:8|8:8|9:8|10:7|3:76|3:76;n;3|11:848|12:1156;3|11:852|12:1157;3|11:426|12:1158;p;1|3:76|4:1159|6:935|7:7|19:8|8:8|9:8|10:7|3:76|3:76;n;3|11:848|12:1160;p;1|3:76|4:1161|6:1121|17:8|7:7|19:8|9:8|10:7|3:76|3:76;1|3:955|4:1162|5:432|6:365|7:7|9:8|10:8|3:955|3:955;n;3|1'
  1607. ..'1:41|12:1163;3|11:294|12:16;p;1|3:680|4:1164|5:70|6:365|7:8|10:7|3:680|3:680;n;3|11:32|12:1165;3|11:41|12:1166;p;1|1:1167|3:922|4:1168|5:682|6:888|7:7|10:8|3:922|3:922;13|3:76|4:1169|5:30|6:1170|7:8|10:8|3:76|3:76;n;6;p;1|1:1171|3:922|4:1172|5:682|6:926|7:7|10:8|3:922|3:922;n;3|11:41|12:1173;p;1|3:76|4:1174|5:70|6:1175|7:7|10:7|3:76|3:76;n;3|11:11|12:1176;p;1|3:76|4:1177|5:70|6:1178|7:7|19:8|10:7|3:76|3:76;n;3|11:13|12:1179;3|11:13|12:1180;3|11:898|12:1181;p;1|3:76|4:1182|6:981|17:8|7:8|19:8|8:8|9:8|10:8|3:76|3:76;n;6;p;1|3:76|4:1183|5:70|6:1184|7:8|10:8|3:76|3:76;n;3|11:187|12:1185;3|11:187|12:1186;3|11:187|12:1187;p;1|3:76|4:1188|5'
  1608. ..':70|6:1102|17:8|7:7|10:8|3:76|3:76;n;3|11:83|12:1189;p;1|4:1190|5:70|6:468|7:8|10:7;1|3:76|4:1191|6:935|7:8|19:8|8:8|9:8|10:7|3:76|3:76;n;3|11:848|12:1192;3|11:13|12:1193;p;1|3:864|26:865|16:866|4:1194|5:868|6:869|17:8|7:7|19:8|8:8|10:8|3:864|3:864;n;3|11:519|12:1195;3|11:41|12:1196;p;1|4:1197|5:70|6:1198|7:8|10:7;n;3|11:32|12:1199;3|11:41|12:1200;3|11:41|12:1201;3|11:41|12:1202;p;1|4:1203|5:70|6:1204|7:8|10:7;n;3|11:13|12:1205;3|11:13|12:1206;3|11:11|12:1207;p;1|3:76|4:1208|5:70|6:1127|7:8|10:8|3:76|3:76;n;3|11:83|12:1209;p;1|3:76|4:1210|6:1211|7:7|19:8|8:8|10:7|3:76|3:76;1|3:76|4:1212|6:1107|7:7|19:8|8:8|10:7|3:76|3:76;n;3|11:11|12'
  1609. ..':1213;3|11:11|12:1214;3|11:1215|12:1216;3|11:11|12:1217;3|11:11|12:1218;3|11:13|12:1219;3|11:11|12:1220;3|11:1215|12:1221;3|11:11|12:1222;3|11:941|12:1223;3|11:11|12:1224;3|11:11|12:1225;3|11:11|12:1226;3|11:11|12:1227;3|11:11|12:1228;3|11:1111|12:1112;3|11:11|12:1229;3|11:11|12:1230;3|11:11|12:1231;3|11:11|12:1232;3|11:11|12:1233;3|11:11|12:1234;3|11:11|12:1235;3|11:1111|12:1236;3|11:11|12:1237;3|11:13|12:1238;3|11:941|12:1239;p;1|4:1240|5:70|6:953|17:8|7:8|10:7;n;4|18:8;3|11:180|12:1241;p;1|3:76|4:1242|6:869|17:8|7:7|19:8|10:7|3:76|3:76;1|4:1243|5:5|6:1244|7:8|10:7;n;4|18:8;3|11:113|12:1245;p;1|3:76|4:1246|6:869|17:8|7:7|19:8|10:7|'
  1610. ..'3:76|3:76;n;3|11:104|12:1247;p;1|4:1248|5:70|6:953|17:8|7:8|10:7;n;4|18:8;p;1|4:1249|5:384|6:1250|17:8|7:7|10:7;n;4|18:8;3|11:21|12:1251;3|11:21|12:1252;3|11:21|12:1253;3|11:21|12:1254;3|11:21|12:1255;p;1|3:76|4:1256|6:1083|7:7|8:8|9:8|10:8|3:76|3:76;n;3|11:13|12:1087;3|11:13|12:1086;3|11:11|12:1257;3|11:13|12:1089;p;1|3:76|4:1258|6:869|17:8|7:7|19:8|10:7|3:76|3:76;n;3|11:104|12:1259;p;1|4:1260|5:384|6:1250|17:8|7:7|10:7;n;4|18:8;3|11:15|12:1261;p;1|3:76|4:1262|6:1211|7:7|19:8|8:8|10:7|3:76|3:76;1|3:76|4:1263|5:30|6:1264|7:7|19:8|8:8|10:7|3:76|3:76;n;3|11:426|12:739;3|11:426|12:1265;3|11:426|12:1266;p;1|4:1267|5:1268|6:953|17:8|7:8|1'
  1611. ..'0:7;n;4|18:8;p;1|3:76|4:1269|6:869|17:8|7:7|19:8|10:7|3:76|3:76;n;3|11:104|12:1270;p;1|3:76|4:1271|6:1272|7:7|8:8|9:8|10:7|3:76|3:76;n;3|11:1273|12:1274;3|11:1275|12:1276;p;1|4:1277|5:1268|6:1278|7:8|10:7;n;4|18:8;3|11:1279|12:1280;3|11:1281|12:1282;3|11:1281|12:1283;p;1|3:76|4:1284|6:607|17:8|7:8|19:8|10:8|3:76|3:76;n;3|11:172|12:1285;3|11:174|12:738;3|11:15|12:950;3|11:174|12:739;3|11:163|12:1286;p;1|4:1287|5:30|6:953|17:8|7:8|10:7;n;4|18:8;3|11:180|12:1288;p;1|3:76|4:1289|6:1264|7:7|19:8|8:8|10:7|3:76|3:76;n;3|11:15|12:910;3|11:15|12:1290;3|11:426|12:1291;3|11:15|12:1292;p;1|4:1293|5:5|6:953|17:8|7:8|10:7;n;4|18:8;p;1|4:1294|5:126'
  1612. ..'8|6:953|17:8|7:8|10:7;n;4|18:8;3|11:180|12:1295;p;1|3:76|4:1296|6:819|17:8|7:8|19:8|10:8|3:76|3:76;n;3|11:172|12:1297;3|11:821|12:1298;p;1|3:76|4:1299|6:1300|7:8|10:8|3:76|3:76;n;3|11:898|12:1301;3|11:360|12:892;3|11:360|12:1302;3|11:360|12:1303;p;1|3:76|4:1304|6:1211|7:7|19:8|8:8|10:7|3:76|3:76;1|4:1305|5:1268|6:953|17:8|7:8|10:7;n;4|18:8;3|11:85|12:1306;3|11:180|12:1295;p;1|3:864|26:865|16:866|4:1307|5:868|6:888|17:8|7:7|19:8|8:8|9:8|10:8|3:864|3:864;1|1:1308|3:1153|4:1309|5:868|6:888|7:7|10:8|3:1153|3:1153;1|4:1310|5:387|6:992|17:8|7:8|10:7;n;4|18:8;3|11:993|12:1311;p;1|3:76|4:1312|5:70|6:928|7:8|19:8|10:8|3:76|3:76;n;3|11:898|12:'
  1613. ..'1313;3|11:21|12:1314;3|11:21|12:1315;3|11:898|12:1316;3|11:21|12:932;3|11:172|12:1317;3|11:274|12:1318;p;1|4:1319|5:387|6:992|17:8|7:8|10:7;n;4|18:8;3|11:993|12:1320;p;2|1:1321;n;1|3:680|4:1322|6:365|7:8|10:7|3:680|3:680;1|3:955|4:1323|5:88|6:365|7:7|9:8|10:7|3:955|3:955;n;3|11:41|12:1324;3|11:294|12:16;p;1|3:955|4:1325|5:802|6:957|7:7|10:7|3:955|3:955;13|3:76|4:1326|5:454|6:1170|7:8|10:8|3:76|3:76;n;6;3|11:857|12:1327;3|11:1328|12:1329;p;1|3:955|4:1330|6:365|27:880|19:8|10:7|3:955|3:955;p;1|4:1331|5:30|6:953|17:8|7:8|10:7;n;4|18:8;3|11:180|12:1332;p;1|4:1333|5:1268|6:953|17:8|7:8|10:7;n;4|18:8;3|11:85|12:1334;3|11:180|12:1335;p;1|4:'
  1614. ..'1336|6:861|7:7|8:8|9:8|10:8;n;3|11:1337|12:1338;p;1|4:1339|5:70|6:1151|7:8|10:7;n;3|11:13|12:1340;p;2|1:875;n;1|1:876|3:877|16:369|4:1341|5:70|6:879|27:880|17:8|7:8|19:8|8:8|9:8|10:8|3:877|3:877;n;10;3|11:122|12:1342;3|11:180|12:1343;p;1|1:875|3:881|4:1344|5:70|6:879|7:8|8:8|9:8|10:8|3:881|3:881;n;3|11:807|12:382;p;1|1:876|3:877|16:369|4:1345|5:70|6:879|27:880|17:8|7:8|19:8|8:8|9:8|10:8|3:877|3:877;n;10;3|11:426|12:883;3|11:127|12:1346;p;p;2|1:1347;n;10|1:1348;1|1:1349|3:922|4:1350|5:868|6:1351|17:8|7:8|19:8|8:8|9:8|10:7|3:922|3:922;n;6;3|11:32|12:870;p;1|1:1352|3:881|16:369|4:1353|6:1354|27:880|7:8|8:8|9:8|10:8|3:881|3:881;n;3|11:10'
  1615. ..'84|12:1355;3|11:1092|12:1356;p;1|1:1357|3:881|4:1358|6:1354|7:8|8:8|9:8|10:8|3:881|3:881;1|1:1359|3:864|4:1360|5:952|6:957|7:8|8:8|10:8|3:864|3:864;n;8|22:1361;6;3|11:41|12:1362;p;1|1:1363|3:864|4:1364|5:952|6:957|7:8|8:8|10:7|3:864|3:864;n;8|22:1361;6;p;1|1:1365|3:864|4:1366|5:952|6:957|7:8|8:8|10:7|3:864|3:864;n;8|22:1361;6;3|11:32|12:1367;p;1|1:1368|3:864|4:1369|5:952|6:957|7:8|8:8|10:8|3:864|3:864;n;8|22:1361;6;3|11:41|12:1362;p;p;1|4:1370|5:70|6:953|17:8|7:8|10:7;n;4|18:8;p;1|4:1371|5:30|6:953|17:8|7:7|10:7;n;4|18:8;p;1|3:76|4:1372|5:70|6:1184|7:7|10:8|3:76|3:76;n;3|11:807|12:1373;p;1|4:1374|5:454|6:1375|7:8|10:7;1|3:1376|37:137'
  1616. ..'7|4:1378|5:30|6:1379|7:8|10:7|3:1376|3:1376;n;3|11:32|12:1380;p;1|3:1376|37:1377|4:1381|5:454|6:1382|7:8|10:7|3:1376|3:1376;1|3:76|4:1383|6:1300|7:8|10:8|3:76|3:76;n;3|11:172|12:1384;3|11:360|12:892;3|11:360|12:1385;3|11:360|12:897;3|11:360|12:1386;3|11:898|12:1387;3|11:360|12:1388;p;1|4:1389|5:70|6:683|7:8|10:7;n;3|11:83|12:1390;3|11:85|12:1391;p;1|4:1392|5:30|6:953|17:8|7:8|10:7;n;4|18:8;p;1|3:67|16:68|4:1393|6:938|7:8|8:8|10:8|3:67|3:67;n;3|11:485|12:1394;3|11:485|12:943;p;1|3:76|4:1395|6:938|7:7|8:8|10:7|3:76|3:76;n;3|11:485|12:1396;p;1|4:1397|5:5|6:953|17:8|7:8|10:7;n;4|18:8;3|11:180|12:1398;p;1|4:1399|5:5|6:953|17:8|7:8|10:7;n;'
  1617. ..'4|18:8;p;1|4:1400|5:70|6:953|17:8|7:8|10:7;n;4|18:8;p;1|4:1401|5:5|6:953|17:8|7:8|10:7;n;4|18:8;p;1|16:68|4:1402|5:530|6:1403|17:8|7:8|10:7;n;4|18:8;3|11:1404|12:1405;p;1|16:68|4:1406|5:387|6:1407|17:8|7:7|10:7;n;4|18:8;3|11:487|12:223;p;1|16:68|4:1408|5:613|6:1409|17:8|7:8|10:7;n;4|18:8;3|11:982|12:1410;p;1|4:1411|5:454|6:1412|7:7|8:8|9:8|10:7;n;3|11:11|12:1413;3|11:1414|12:1415;3|11:1416|12:185;3|11:1417|12:1418;3|11:13|12:1419;p;1|16:68|4:1420|5:387|6:1403|7:7|10:7;n;4|18:8;3|11:1416|12:1421;p;1|4:1422|5:814|6:1423|17:8|7:8|10:7;n;4|18:8;3|11:412|12:1424;p;1|16:68|4:1425|5:352|6:1403|7:7|10:7;n;4|18:8;3|11:85|12:1426;p;1|16:68|4:1'
  1618. ..'427|5:401|6:1409|17:8|7:8|10:7;n;4|18:8;3|11:982|12:1428;3|11:85|12:1429;p;1|4:1430|5:814|6:1423|17:8|7:8|10:7;n;4|18:8;p;1|16:68|4:1431|5:682|6:1403|17:8|7:8|10:7;n;4|18:8;p;1|4:1432|5:454|6:1412|7:7|8:8|9:8|10:7;n;3|11:1414|12:1433;3|11:1434|12:1435;3|11:1434|12:1436;3|11:1416|12:1437;3|11:13|12:1438;p;1|16:68|4:1439|5:454|6:1440|17:8|7:7|19:8|8:8|9:8|10:7;n;3|11:1441|12:1442;3|11:1443|12:1444;3|11:1445|12:1446;p;1|4:1447|5:384|6:1448|7:8|10:7;n;4|18:8;3|11:1449|12:1450;3|11:519|12:1451;p;1|16:68|4:1452|5:352|6:1407|17:8|7:7|10:7;n;4|18:8;p;1|3:76|4:1453|5:30|6:1454|17:8|7:7|10:7|3:76|3:76;n;3|11:11|12:1455;3|11:1456|12:1457;3|11:1'
  1619. ..'456|12:1458;3|11:11|12:1459;3|11:13|12:1460;3|11:13|12:1461;3|11:11|12:1462;3|11:11|12:1463;3|11:11|12:1464;3|11:11|12:1465;3|11:1466|12:1467;3|11:11|12:1468;3|11:11|12:1469;3|11:11|12:1470;p;1|4:1471|5:384|6:1448|7:8|10:7;n;4|18:8;3|11:1449|12:1450;p;1|4:1472|5:352|6:1473|17:8|7:7|10:7;n;4|18:8;p;1|4:1474|5:387|6:1475|17:8|7:7|10:7;n;4|18:8;3|11:85|12:1476;3|11:1404|12:1477;p;1|16:68|4:1478|5:454|6:130|17:8|7:8|19:8|10:8;n;3|11:81|12:1479;3|11:79|12:1480;3|11:81|12:1481;3|11:79|12:1482;p;1|4:1483|5:454|6:484|17:8|7:7|19:8|10:7;n;3|11:15|12:1484;3|11:487|12:1485;p;1|4:1486|5:352|6:1475|17:8|7:7|10:7;n;4|18:8;3|11:1404|12:1487;3|11:85'
  1620. ..'|12:1488;p;1|16:68|4:1489|5:454|6:1490|17:8|7:8|19:8|10:8;n;3|11:487|12:1491;3|11:487|12:1492;3|11:487|12:1493;3|11:1443|12:1494;3|11:485|12:1495;3|11:1496|12:1497;p;2;n;2|1:344;n;1|1:345|3:346|4:1498|5:352|6:348|7:7|8:8|10:7|3:346|3:346;n;3|1:349;4|18:350;3|11:360|12:385;p;p;1|3:76|4:1499|5:384|6:353|17:8|7:8|19:8|8:8|9:8|10:8|3:76|3:76;n;6;3|11:294|12:1500;3|11:294|12:1501;3|11:358|12:1502;p;1|1:362|3:363|4:1503|5:91|6:365|17:8|7:366|19:366|8:366|9:366|10:7|3:363|3:363;n;7|1:367|20:368|21:369;8|22:370;3|1:349;9;10|1:371;10|1:372;p;p;1|4:1504|5:454|6:1505|17:8|7:8|10:8;1|4:1506|5:454|6:1505|7:8|19:8|10:8;n;3|11:965|12:1507;3|11:821|'
  1621. ..'12:1429;3|11:15|12:1508;3|11:15|12:1509;p;1|3:67|4:1510|5:454|6:1511|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:122|12:1512;3|11:1513|12:1514;3|11:127|12:1515;3|11:1516|12:1517;3|11:127|12:1518;p;1|4:1519|5:387|6:1473|17:8|7:7|10:7;n;4|18:8;3|11:487|12:1520;p;2;n;2|1:344;n;1|1:345|3:346|4:1521|5:352|6:348|7:7|8:8|10:7|3:346|3:346;n;3|1:349;4|18:350;3|11:360|12:385;p;p;1|3:76|4:1522|5:384|6:353|17:8|7:8|19:8|8:8|9:8|10:8|3:76|3:76;n;6;3|11:360|12:1523;3|11:360|12:1524;p;1|1:362|3:363|4:1525|5:91|6:365|17:8|7:366|19:366|8:366|9:366|10:7|3:363|3:363;n;7|1:367|20:368|21:369;8|22:370;3|1:349;9;10|1:371;10|1:372;3|11:32|12:1526;p;p;1|4:1527|5:30|6:'
  1622. ..'1528|7:8|8:8|9:8|10:8;n;3|11:1529|12:1530;3|11:485|12:1531;3|11:485|12:1532;3|11:485|12:1533;3|11:1534|12:1535;p;2;n;2|1:344;n;1|1:345|3:346|4:1536|5:352|6:348|7:7|8:8|10:7|3:346|3:346;n;3|1:349;4|18:350;p;p;1|3:76|4:1537|5:384|6:353|17:8|7:8|19:8|8:8|9:8|10:8|3:76|3:76;n;6;3|11:360|12:1538;3|11:355|12:356;3|11:360|12:1539;3|11:163|12:1540;p;1|1:362|3:363|4:1541|5:91|6:365|17:8|7:366|19:366|8:366|9:366|10:7|3:363|3:363;n;7|1:367|20:368|21:369;8|22:370;3|1:349;9;10|1:371;10|1:372;3|11:32|12:1526;19|11:360|12:1542;p;p;2;n;2|1:344;n;1|1:345|3:346|4:1543|5:352|6:348|7:7|8:8|10:7|3:346|3:346;n;3|1:349;4|18:350;p;p;1|3:76|4:1544|5:384|6:35'
  1623. ..'3|17:8|7:8|19:8|8:8|9:8|10:8|3:76|3:76;n;6;3|11:355|12:356;3|11:294|12:1545;3|11:174|12:1546;3|11:294|12:1547;3|11:358|12:1502;p;1|1:362|3:363|4:1548|5:91|6:365|17:8|7:366|19:366|8:366|9:366|10:7|3:363|3:363;n;7|1:367|20:368|21:369;8|22:370;3|1:349;9;10|1:371;10|1:372;19|11:294|12:1549;p;p;1|3:67|4:1550|5:454|6:1511|7:8|8:8|9:8|10:8|3:67|3:67;n;3|11:1516|12:1517;p;2;n;1|4:1551|5:384|6:1552|17:8|7:7|10:7;n;4|18:8;3|11:1516|12:1553;3|11:1103|12:1554;p;1|4:1555|5:166|6:1556|7:8|10:7;n;4|18:8;p;p;2;n;1|4:1557|5:384|6:1552|17:8|7:7|10:7;n;4|18:8;p;1|4:1558|5:166|6:1556|7:8|10:7;n;4|18:8;3|11:519|12:1559;3|11:412|12:1560;3|11:412|12:1561;p'
  1624. ..';p;p;p;1|3:67|4:1562|5:169|6:1563|7:8|10:8|3:67|3:67;n;4;20|3:1564|6:1565|38:1566|39:1567|3:1564|3:1564;p;p;')
  1625. for _,Object in pairs(Objects) do
  1626. Object.Parent = script and script.Parent==workspace and script or workspace
  1627. end
  1628. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement