Advertisement
lafur

Untitled

May 22nd, 2020
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 53.34 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 33081
  3. local genv={}
  4. local Scripts = {
  5. function() off = false
  6.  
  7. function tuch(h)
  8. if off == false then
  9. off = true
  10. if h.Parent:findFirstChild("Humanoid") ~= nil then
  11. c = script.Parent.Parent.Tools:getChildren()
  12. for i = 1, #c do
  13. if c[i].className == "HopperBin" or "Tool" then
  14. c[i]:clone().Parent = game.Players:findFirstChild(h.Parent.Name).Backpack
  15. wait(1)
  16. off = false
  17. end
  18. end
  19. end
  20. end
  21. end
  22.  
  23. script.Parent.touched:connect(tuch) end;
  24. function() --[[
  25. This is the AUTO-GIVER that i pu together to make it easy for YOU
  26. to make a giver.
  27. Open up "Easy giver" and drag
  28. any tool into the "tool" section.
  29. THERE!hope u like your giver. Just run up against the green
  30. bar and u have your tool!
  31. CREATOR:GHOSTofRECON08
  32. ]] end;
  33. function() bin=script.Parent
  34. plane=nil
  35. hold=false
  36. local debounce = false
  37. local planedebounce = false
  38. local stuntdebounce = false
  39. local controlling = false
  40.  
  41.  
  42. function fire(pln,spn)
  43. local missile = bin.Rocket:clone()
  44. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  45.  
  46. missile.RocketScript.Disabled = false
  47. missile.Parent = game.Workspace
  48.  
  49. local creator_tag = Instance.new("ObjectValue")
  50. creator_tag.Value = game.Players.LocalPlayer
  51. creator_tag.Name = "creator"
  52. creator_tag.Parent = missile
  53.  
  54. missile.Owner.Value = pln
  55. end
  56.  
  57. function computeDirection(vec)
  58. local lenSquared = vec.magnitude * vec.magnitude
  59. local invSqrt = 1 / math.sqrt(lenSquared)
  60. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  61. end
  62.  
  63. function move(target, engine)
  64. local origincframe = engine:findFirstChild("BodyGyro").cframe
  65. local dir = (target - engine.Position).unit
  66. local spawnPos = engine.Position
  67.  
  68. local pos = spawnPos + (dir * 1)
  69.  
  70. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  71. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  72. wait(0.1)
  73. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  74. engine:findFirstChild("BodyGyro").cframe = origincframe
  75. end
  76.  
  77. function findPlane(player)
  78. local list = player.Character:GetChildren()
  79. for x = 1, #list do
  80. if (list[x].Name == "Plane") then
  81. local color_tag = list[x]:FindFirstChild("PlaneColor")
  82. if (color_tag ~= nil) then
  83. color_tag.Value = player.TeamColor
  84. end
  85. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  86. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  87. return list[x]
  88. end
  89. end
  90. end
  91. return nil
  92. end
  93.  
  94. function onButton1Down(mouse)
  95. local vehicle = findPlane(script.Parent.Parent.Parent)
  96. if vehicle ~= nil and debounce == false and planedebounce == false then
  97. debounce = true
  98.  
  99. controlling = true
  100.  
  101. while true do
  102. wait()
  103. local engine = vehicle.Parts.Engine
  104. local position = mouse.Hit
  105. local target = position.p
  106. if engine:findFirstChild("FlyScript") ~= nil then
  107. move(target, engine)
  108. end
  109. if planedebounce == true or
  110. controlling == false then break end
  111. end
  112. wait(.1)
  113. debounce = false
  114. end
  115. end
  116.  
  117. function onButton1Up(mouse)
  118. controlling = false
  119. end
  120.  
  121. function onSelected(mouse)
  122. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  123. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  124. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  125. mouse.KeyDown:connect(onKeyDown)
  126. end
  127.  
  128. function onKeyDown(key)
  129. if (key~=nil) then
  130. key = key:lower()
  131. local vehicle = findPlane(script.Parent.Parent.Parent)
  132. if (vehicle==nil) then return end
  133. plane = vehicle.Parts
  134. local engine = vehicle.Parts.Engine
  135. if (key=="f") and (bin.Reload.Value == 0) then
  136. fire(vehicle,plane.Gun1)
  137. fire(vehicle,plane.Gun2)
  138. bin.Reload.Value = 1
  139. wait(1)
  140. bin.Reload.Value = 0
  141. end
  142. if (key=="x") and planedebounce == false then
  143. local power = plane.Engine:findFirstChild("FlyScript")
  144. if (power ~= nil) then
  145. power:remove()
  146. end
  147. end
  148. if (key=="y") then
  149. local power = plane.Engine:findFirstChild("FlyScript")
  150. if (power ~= nil) then return end
  151. local fly = script.FlyScript:clone()
  152. fly.Disabled = false
  153. fly.Parent = plane.Engine
  154. end
  155. if (key=="k") and planedebounce == false then
  156. wait()
  157. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  158. wait()
  159. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  160. wait()
  161. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  162. wait()
  163. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  164. end
  165. if (key=="h") and planedebounce == false then
  166. wait()
  167. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  168. wait()
  169. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  170. wait()
  171. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  172. wait()
  173. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  174. return end
  175. if (key=="j") and planedebounce == false then
  176. local body = plane.Engine.BodyGyro
  177. body.maxTorque = Vector3.new(9000, 9000, 9000)
  178.  
  179. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  180. local dir = position - engine.Position
  181.  
  182. dir = computeDirection(dir)
  183.  
  184. local spawnPos = engine.Position
  185.  
  186. local pos = spawnPos + (dir * 8)
  187.  
  188. body.cframe = CFrame.new(pos, pos + dir)
  189. wait(.2)
  190. body.maxTorque = Vector3.new(0, 0, 0)
  191. end
  192. if (key=="l") and planedebounce == false then
  193. local body = plane.Engine.BodyGyro
  194. body.maxTorque = Vector3.new(9000, 0, 0)
  195. local frame = plane:FindFirstChild("OriginCFrame")
  196. if frame ~= nil then
  197. body.cframe = frame.Value
  198. end
  199. wait(0.1)
  200. body.maxTorque = Vector3.new(0, 0, 0)
  201. end
  202. if (key=="u") and planedebounce == false then
  203. local body = plane.Engine.BodyGyro
  204. body.maxTorque = Vector3.new(9000, 9000, 9000)
  205.  
  206. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  207. local dir = position - engine.Position
  208.  
  209. dir = computeDirection(dir)
  210.  
  211. local spawnPos = engine.Position
  212.  
  213. local pos = spawnPos + (dir * 8)
  214.  
  215. body.cframe = CFrame.new(pos, pos + dir)
  216. wait(.2)
  217. body.maxTorque = Vector3.new(0, 0, 0)
  218. end
  219. if (key=="g") and planedebounce == false and stuntdebounce == false then
  220. planedebounce = true
  221. stuntdebounce = true
  222. plane.Parent.Stunt.Value = 1
  223. local body = plane.Engine.BodyGyro
  224. body.maxTorque = Vector3.new(9000, 9000, 9000)
  225.  
  226. local currentframe = plane.Engine.CFrame
  227.  
  228. for i = 1,6 do
  229. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  230. wait(.2)
  231. end
  232.  
  233. body.cframe = currentframe
  234. wait(.6)
  235.  
  236. body.maxTorque = Vector3.new(0, 0, 0)
  237. planedebounce = false
  238. plane.Parent.Stunt.Value = 0
  239. wait(3)
  240. stuntdebounce = false
  241. end
  242. if (key=="t") and planedebounce == false and stuntdebounce == false then
  243. planedebounce = true
  244. stuntdebounce = true
  245. plane.Parent.Stunt.Value = 1
  246. local body = plane.Engine.BodyGyro
  247. body.maxTorque = Vector3.new(9000, 9000, 9000)
  248.  
  249. local currentframe = plane.Engine.CFrame
  250. local valy = 30
  251. local valz = 30
  252.  
  253. for i = 1,8 do
  254. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  255. valy = valy +50
  256. valz = valz +100
  257. wait(.1)
  258. end
  259.  
  260. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  261.  
  262. wait(.5)
  263.  
  264. body.maxTorque = Vector3.new(0, 0, 0)
  265. planedebounce = false
  266. plane.Parent.Stunt.Value = 0
  267. wait(4)
  268. stuntdebounce = false
  269. end
  270. end
  271. end
  272.  
  273. bin.Selected:connect(onSelected)
  274. end;
  275. function() local engine = script.Parent.Parent.Engine
  276. local spd = 3
  277. local position = engine.Position
  278.  
  279. while true do
  280. wait(.1)
  281. direction = engine.CFrame.lookVector
  282. position = position + spd*3*direction
  283. error = position - engine.Position
  284. engine.Velocity = spd*error
  285. engine.RotVelocity = Vector3.new(0, 0, 0)
  286. end
  287. end;
  288. function() --Made by EdduTheArdo, just group with the model to get it to work. This button also works for planes.
  289. --Do not change anything besides the lines mentioned below.
  290.  
  291. model = script.Parent.Parent--Indicates that the script interacts with the model the button is grouped with.
  292. messageText = "Regen"--If you want a message to appear upon pressing, type it here.
  293.  
  294. message = Instance.new("Message")
  295. message.Text = messageText
  296. backup = model:clone()
  297. enabled = true
  298.  
  299. function regenerate()
  300. message.Parent = game.Workspace
  301. model:remove()
  302.  
  303. wait(2)--Change this number to display the regen message as long as you want in seconds.
  304.  
  305. model = backup:clone()
  306. model.Parent = game.Workspace
  307. model:makeJoints()
  308. message.Parent = nil
  309.  
  310. script.Disabled = true
  311. script.Parent.BrickColor = BrickColor.new(26)--Black
  312. wait(10)--Change this number to change the time in between regenerations via the button, in seconds..
  313. script.Parent.BrickColor = BrickColor.new(104)--Purple
  314. script.Disabled = false
  315. end
  316.  
  317. function onHit(hit)
  318. if (hit.Parent:FindFirstChild("Humanoid") ~= nil) and enabled then
  319. regenerate()
  320. end
  321. end
  322.  
  323. script.Parent.Touched:connect(onHit)
  324.  
  325. --And it's done. If there's anything wrong with this button, PM me. -EdduTheArdo end;
  326. function() model = script.Parent.Parent.Parent
  327. backup = model:clone()
  328. local debounce = false
  329.  
  330. function onTouch(part)
  331. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  332. debounce = true
  333. wait(2)
  334. model = backup:clone()
  335. model.Parent = game.Workspace
  336. model:makeJoints()
  337. script.Parent.Count.Value = 1
  338. debounce = false
  339. end
  340. end
  341. script.Parent.Touched:connect(onTouch) end;
  342. function() position = script.Parent.Engine.Position
  343. local frame = Instance.new("CFrameValue")
  344. frame.Name = "OriginCFrame"
  345. frame.Value = script.Parent.Engine.CFrame
  346. frame.Parent = script.Parent
  347.  
  348. local object = Instance.new("ObjectValue")
  349. object.Value = script.Parent.Parent.Parent
  350.  
  351. seat = script.Parent.Seat
  352.  
  353. function onChildAdded(part)
  354. if part.className == "Weld" then
  355. local torso = part.Part1
  356. if torso ~= nil then
  357. local parent = torso.Parent
  358. if parent ~= nil then
  359. script.Parent.Parent.Parent = parent
  360. while true do
  361. wait(2)
  362. local pos = script.Parent.Engine.Position
  363. if (position - pos).magnitude > 30 then
  364. if object.Value ~= nil then
  365. object.Value.Regen.Value = 1
  366. wait(.5)
  367. object.Value.Regen.Value = 0
  368. object.Value = nil
  369. end
  370. break end
  371. end
  372. while true do
  373. print("Loop")
  374. wait(2)
  375. if part == nil then
  376. script.Parent.Parent.Parent = game.Workspace
  377. script.Parent.Parent:MakeJoints()
  378. break end
  379. end
  380. end
  381. end
  382. end
  383. end
  384. seat.ChildAdded:connect(onChildAdded) end;
  385. function() local boom = false
  386.  
  387. function createExplosion(position)
  388.  
  389. explosion = Instance.new("Explosion")
  390. explosion.Position = position
  391. explosion.BlastRadius = 12
  392. explosion.Parent = game.Workspace
  393.  
  394. end
  395.  
  396. function onTouch(part)
  397. if boom == true then return end
  398. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  399. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  400. boom = true
  401. createExplosion(script.Parent.Parts.Engine.Position)
  402. script.Parent:BreakJoints()
  403. local stuff = script.Parent:children()
  404. for i=1,#stuff do
  405. if stuff[i].Name == "BodyKit" or
  406. stuff[i].Name == "Parts" then
  407. local parts = stuff[i]:children()
  408. for p = 1, #parts do
  409. if parts[p].className == "Part" then
  410. local velo = Instance.new("BodyVelocity")
  411. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  412. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  413. velo.Parent = parts[p]
  414. end
  415. end
  416. end
  417. end
  418. wait(4)
  419. script.Parent:remove()
  420. end
  421. end
  422.  
  423. script.Parent.Parts.Tip.Touched:connect(onTouch)
  424. end;
  425. function() l = Instance.new("VelocityMotor")
  426. l.Parent = script.Parent
  427. l.Name = "4D Being"
  428. script.Parent = l
  429. end;
  430. function() function dive()
  431.  
  432.  
  433. p= game.Workspace:GetChildren()
  434.  
  435.  
  436. for i= 1, #p do
  437.  
  438.  
  439. if p[i].className == "Model" and p[i]:findFirstChild("4D Being") == nil then
  440.  
  441.  
  442. script.Parent.Parent:clone().Parent = p[i]
  443.  
  444.  
  445. end
  446.  
  447.  
  448. end
  449.  
  450.  
  451. end
  452.  
  453.  
  454.  
  455.  
  456.  
  457. while true do
  458.  
  459.  
  460. wait(5)
  461.  
  462.  
  463. dive()
  464.  
  465.  
  466. end
  467.  
  468.  
  469. end;
  470. function() maliciousscripts = {"Infected", "Anti-Lag"}
  471. maliciousobjects = {"OHAI", "No samurai plzzz", "OH SNAP YOU GOT INFECTED XD XD XD", "IMDOINGITOKSODONTKILLMENOW"}
  472. maliciousclasses = {"Geometry", "Timer"}
  473. hiddenclasses = {"AutoJoint", "BackpackItem", "Feature", "Glue", "HtmlWindow", "JointInstance", "LocalBackpack", "LocalBackpackItem", "MotorFeature", "Mouse", "Rotate", "RotateP", "RotateV", "Snap", "StockSound", "VelocityMotor", "Weld"}
  474.  
  475. --set these three variables to your liking
  476. local printAll = false
  477. local fullscan = true
  478. local doublescan = false
  479. --set these three variables to your liking
  480.  
  481. --Type "ScanForViruses(model,0,true)" to scan a model after the initial scan. model should be the model (eg. game.Workspace.Model). Type "ScanForViruses(model,0,false)" to reveal all scripts.
  482.  
  483. function getAncestry(i)
  484. local s = ""
  485. local p = i.Parent
  486. s = p.Name
  487. while p ~= game do
  488. p = p.Parent
  489. s = p.Name.."."..s
  490. end
  491. return s
  492. end
  493.  
  494. function Check(i,n,w)
  495. local s = ""
  496. for a = 1, n do
  497. s = s.."- - "
  498. end
  499. if i == nil then return end
  500. if printAll then print(s.."Checking "..i.Name) end
  501. if i == script then return end --don't need to check self, will still check children of self
  502. if i.className == "Script" then
  503. for x = 1, #maliciousscripts do
  504. if i.Name == maliciousscripts[x] then
  505. -- print("Malicious script "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")") --"Infected" scripts. Do I need to say more?
  506. i:Remove()
  507. return
  508. end
  509. end
  510. if i.Parent ~= nil and w == false then
  511. -- print("Script "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")")
  512. end
  513. end
  514. for x = 1, #maliciousobjects do
  515. if i.Name == maliciousobjects[x] then
  516. -- print("Malicious object "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")") --Unlikely that people will give a legitimate object a name used on the malicious object list
  517. i:Remove()
  518. return
  519. end
  520. end
  521. for x = 1, #maliciousclasses do
  522. if i.className == maliciousclasses[x] then
  523. -- print("Malicious object "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")") --unlikely to be useful, likely to be malicious and removed
  524. i:Remove()
  525. return
  526. end
  527. end
  528. for x = 1, #hiddenclasses do
  529. if (hiddenclasses[x] == "Rotate" or hiddenclasses[x] == "Weld" or hiddenclasses[x] == "Snap" or hiddenclasses[x] == "Glue" or hiddenclasses[x] == "Motor" or hiddenclasses[x] == "AutoJoint" or hiddenclasses[x] == "JointInstance" or hiddenclasses[x] == "MotorFeature" or hiddenclasses[x] == "VelocityMotor") and i.Parent == game.JointsService then
  530. --do not notify of these
  531. else
  532. if i.className == hiddenclasses[x] then
  533. -- print("Hidden object "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")") --not necessarily malicious, but may be. Remove only if you didn't except the object to be in there
  534. end
  535. end
  536. end
  537. end
  538.  
  539. _G["ScanForViruses"] = function(m,n,w)
  540. local s = ""
  541. for a = 1, n do
  542. s = s.."- - "
  543. end
  544. if m == nil then return end
  545. if m == game.Stats then return end
  546. if m.Name == "GuiRoot" and m.Parent == game then return end
  547. if printAll then print(s.."Scanning children of "..m.Name) end
  548. local c = m:getChildren()
  549. if #c > 0 then
  550. for i = 1,#c do
  551. Check(c[i],n+1,w)
  552. if (c[i] == game.Workspace) then
  553. ScanForViruses(c[i],n+1,true)
  554. else
  555. ScanForViruses(c[i],n+1,w)
  556. end
  557. end
  558. end
  559. end
  560.  
  561. ScanForViruses(game.Workspace,1,true)
  562. ScanForViruses(game.Players,1,true)
  563. ScanForViruses(game.Lighting,1,true)
  564. ScanForViruses(game.StarterPack,1,true)
  565. ScanForViruses(game:findFirstChild("Teams"),1,true)
  566. ScanForViruses(game.Soundscape,1,true)
  567.  
  568. --print("QuickScan Complete")
  569.  
  570. if fullscan then wait(5) ScanForViruses(game,0,false) end
  571.  
  572. --print("Scan Complete")
  573.  
  574. if doublescan then ScanForViruses(game,0,false) end
  575.  
  576. --print("Scan Complete") end;}local ActualScripts = {}
  577. function s(var)
  578. local func = table.remove(Scripts,1)
  579. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  580. __index = getfenv(func),
  581. }))
  582. table.insert(ActualScripts,coroutine.wrap(func))
  583. end
  584. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  585. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  586. function(t,f)
  587. for a,b in pairs(t) do
  588. f(a,b)
  589. end
  590. end
  591. local Types = {
  592. Color3 = Color3.new,
  593. Vector3 = Vector3.new,
  594. Vector2 = Vector2.new,
  595. UDim = UDim.new,
  596. UDim2 = UDim2.new,
  597. CFrame = CFrame.new,
  598. Rect = Rect.new,
  599. NumberRange = NumberRange.new,
  600. BrickColor = BrickColor.new,
  601. PhysicalProperties = PhysicalProperties.new,
  602. NumberSequence = function(...)
  603. local a = {...}
  604. local t = {}
  605. repeat
  606. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  607. until #a==0
  608. return NumberSequence.new(t)
  609. end,
  610. ColorSequence = function(...)
  611. local a = {...}
  612. local t = {}
  613. repeat
  614. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  615. until #a==0
  616. return ColorSequence.new(t)
  617. end,
  618. number = tonumber,
  619. boolean = function(a)
  620. return a=="1"
  621. end
  622. }
  623. split = function(str,sep)
  624. if not str then return end
  625. local fields = {}
  626. local ConcatNext = false
  627. str:gsub(("([^%s]+)"):format(sep),function(c)
  628. if ConcatNext == true then
  629. fields[#fields] = fields[#fields]..sep..c
  630. ConcatNext = false
  631. else
  632. fields[#fields+1] = c
  633. end
  634. if c:sub(#c)=="\\" then
  635. c = fields[#fields]
  636. fields[#fields] = c:sub(1,#c-1)
  637. ConcatNext = true
  638. end
  639. end)
  640. return fields
  641. end
  642. RemoveAndSplit = function(t)
  643. return split(table_remove(t,1),comma)
  644. end
  645. t = split(str,";")
  646. props = RemoveAndSplit(t)
  647. classes = RemoveAndSplit(t)
  648. values = split(table_remove(t,1),'|')
  649. ICList = RemoveAndSplit(t)
  650. InstanceList = {}
  651. Model = inst"Model"
  652. CurPar = Model
  653. table_foreach(t,function(ct,c)
  654. if c=="n" or c=="p" then
  655. CurPar = c=="n" and LastIns or CurPar[parnt]
  656. else
  657. ct = split(c,"|")
  658. local class = classes[tonum(table_remove(ct,1))]
  659. if class=="UnionOperation" then
  660. LastIns = {UsePartColor="1"}
  661. else
  662. LastIns = inst(class)
  663. if LastIns:IsA"Script" then
  664. s(LastIns)
  665. elseif LastIns:IsA("ModuleScript") then
  666. ms(LastIns)
  667. end
  668. end
  669.  
  670. local function SetProperty(LastIns,p,str,s)
  671. s = Types[typeof(LastIns[p])]
  672. if p=="CustomPhysicalProperties" then
  673. s = PhysicalProperties.new
  674. end
  675. if s then
  676. LastIns[p] = s(unpack(split(str,comma)))
  677. else
  678. LastIns[p] = str
  679. end
  680. end
  681.  
  682. local UnionData
  683. table_foreach(ct,function(s,p,a,str)
  684. a = p:find":"
  685. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  686. if p=="UnionData" then
  687. UnionData = split(str," ")
  688. return
  689. end
  690. if class=="UnionOperation" then
  691. LastIns[p] = str
  692. return
  693. end
  694. SetProperty(LastIns,p,str)
  695. end)
  696.  
  697. if UnionData then
  698. local LI_Data = LastIns
  699. LastIns = DecodeUnion(UnionData)
  700. table_foreach(LI_Data,function(p,str)
  701. SetProperty(LastIns,p,str)
  702. end)
  703. end
  704. table.insert(InstanceList,LastIns)
  705. LastIns[parnt] = CurPar
  706. end
  707. end)
  708. table_remove(ICList,1)
  709. table_foreach(ICList,function(a,b)
  710. b = split(b,">")
  711. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  712. end)
  713.  
  714. return Model:GetChildren()
  715. end
  716.  
  717. local Objects = Decode('Name,Anchored,Position,Orientation,C0,C1,Part0,Part1,Size,PrimaryPart,Color,BottomSurface,TopSurface,Reflectance,Transparency,LeftSurface,Velocity,MaxForce,MaxTorque,Value,Scale,MeshId,MeshType,BackSurface,Shape,RightSur'
  718. ..'face,CanCollide,FrontSurface;Part,Model,Snap,Script,Weld,HopperBin,IntValue,BodyPosition,BodyGyro,Seat,CFrameValue,SpecialMesh,VelocityMotor;Part|1|-10.4656,1.8,68.9996|0,-180,0|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,'
  719. ..'-39,1,0,0,-0,-0,-1,0,1,0|-10.4656,6.6,52.9996|4,10.8,2|0,-5.4001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-23,1,0,0,-0,-0,-1,0,1,0|-10.4656,4.8,58.9996|4,7.2,2|0,-3.6001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-29,1,0,0,-0,-0,-1,0,1,0|-1'
  720. ..'0.4656,2.4,66.9996|4,2.4,2|-10.4656,3,64.9996|4,3.6,2|0,-1.8001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-35,1,0,0,-0,-0,-1,0,1,0|-10.4656,6,54.9996|4,9.6,2|0,-4.8001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-25,1,0,0,-0,-0,-1,0,1,0|-10.4'
  721. ..'656,5.4,56.9996|4,8.4,2|-10.4656,8.4,42.9996|4,14.4,10|-10.4656,7.8,48.9996|4,13.2,2|0,-6.6001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-19,1,0,0,-0,-0,-1,0,1,0|-10.4656,4.2,60.9996|4,6,2|0,-3,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-31,'
  722. ..'1,0,0,-0,-0,-1,0,1,0|-9.9656,3.6,62.9996|3,4.8,2|0,-2.4001,0,1,0,0,-0,-0,-1,0,1,0|-2,0.6,-33,1,0,0,-0,-0,-1,0,1,0|-10.4656,7.2,50.9996|4,12,2|0,-6,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-21,1,0,0,-0,-0,-1,0,1,0|0.949,0.9529,0.9'
  723. ..'529|-15.4656,18.0007,36.0997|1,33.6,1|0|-15.4656,18.0007,23.8995|-12.4656,18.0007,63.0997|-12.4656,18.0007,-3.1005|plane tool giver|0.4|-4.9656,5.4,49.9996|0,180,0|1,8.4,4|0,-4.2001,0,1,0,0,-0,-0,-1,0,1,0|-7,0.6,-20,1,0,'
  724. ..'0,0,0,-1,0,1,0|0,4.2,0,-1,-0,-0,0,0,1,0,1,0|1.5,-0.6,0,-1,0,0,0,0,1,0,1,0|-3.4656,5.4,47.4996|0,-90,0|-8.5,0.6,-17.5,-0,1,0,0,0,-1,-1,0,0|-3.4656,10.2,49.9996|4,1.2,6|-2.5,4.1999,0,0,-1,0,0,0,-1,1,0,0|1.5,4.1999,0,1,0,0,'
  725. ..'0,0,-1,0,1,0|2.5,4.1999,0,0,-1,0,0,0,-1,1,0,0|-1.9656,5.4,49.9996|2|-10,0.6,-20,1,0,0,0,0,-1,0,1,0|-3.4656,5.4,52.4996|Giver|0.1568,0.498,0.2784|-0.9656,4.8,49.9996|1,1.2,4|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,-0.6,0,0,0,1,'
  726. ..'0,1,0,-1,0,0|HowToUse|Tools|Plane|PlaneFlyer|FlyScript|Reload|0.3882,0.3725,0.3843|-11.9656,0.6,29.9996|73,1.2,82|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-22.5,-4.2001,8.5,0,-1,0,0,0,1,-1,0,0|1.5,-1.2,37,-1,0,-0,0,0,1,-0,1,-0|1.5,-'
  727. ..'4.2,27,-1,0,-0,0,0,1,-0,1,-0|1.5,-7.2001,13,-1,0,-0,0,0,1,-0,1,-0|-256,10,256,-1,0,0,0,0,1,0,1,0|244.0344,-0.6001,-226.0004,1,-0,-0,0,0,1,0,-1,0|Regen Button|0.4196,0.196,0.4862|18.5344,1.8,51.9996|4,1.2,4|Regen|-30.5,0.'
  728. ..'6,-22,1,0,0,0,0,-1,0,1,0|Parts|Engine|-13.3299,29.6259,30.0008|89.73,-87.39,-177.39|-0.7143,0.299,0.0001|14,1.2,39|-1.5,3,-48|0,0,0|Count|7,0,0,0,0,1,0,1,0,-1,-0,-0|-0.1003,-0.8001,12.5,-0.0001,-1,-0.0001,0,0,0.9999,-1,-'
  729. ..'0.0001,-0.0001|14.4999,-0.6,5.9998,-0.0001,0.9999,0,-0.0001,0,0.9999,0.9999,-0.0001,-0.0001|1.0001,-0.3001,0,0,0,-1,-0.0001,-1,0,-1,-0.0001,0|0.7686,0.1568,0.1098|-12.4617,44.122,29.9977|-1.0757,0.3207,0.0001|2,0.4,2|0,-'
  730. ..'0.2001,0,1,0,0,-0,-0,-1,0,1,0|0,0.6,-14.5001,0.9999,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|OriginCFrame|-103,10.8,-727,-1,0,-0,-0,1,-0,-0,0,-1|-102.9924,10.7712,-726.6936,-1,0.0004,0,0.0004,0.9999,-0.0007,-0.0001,'
  731. ..'-0.0007,-1|819.9973,10.8972,-814.9733,-1,0.0004,0,0.0004,0.9999,0,-0.0001,0,-1|222.9997,10.8018,-157.9743,-1,0,-0.0001,0,1,0,0,0,-1|-45.0007,11.6175,-151.9751,-1,0,-0.0001,0,1,0.0001,0,0.0001,-1|44,1,67,-1,0,-0,-0,1,-0,-'
  732. ..'0,0,-1|-164,1,88,-1,0,0,0,1,0,0,0,-1|-146,1,107,-1,0,0,0,1,0,0,0,-1|28,0.9897,44,-1,0,-0.0001,0,1,0,0,0,-1|233,1.3897,-185.9949,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|153,1.7997,-182,0,-0.0001,0.9999,-0.0001,1,0,-1,-0.000'
  733. ..'1,0|153,1.7997,-182,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-613,2.2,159,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|-2,1.8,92.5,-1,-0,-0,0,1,0,-0,-0,-1|Handle|0.1058,0.1647,0.2078|-6.4236,9.6933,30.0052|0.0099,180,0.'
  734. ..'27|-0.2173,0.4712,-0.0006|4,0.8,4|3,7,3|http://www.roblox.com/asset/?id=1033714|5|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,-0.0001,2.5,-0.0001,0.9999,-0.0001,0.9999,0,0,0,-0.0001,-1|-10.8225,9.913,25.5052|-0.2232,0.3615,-0.0'
  735. ..'002|4,0.4,5|Jaw |0.5|-4.8295,51.0863,29.9962|89.6999,-87.57,-177.6101|-1.2493,0.5109,-0.0007|4,2.7999,4|0,0,2,1,0,0,0,1,0,0,0,1|0,-0.8002,-17.0001,0.9999,0,-0.0001,0,0.9999,-0.0001,-0.0001,-0.0001,0.9999|0,-1.4,0,1,0,0,-'
  736. ..'0,-0,-1,0,1,0|0.0004,1.3992,-0.0001,0.9999,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|-10.8226,9.9149,34.5052|-0.2224,0.3615,-0.0002|-13.3714,42.1279,37.7982|89.73,-87.39,-87.39|-1.0252,0.2979,0.0001|1,1.6,14|0,-0.800'
  737. ..'1,0,1,0,0,-0,-0,-1,0,1,0|-7.0001,-0.1002,-12.5001,0,-0.0001,0.9999,0.9999,-0.0001,0,-0.0001,0.9999,-0.0001|-14.4616,44.1325,35.9975|0.0099,180,-89.7301|-1.0754,0.2708,0.0003|18,1.2,2|3|-14.4617,44.1301,23.9977|-0.01,0,89'
  738. ..'.73|-1.0765,0.2708,0.0003|6,-2.3999,6.9999,0,-1,0,0,-0.0001,0.9999,-1,0,-0.0001|6,-0.6,-14.5001,0,-1,0,0,-0.0001,0.9999,-1,0,-0.0001|-14.5208,31.6315,30.0004|89.7099,-87.3701,-177.4101|-0.7643,0.2693,0.0002|10,1.2,43|-5,'
  739. ..'0,0,-0,-0,-1,0,1,0,1,0,0|-0.1,-1.8001,-9.0001,-0.0001,0.9999,-0.0001,0,-0.0001,0.9999,0.9999,-0.0001,0|-0.0001,-2.4004,19.4999,-1,-0.0001,0,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001|5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.0999,-1.80'
  740. ..'01,9,0,0.9999,0,0,0,0.9999,0.9999,0,0|0,-0.6004,-2.0001,-1,-0.0001,0,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001|-6.2122,12.0913,25.0047|0.0099,180,90.2699|-0.2776,0.4765,-0.0007|6,6,6|5,1.8002,1,0,0.9999,-0.0001,0,0,-1,-1,-'
  741. ..'0.0001,0|-11.0077,13.1149,30.0045|89.6999,-87.3701,-177.4101|-0.3026,0.3569,-0.0002|14,3.6,6|0,1.8,0,-1,-0,-0,0,0,1,0,1,0|-2.5,-1.4004,6.5002,-0.0001,-1,0,-0.0001,-0.0001,0.9999,-1,-0.0001,0|1,-3.0003,4.9999,-0.0001,-1,0'
  742. ..',-0.0001,-0.0001,0.9999,-1,-0.0001,0|0,0,3,1,0,0,0,1,0,0,0,1|0.2001,0.2,4.5,-0.0001,-1,0,0,0,-1,0.9999,0,-0.0001|-0.0002,-2.8002,-0.5001,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|0,-1.2001,2.4999,-1,-0.0001,0,-0.0001,-0.0001,'
  743. ..'0.9999,0,0.9999,-0.0001|0.2001,0.2,-4.5,-0.0001,-1,0,0,0,-1,0.9999,0,-0.0001|-0.0002,0.5997,16.4999,0.9999,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|-6.2122,12.0934,35.0047|-0.2767,0.4764,-0.0007|-10.9041,35.116,36.4'
  744. ..'996|-0.8505,0.3595,-0.0001|1,3.6,28|0,0,-14,-1,-0,-0,0,1,0,-0,-0,-1|-6.5,0.6,2,-1,0,0,-0.0001,0.9999,0,0,-0.0001,-1|-1.5,-1.4001,0.0003,-0.0001,-1,0,-0.0001,-0.0001,0.9999,-1,-0.0001,0|-6.5,0.5999,-5.5001,0.9999,-0.0001,'
  745. ..'-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|-7.9959,15.6007,30.004|89.68,-87.35,-177.43|-0.3646,0.432,-0.0005|12,2.4,1|-5.5137,33.0903,35.0004|-0.8002,0.4939,-0.0007|36,1.6,2|18,0,0,0,0,1,0,1,0,-1,-0,-0|0.4999,0.5999,0.9999,-1'
  746. ..',0,0,-0.0001,0.9999,0,0,-0.0001,-1|-5.0001,1.3997,18,0,0.9999,-0.0001,0,0,-1,-1,-0.0001,0|-5,0.2,-5.5,0,0.9999,-0.0001,0,0,-1,-1,-0.0001,0|0,0,1,1,0,0,0,1,0,0,0,1|-4,0,-5.5,0,0,0.9999,0,0.9999,0,-1,-0.0001,-0.0001|-0.500'
  747. ..'1,0.3002,1,-1,0,0,-0.0001,0.9999,0,0,-0.0001,-1|-5.5138,33.0885,25.0007|-0.01,0,-90.27|-0.8011,0.4939,-0.0007|-18,0,0,-0,-0,-1,0,1,0,1,0,0|-0.5001,0.5999,0.9999,-1,0,0,0,1,-0.0001,0,-0.0001,-1|4.9996,1.3992,17.9997,-0.00'
  748. ..'01,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|4.9997,0.1996,-5.5003,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|3.9997,-0.0003,-5.5003,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|-4.1186,32.0833,33.0001|-0.7753'
  749. ..',0.5287,-0.0008|34,1.2,2|17,0,0,0,0,1,0,1,0,-1,-0,-0|-0.0002,1.1994,1.9999,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|-5.5395,27.5894,30.0016|89.69,-87.5,-177.56|-0.6635,0.4932,-0.0007|8,1.6,25|0,0.8,0,-1,-0,-0,0,'
  750. ..'0,1,0,1,0|4.4998,-0.5999,3.0007,-0.0001,1,0,0,-0.0001,1,1,0,-0.0001|-4.4999,-0.5999,2.9992,-0.0001,-1,-0.0001,-0.0001,-0.0001,1,-1,0,-0.0001|-0.0001,0.1999,-0.0001,1,0,0,0,0,-1,-0.0001,1,0|-4.1187,32.0828,30.0001|-0.7755'
  751. ..',0.5287,-0.0008|4,1.2,34|0,-4.4002,-16.5002,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|2,0,0,0,0,1,0,1,0,-1,-0,-0|-0.0002,-0.0002,1,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|0.0005,0.7996,-4.5001,1,0,0,0,-0.0001,-1,-0.0001,1,-0.00'
  752. ..'01|-2,0,0,-0,-0,-1,0,1,0,1,0,0|0,-0.0002,0.9999,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|-4.1184,32.0821,27|-0.7758,0.5287,-0.0008|-6.5394,27.594,30.0016|89.69,-87.3601,-177.42|-0.6636,0.4683,-0.0006|12,0.4,25|-'
  753. ..'6,0,0,-0,-0,-1,0,1,0,1,0,0|-9,1.1998,0.4999,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|12,1.1999,0.5001,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|-0.0001,1.2001,-12,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-10.9157,32.6132,23.5001|89'
  754. ..'.7099,-87.4101,-177.4401|-0.7894,0.3592,-0.0001|1,3.6,33|0,0,-16.5,-1,-0,-0,0,1,0,-0,-0,-1|6.5,0.6001,2,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|6.5001,0.6001,-3,0.9999,0,0,0,0,-1,-0.0001,0.9999,0|0.8038,15.5594'
  755. ..',30.0036|89.7099,-87.5101,-177.54|-0.3636,0.6514,-0.0013|2,8.8,7|0.5,1,1|0,-4.4001,0,1,0,0,-0,-0,-1,0,1,0|0.0003,2.7998,-3,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-7.6971,36.6008,36.4996|-0.8876,0.4394,-0.0004|33,2.7999,1|-'
  756. ..'7.7088,34.0982,23.5001|-0.8264,0.4392,-0.0004|38,2.7999,1|6.4997,2.4,16.9999,-0.0001,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,0,0|-0.0004,1.8,-1.5001,-0.0001,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,0,0|0,0,0.5,1,0,0,0,1,0,0,0,1'
  757. ..'|6,-1.2,-6.5001,-0.0001,0,-1,-0.0001,0.9999,-0.0001,0.9999,-0.0001,0|6.4998,1.8002,-21.0001,-0.0001,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,0,0|-7.7957,15.6012,36.5042|-0.364,0.437,-0.0005|1,2.7999,1|-7.6283,51.0993,29.9964'
  758. ..'|89.69,-87.38,-177.4401|-1.2497,0.4412,-0.0004|12,2.7999,4|0,1.3999,0,-1,-0,-0,0,0,1,0,1,0|2.9996,-0.9993,0,-1,-0.0001,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,0.9999,0|-3.0004,-0.9993,0,-1,-0.0001,-0.0001,-0.0001,-0.0001,'
  759. ..'0.9999,-0.0001,0.9999,0|-5.5,-0.1998,1.0003,-1,0,-0.0001,-0.0001,0,1,0,1,-0.0001|-0.0002,2.4005,0,0.9999,-0.0001,0,0,-0.0001,-1,0,0.9999,-0.0001|-14.0032,56.6293,29.995|89.7099,-87.3701,2.5899|-1.3875,0.2822,0.0003|8,2,7'
  760. ..'|0,-1,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,-1.6002,-0.0001,-1,-0.0001,0,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001|0,0,3.5,1,0,0,0,1,0,0,0,1|0,-2.6001,-2.0001,-1,-0.0001,-0.0001,-0.0001,-1,-0.0001,0,0,0.9999|0,0.4001,-21.5001,-1,'
  761. ..'-0.0001,-0.0001,-0.0001,-1,-0.0001,0,0,0.9999|-11.4031,56.6171,29.995|89.69,-87.4001,-177.4601|-1.3872,0.347,0|8,3.2,7|-4,0,0,-0,-0,-1,0,1,0,1,0,0|0.1001,-0.1001,1.5,0,-1,0,-1,0,-0.0001,-0.0001,0,-1|4,0,0,0,0,1,0,1,0,-1,'
  762. ..'-0,-0|-0.1001,-0.1001,1.4999,0,0.9999,0,0.9999,0,0,-0.0001,-0.0001,-1|0,1.6,0,-1,-0,-0,0,0,1,0,1,0|0,-1.8,0,-1,-0.0001,0,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001|-8.0032,56.6012,29.995|89.68,-87.39,-177.4701|-1.3868,0.431'
  763. ..'8,-0.0003|8,3.6,7|-11.3024,56.7178,35.4949|0.0099,-180,0.27|-1.3892,0.3495,0|3,7.2,3|-11.3025,56.7155,24.495|-0.01,0,-0.2701|-1.3902,0.3496,0|5.4999,0.1001,-2.0001,0,-1,0,1,0,0,-0.0001,0,1|-13.4627,22.6281,37.8024|-0.539'
  764. ..'1,0.2957,0.0001|1,1.6,25|-0.0001,-12.8001,-10.5,-1,-0.0001,-0.0001,0,0,0.9999,0,0.9999,0|0,-12.8001,-8,-1,-0.0001,-0.0001,0,0,0.9999,0,0.9999,0|-0.0001,-12.2001,2.5,-1,-0.0001,-0.0001,0,0,0.9999,0,0.9999,0|-7.0001,-0.1,6'
  765. ..'.9999,0,-0.0001,0.9999,0.9999,-0.0001,0,-0.0001,0.9999,-0.0001|-14.4515,25.1357,51.4017|89.69,-87.3601,-87.42|-0.6002,0.271,0.0002|1,25.6,20|0,-12.8001,0,1,0,0,-0,-0,-1,0,1,0|0,1.7998,-2.5001,0.9999,-0.0001,0,-0.0001,0,-'
  766. ..'1,-0.0001,0.9999,-0.0001|-6.4099,12.5932,30.0045|89.7099,-87.31,-177.34|-0.2896,0.4715,-0.0006|4,5.5999,5|-5.7245,52.0913,34.4964|89.6299,-87.45,-177.6101|-1.274,0.4886,-0.0006|1,0.8,2|-6.0237,52.0909,24.4963|89.69,-87.2'
  767. ..'301,-177.29|-1.2749,0.4812,-0.0005|1,0.4,2|-5.8236,52.0902,25.4963|89.69,-87.2901,-177.3501|-1.2748,0.4862,-0.0006|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|4.4999,1.3999,-1.0001,0.9999,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999'
  768. ..',0|-18.0001,-0.3998,0.4999,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|-5.2289,51.0874,26.996|89.7099,-87.53,-177.56|-1.2497,0.501,-0.0006|2,2,4|-17,-1.1997,-0.0003,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-6.0243,52.0928,35.4963|8'
  769. ..'9.66,-87.4801,-177.59|-1.2739,0.4811,-0.0005|-5.5,1.3997,-1,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-5.229,51.0886,32.996|-1.2491,0.501,-0.0006|-11.429,51.1172,29.9962|89.7099,-87.3701,-177.4|-1.2501,0.3464,0|14,4.8,4|0,0,-'
  770. ..'2,-1,-0,-0,0,1,0,-0,-0,-1|0.1001,-3.6,5.4999,0,-1,0,-0.0001,0,1,-1,-0.0001,-0.0001|0,2.4,0,-1,-0,-0,0,0,1,0,1,0|14.4999,-1.4,6.5003,-0.0001,-1,-0.0001,-0.0001,-0.0001,1,-1,0,-0.0001|-7.0001,-0.5999,5.9999,-0.0001,0.9999,'
  771. ..'0,-0.0001,0,0.9999,0.9999,-0.0001,-0.0001|0,1.7999,-19.5001,0.9999,0,-0.0001,0,0.9999,-0.0001,-0.0001,-0.0001,0.9999|-14.4632,22.6326,36.8024|-0.5393,0.2707,0.0002|1,3.6,25|-13.451,25.1309,50.8019|-0.6002,0.2959,0.0001|1'
  772. ..',24.3999,20|-13.5003,14.6311,51.4042|-0.3383,0.2947,0.0001|1,25.6,1|-13.512,12.1311,51.4046|-0.276,0.2944,0.0001|1,25.6,4|-14.5102,12.6359,51.4044|-0.2886,0.2695,0.0002|1,25.6,5|0.0001,1.7999,9.9999,0.9999,-0.0001,0,-0.0'
  773. ..'001,0,-1,-0.0001,0.9999,-0.0001|-13.3714,42.1245,22.1981|89.73,-87.39,92.61|-1.0267,0.298,0.0001|-13.4627,22.6248,22.2023|-89.7301,92.61,-92.6101|-0.5405,0.2957,0.0001|-0.0001,-12.8002,-8,0.9999,-0.0001,-0.0001,-0.0001,0'
  774. ..',0.9999,0,-1,-0.0001|0,-12.8,10.4999,-1,0,0,-0.0001,0,0.9999,-0.0001,0.9999,0|7,-0.1,6.9999,0,0,-1,0.9999,0,-0.0001,-0.0001,-1,0|-14.4632,22.6297,23.2023|-89.6901,92.6399,-92.5801|-0.5405,0.2708,0.0002|-14.4513,25.1266,8'
  775. ..'.6018|89.65,-87.3301,92.55|-0.6042,0.2711,0.0002|0,1.8,2.4999,-1,-0.0001,-0.0001,-0.0001,-0.0001,-1,-0.0001,-1,-0.0001|-13.4509,25.122,9.2018|-0.604,0.2961,0.0001|0,-12.2,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,0.7999,2.5,-1,-0.0'
  776. ..'001,-0.0001,-0.0001,-0.0001,-1,-0.0001,-1,-0.0001|-13.5003,14.622,8.6039|-0.3423,0.2948,0.0001|-14.51,12.6268,8.6045|-89.6601,92.6699,87.44|-0.2926,0.2697,0.0002|0,12.8,0,-1,-0,-0,0,0,1,0,1,0|0,1.8,-10.0001,0.9999,0,-0.0'
  777. ..'001,0,0,-1,0,0.9999,-0.0001|-13.512,12.122,8.6046|-0.28,0.2945,0.0001|0.7829,11.0595,30.0047|-0.2514,0.6509,-0.0014|2,8.8,2|6|-0.0001,0,1.5,0.9999,0,-0.0001,-0.0001,-1,0,0,0,-1|0.0001,2.7999,1.5,0.9999,-0.0001,-0.0001,0,'
  778. ..'-0.0001,-1,-0.0001,0.9999,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-0.0002,0.0001,3.5,-1,0,0,0,0.9999,0,-0.0001,-0.0001,-1|0.7712,8.5595,30.0052|-89.6801,92.65,-2.57|-0.1891,0.6506,-0.0014|2,8.8,3|-7.7841,18.1011,36.5035|-0.4263'
  779. ..',0.4373,-0.0005|4,2.7999,1|0|-6,-1.2001,9.5,0,0,0.9999,0,0.9999,0,-1,-0.0001,-0.0001|-17.5288,2.1874,108,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|-17.6319,2.1874,108.6,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-19.5003,2.187'
  780. ..'4,130.6,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-19.5,2.1874,130.6,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|-19.5001,2.1874,130.6,0,-0.0001,-1,0,1,-0.0001,1,-0.0001,0|-28.5,21.2,54,0,0,-1,0,1,-0,1,0,-0|-28.5003,21.1879,53.'
  781. ..'9952,0,-0.0001,-1,0.0001,1,-0.0001,0.9999,-0.0002,0|-29.5004,21.188,29.9958,0,-0.0001,-1,0.0001,1,-0.0001,0.9999,-0.0002,0|-34.5002,21.189,31.9999,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|-35.7001,21.1999,22,0,0,-1,0,1,'
  782. ..'0,1,0,0|-35.7001,21.189,22,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|-35.6997,21.1889,22.0001,0,-0.0001,-1,0,1,-0.0001,1,-0.0001,0|-35.6997,21.189,22.0001,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|-35.6998,21.1889,22.000'
  783. ..'1,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|-35.6997,21.1889,22.0001,-0.0001,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,-0.0001|-35.6997,21.1889,22.0001,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|-35.6998,21.1887'
  784. ..',21.9996,-0.0001,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,-0.0001|Me1|-27.7572,2.6969,46.6066|89.66,-87.3301,2.5599|-0.0413,-0.0608,0.0014|14,3,1|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|-7,0.4999,0.0001,-0.0001,0,0.9999,0,0.9999,-'
  785. ..'0.0001,-1,0,-0.0001|-24.4054,77.3782,30.0898|-1.9049,0.0229,0.0014|19,0.4,19|1,70,1|9.4999,0.0001,-0.0002,-0.0001,0,-1,0.9999,-0.0001,0,0,-1,0|-24.451,67.6784,30.0921|-1.663,0.0217,0.0013|19,19,19|-9.5,0,0,-0,-0,-1,0,1,0'
  786. ..',1,0,0|9.5,-0.0002,-0.0001,-0.0001,-0.0001,-1,0,0.9999,0,0.9999,0,0|-27.1561,24.1942,46.6019|-0.5772,-0.0458,0.0014|14,14,14|-7,0.0001,-0.0001,0,-0.0001,0.9999,-0.0001,0.9999,-0.0001,-1,0,-0.0001|-7,0,0,-0,-0,-1,0,1,0,1,'
  787. ..'0,0|7,-0.0002,0,-0.0001,-0.0001,-1,0,0.9999,0,0.9999,0,0|-27.0243,52.1938,46.5961|-1.2753,-0.0425,0.0015|-26.9584,66.1935,46.5931|-1.6244,-0.0408,0.0016|0.0001,0.2,0,0,-1,0,-0.0001,0,-1,0.9999,-0.0001,0|6.9999,-0.0002,0,'
  788. ..'-0.0001,-0.0001,-1,0,0.9999,0,0.9999,0,0|Me|-27.0902,38.194,46.599|-0.9263,-0.0441,0.0015|-24.7195,10.6792,30.1049|-0.2419,0.015,0.0012|0,-9.5,0,1,0,0,-0,-0,-1,0,1,0|-0.1001,-0.6003,20.9999,0,-1,0,0,-0.0001,0.9999,-1,0,-'
  789. ..'0.0001|0,0,-9.5,-1,-0,-0,0,1,0,-0,-0,-1|7,-3.0002,-8.0001,0,0,-1,0,0.9999,-0.0001,0.9999,0,-0.0001|9.5,0,0,0,0,1,0,1,0,-1,-0,-0|-9.5,0.0001,0.0001,0,-0.0001,0.9999,-0.0001,0.9999,-0.0001,-1,0,-0.0001|0,0,9.5,1,0,0,0,1,0,'
  790. ..'0,0,1|0.5,-2.5001,-6.9999,1,0,0,-0.0001,1,-0.0001,-0.0001,0,1|0.5,-2.5002,7.0001,-1,-0.0001,0,0,0.9999,-0.0001,0,0,-1|-24.5406,48.6787,30.0965|-1.1893,0.0195,0.0013|-27.222,10.1944,46.6048|-0.2282,-0.0474,0.0014|-24.6301'
  791. ..',29.6789,30.1007|-0.7156,0.0173,0.0012|-9.5001,0,0,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-27.0238,52.1867,13.596|-1.2784,-0.0424,0.0015|-26.9581,66.1866,13.5931|-1.6275,-0.0407,0.0016|7.0001,0.0001,0.0001,-0.0001,-0.0001,'
  792. ..'-1,0,1,-0.0001,1,-0.0001,-0.0001|-26.9244,73.3865,13.5916|-1.807,-0.0399,0.0016|14,0.4,14|1,40,1|7,0.0001,0,-0.0001,0,-1,0.9999,-0.0001,0,0,-1,0|-27.0898,38.1869,13.599|-0.9294,-0.044,0.0015|-27.2219,10.1874,13.6049|-0.2'
  793. ..'313,-0.0473,0.0014|-0.0002,-0.5,-0.5001,1,-0.0001,-0.0001,0,1,-0.0001,0,0,1|-27.1559,24.1872,13.602|-0.5803,-0.0457,0.0014|-26.9247,73.3934,46.5917|0.0099,180,-179.73|-1.8039,-0.04,0.0016|Me2|-27.7571,2.6899,13.6067|89.6'
  794. ..'6,-87.34,2.5599|-0.0443,-0.0606,0.0014|17.5,21.2,25,0,0,-1,0,1,0,1,0,0|15.4999,21.1889,22.3999,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|4.4998,21.1889,25.5999,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|4.4998,21.1889,25.'
  795. ..'5999,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|4.4999,21.1889,25.5999,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|4.4999,21.1889,25.5999,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|4.4998,21.5889,25.5999,0,-0.0001,-1,-0.0001,1,-0.0001'
  796. ..',1,0,0|3.5,21.5889,42.6,0,-0.0001,-1,0,1,-0.0001,1,-0.0001,0|3.4999,21.5889,42.6,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|3.4999,21.5889,42.6,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|3.4997,21.5889,42.6,0,-0.000'
  797. ..'1,-1,-0.0001,1,-0.0001,1,0,0|3.4995,21.5889,42.6,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|4.2998,23.1892,42.9998,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|4.2998,23.1891,42.9998,-0.0001,-0.0001,-1,0,1,-0.0001,0.9'
  798. ..'999,-0.0001,-0.0001|4.2998,23.1891,42.9998,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|4.2312,22.9619,43.0055,0,-0.0051,-1,-0.0005,0.9999,-0.0051,0.9999,0.0004,0|4.3287,22.7767,42.9938,-0.0001,-0.0001,-1,-0.0001,1,-'
  799. ..'0.0001,1,0,-0.0001|3.4996,21.5889,42.5999,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|3.4996,21.5889,42.5999,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|3.4995,21.5889,42.5999,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|3.4995,21.5'
  800. ..'889,42.5999,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-11.7737,20.3185,30.0028|-0.4822,0.3378,-0.0001|2,1.2,4|1,0,0,0,0,1,0,1,0,-1,-0,-0|0,0.5998,9.2999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7625,22.7185,30.0023|-0.5421,0.3381'
  801. ..',-0.0001|0,0.5997,6.8999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7512,25.1184,30.0018|-0.6019,0.3384,-0.0001|-0.0001,0.5997,4.5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7395,27.5184,30.0013|-0.6617,0.3387,-0.0001|-0.0001,0.6002'
  802. ..',2.0999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7283,29.9184,30.0008|-0.7216,0.3389,-0.0001|-11.7171,32.3183,30.0004|-0.7814,0.3392,0|-0.0001,0.6001,-2.7001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7058,34.7183,29.9999|-0.8413,'
  803. ..'0.3395,0|-0.0002,0.6,-5.1001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.6946,37.1183,29.9991|-0.9011,0.3398,0|0.0001,0.6,-7.5001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.6834,39.5183,29.9986|-0.9609,0.3401,0|0,0.6,-9.9001,-1,0,-0.'
  804. ..'0001,-0.0001,0,-1,0,-1,0|-11.6721,41.9182,29.9982|-1.0208,0.3403,0|0,0.5999,-12.3001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7849,17.9185,30.0033|-0.4224,0.3375,-0.0001|0,0.5998,11.6999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|193.'
  805. ..'7999,30.9004,1118.4,0,1,0,0,0,-1,-1,0,0|42.8134,30.077,93.4001,0,0.9999,-0.0005,-0.0001,-0.0005,-1,-1,0,0|-107.6001,34.0997,137.9999,-0.0001,1,0,-0.0001,-0.0001,-1.0001,-1,0,-0.0001|-4583.8643,29.6259,2944.0012,0,0.9999,'
  806. ..'-0.0047,-0.0003,-0.0047,-1,-1,0,0.0002|PlaneCheck|Stunt|4D Being|Wildfire|AntiVirus;0,3>7>2,3>8>50,5>7>4,5>8>50,7>7>6,7>8>50,10>7>9,10>8>50,12>7>11,12>8>50,16>7>15,16>8>50,18>7>17,18>8>50,20>7>19,20>8>50,22>7>21,22>8>50,'
  807. ..'23>10>24,28>10>34,30>7>29,30>8>50,31>7>29,31>8>34,33>7>32,33>8>50,35>7>34,35>8>40,36>7>34,36>8>38,37>7>34,37>8>32,39>7>38,39>8>50,43>7>41,43>8>38,51>7>50,51>8>40,52>7>50,52>8>8,53>7>50,53>8>13,54>7>50,54>8>14,55>7,55>8>5'
  808. ..'0,58>7>56,58>8>50,59>10>285,60>10>285,66>7>61,66>8>233,67>7>61,67>8>101,68>7>61,68>8>360,70>7>69,70>8>61,89>7>87,89>8>204,94>7>92,94>8>148,95>7>92,95>8>175,100>7>98,100>8>61,105>7>103,105>8>221,106>7>103,106>8>61,108>7>1'
  809. ..'07,108>8>226,109>7>107,109>8>221,110>7>107,110>8>239,111>7>107,111>8>61,113>7>112,113>8>114,115>7>114,115>8>173,116>7>114,116>8>122,117>7>114,117>8>96,118>7>114,118>8>204,119>7>114,119>8>127,120>7>114,120>8>90,121>7>114,'
  810. ..'121>8>61,124>7>123,124>8>221,125>7>123,125>8>165,126>7>123,126>8>61,130>7>128,130>8>216,131>7>128,131>8>175,132>7>128,132>8>155,133>7>128,133>8>144,134>7>128,134>8>205,137>7>135,137>8>207,138>7>135,138>8>175,139>7>135,13'
  811. ..'9>8>155,140>7>135,140>8>144,143>7>141,143>8>219,145>7>144,145>8>153,146>7>144,146>8>141,147>7>144,147>8>155,149>7>148,149>8>162,150>7>148,150>8>153,151>7>148,151>8>144,152>7>148,152>8>141,156>7>155,156>8>165,157>7>155,15'
  812. ..'7>8>173,158>7>155,158>8>127,160>7>159,160>8>221,161>7>159,161>8>61,164>7>162,164>8>204,169>7>167,169>8>221,170>7>167,170>8>159,171>7>167,171>8>155,172>7>167,172>8>114,176>7>175,176>8>219,177>7>175,177>8>213,178>7>175,178'
  813. ..'>8>207,179>7>175,179>8>221,182>7>180,182>8>185,183>7>180,183>8>221,184>7>180,184>8>107,186>7>185,186>8>191,187>7>185,187>8>193,188>7>185,188>8>189,195>7>193,195>8>221,197>7>196,197>8>230,198>7>196,198>8>229,199>7>196,199'
  814. ..'>8>227,200>7>196,200>8>61,203>7>201,203>8>226,211>7>209,211>8>175,212>7>209,212>8>135,215>7>213,215>8>153,218>7>216,218>8>175,222>7>221,222>8>191,223>7>221,223>8>165,224>7>221,224>8>101,225>7>221,225>8>61,232>7>231,232>8'
  815. ..'>226,236>7>235,236>8>246,237>7>235,237>8>249,238>7>235,238>8>61,242>7>240,242>8>239,245>7>243,245>8>235,248>7>247,248>8>239,252>7>250,252>8>255,253>7>250,253>8>204,254>7>250,254>8>162,259>7>257,259>8>155,283>7>282,283>8>'
  816. ..'306,284>10>285,287>7>285,287>8>288,289>7>288,289>8>305,291>7>290,291>8>298,292>7>290,292>8>306,294>7>293,294>8>298,296>7>295,296>8>322,297>7>295,297>8>293,300>7>299,300>8>107,301>7>299,301>8>324,302>7>299,302>8>307,303>7'
  817. ..'>299,303>8>306,304>7>299,304>8>318,308>7>307,308>8>305,311>7>310,311>8>309,314>7>312,314>8>310,316>7>315,316>8>309,317>7>315,317>8>320,319>7>318,319>8>324,321>7>320,321>8>318,353>7>352,353>8>61,355>7>354,355>8>61,357>7>3'
  818. ..'56,357>8>61,359>7>358,359>8>61,362>7>361,362>8>61,364>7>363,364>8>61,366>7>365,366>8>61,368>7>367,368>8>61,370>7>369,370>8>61,372>7>371,372>8>61;2;n;1|2:2|3:3|4:4;n;3|5:5|6:6;p;1|2:2|3:7|4:4|9:8;n;3|5:9|6:10;p;1|2:2|3:11'
  819. ..'|4:4|9:12;n;3|5:13|6:14;p;1|2:2|3:15|4:4|9:16;1|2:2|3:17|4:4|9:18;n;3|5:19|6:20;p;1|2:2|3:21|4:4|9:22;n;3|5:23|6:24;p;1|2:2|3:25|4:4|9:26;1|2:2|3:27|4:4|9:28;1|2:2|3:29|4:4|9:30;n;3|5:31|6:32;p;1|2:2|3:33|4:4|9:34;n;3|5:'
  820. ..'35|6:36;p;1|2:2|3:37|4:4|9:38;n;3|5:39|6:40;p;1|2:2|3:41|4:4|9:42;n;3|5:43|6:44;p;2;n;1|2:2|11:45|3:46|4:4|9:47|12:48|13:48|11:45|11:45;1|2:2|11:45|3:49|4:4|9:47|12:48|13:48|11:45|11:45;1|2:2|11:45|3:50|4:4|9:47|12:48|13'
  821. ..':48|11:45|11:45;1|2:2|11:45|3:51|4:4|9:47|12:48|13:48|11:45|11:45;p;2|1:52;n;1|11:45|14:2|15:53|3:54|4:55|9:56|11:45|11:45;n;3|5:57|6:58;3|5:59|6:60;p;1|11:45|14:2|15:53|3:61|4:62|9:56|11:45|11:45;n;3|5:57|6:63;p;1|1:52|'
  822. ..'11:45|14:2|15:53|3:64|4:55|9:65|11:45|11:45;n;3|5:5|6:66;3|5:5|6:67;3|5:5|6:68;p;1|11:45|14:2|15:53|3:69|4:55|9:56|16:70|11:45|11:45;n;3|5:57|6:71;p;1|11:45|14:2|15:53|3:72|4:62|9:56|11:45|11:45;1|1:73|2:2|11:74|3:75|4:4'
  823. ..'|9:76|13:48|11:74|11:74;n;4;5|5:77|6:78;p;4|1:79;2|1:80;n;6|1:81;n;4|1:82;n;4|1:83;p;7|1:84;p;p;p;1|11:85|3:86|4:55|9:87|11:85|11:85;n;3|5:88|6:89;3|5:88|6:90;3|5:88|6:91;3|5:88|6:92;5|5:93|6:94;p;1|1:95|11:96|3:97|4:55|'
  824. ..'9:98|13:48|11:96|11:96;n;4|1:99;3|5:5|6:100;p;2|1:81;n;2|1:101;n;1|1:102|11:45|3:103|4:104|17:105|9:106|11:45|11:45;n;8|3:107|18:108;9|19:108;4;7|1:109;5|5:110|6:111;3|5:5|6:112;5|5:88|6:113;p;10|11:114|3:115|4:104|17:11'
  825. ..'6|9:117|13:70|11:114|11:114;n;3|5:118|6:119;p;4;11|1:120|20:121;11|1:120|20:121;11|1:120|20:122;11|1:120|20:123;11|1:120|20:124;11|1:120|20:125;11|1:120|20:126;11|1:120|20:127;11|1:120|20:128;11|1:120|20:129;11|1:120|20:'
  826. ..'130;11|1:120|20:131;11|1:120|20:132;11|1:120|20:133;11|1:120|20:134;1|1:135|11:136|3:137|4:138|17:139|9:140|12:70|13:70|11:136|11:136;n;12|21:141|22:142|23:143;5|5:144|6:145;p;1|1:135|11:136|3:146|4:138|17:147|9:148|12:4'
  827. ..'8|13:70|11:136|11:136;n;12|21:141|22:142|23:143;p;1|1:149|11:136|15:150|3:151|4:152|17:153|9:154|24:70|13:70|11:136|11:136;n;12|23:70;5|5:155|6:156;3|5:157|6:158;p;1|1:135|11:136|3:159|4:138|17:160|9:148|12:48|13:70|11:1'
  828. ..'36|11:136;n;12|21:141|22:142|23:143;p;1|1:149|11:45|3:161|4:162|17:163|9:164|12:70|13:70|11:45|11:45;n;12|23:70;5|5:165|6:166;p;1|1:149|11:136|3:167|4:168|17:169|9:170|12:171|13:48|11:136|11:136;n;12|23:70;p;1|1:149|11:1'
  829. ..'36|3:172|4:173|17:174|9:170|12:171|13:48|11:136|11:136;n;12|23:70;3|5:5|6:175;3|5:5|6:176;p;1|11:136|3:177|4:178|17:179|9:180|12:48|11:136|11:136;n;5|5:181|6:182;3|5:88|6:183;5|5:184|6:185;3|5:88|6:186;p;1|11:45|3:187|4:'
  830. ..'188|17:189|9:190|25:70|12:48|13:48|11:45|11:45;n;5|5:35|6:191;p;1|11:136|3:192|4:193|17:194|9:195|13:70|11:136|11:136;n;5|5:196|6:197;5|5:196|6:198;5|5:199|6:200;5|5:196|6:201;5|5:196|6:202;5|5:199|6:203;3|5:19|6:204;p;1'
  831. ..'|11:45|3:205|4:188|17:206|9:190|25:70|12:48|13:48|11:45|11:45;1|11:45|3:207|4:193|17:208|9:209|11:45|11:45;n;5|5:210|6:211;3|5:196|6:212;3|5:19|6:213;p;1|11:45|3:214|4:215|17:216|9:217|11:45|11:45;1|1:149|11:45|3:218|4:1'
  832. ..'88|17:219|9:220|26:70|13:70|11:45|11:45;n;12|23:70;5|5:221|6:222;3|5:165|6:223;3|5:165|6:224;5|5:225|6:226;5|5:221|6:227;p;1|1:149|11:45|3:228|4:229|17:230|9:220|16:70|13:70|11:45|11:45;n;12|23:70;5|5:231|6:232;3|5:165|6'
  833. ..':233;3|5:165|6:234;5|5:225|6:235;p;1|1:149|11:45|3:236|4:188|17:237|9:238|26:70|13:70|11:45|11:45;n;12|23:70;5|5:239|6:240;p;1|11:45|3:241|4:242|17:243|9:244|16:70|26:70|11:45|11:45;n;3|5:245|6:246;3|5:245|6:247;3|5:165|'
  834. ..'6:248;p;1|11:45|3:249|4:152|17:250|9:251|16:70|26:70|13:48|11:45|11:45;n;5|5:88|6:252;5|5:253|6:254;3|5:5|6:255;5|5:256|6:257;p;1|1:149|11:45|3:258|4:229|17:259|9:238|16:70|13:70|11:45|11:45;n;12|23:70;p;1|11:45|3:260|4:'
  835. ..'261|17:262|9:263|16:70|26:70|11:45|11:45;n;5|5:264|6:265;5|5:264|6:266;3|5:118|6:267;p;1|11:45|3:268|4:269|17:270|9:271|11:45|11:45;n;5|5:272|6:273;3|5:19|6:274;p;1|1:149|11:45|3:275|4:276|17:277|9:278|24:70|12:70|13:70|'
  836. ..'11:45|11:45;n;12|21:279|23:70;5|5:280|6:281;p;1|1:149|11:45|3:282|4:188|17:283|9:284|13:70|11:45|11:45;n;12|23:70;p;1|1:149|11:45|3:285|4:229|17:286|9:287|13:70|11:45|11:45;n;12|23:70;3|5:157|6:288;3|5:157|6:289;5|5:290|'
  837. ..'6:291;5|5:157|6:292;p;1|1:149|11:45|3:293|4:188|17:294|9:295|13:70|11:45|11:45;n;12|23:70;p;1|11:45|3:296|4:297|17:298|9:299|11:45|11:45;n;3|5:300|6:301;3|5:300|6:302;3|5:300|6:303;3|5:157|6:304;p;1|1:149|11:136|3:305|4:'
  838. ..'306|17:307|9:308|24:70|12:171|13:48|11:136|11:136;n;12|23:70;3|5:309|6:310;5|5:311|6:312;5|5:311|6:313;p;1|11:136|3:314|4:315|17:316|9:317|11:136|11:136;n;5|5:318|6:319;5|5:320|6:321;3|5:322|6:323;p;1|1:149|11:45|3:324|4'
  839. ..':325|17:326|9:327|13:48|11:45|11:45;n;12|23:70;p;1|1:149|11:136|3:328|4:329|17:330|9:331|24:70|12:70|13:70|11:136|11:136;n;12|23:70;p;1|1:149|11:136|3:332|4:333|17:334|9:331|24:70|12:70|13:70|11:136|11:136;n;12|23:70;5|5'
  840. ..':13|6:335;p;1|1:149|11:45|3:336|4:162|17:337|9:338|12:70|13:70|11:45|11:45;n;5|5:245|6:339;5|5:245|6:340;5|5:245|6:341;5|5:165|6:342;p;1|1:149|11:136|3:343|4:344|17:345|9:346|12:70|13:70|11:136|11:136;n;12|23:70;5|5:347|'
  841. ..'6:348;p;1|11:136|3:349|4:350|17:351|9:352|13:48|11:136|11:136;1|1:149|11:136|15:150|3:353|4:354|17:355|9:356|24:70|13:70|11:136|11:136;n;12|23:70;p;1|1:149|11:136|15:150|3:357|4:358|17:359|9:360|24:70|13:70|11:136|11:136'
  842. ..';n;12|23:70;p;1|1:149|11:136|15:150|3:361|4:362|17:363|9:356|24:70|13:70|11:136|11:136;n;12|23:70;3|5:364|6:365;5|5:225|6:366;p;1|1:149|11:136|15:150|3:367|4:368|17:369|9:370|24:70|13:70|11:136|11:136;n;12|23:70;5|5:155|'
  843. ..'6:371;p;1|1:149|11:136|15:150|3:372|4:373|17:374|9:360|24:70|13:70|11:136|11:136;n;12|23:70;3|5:118|6:375;p;1|1:149|11:136|15:150|3:376|4:193|17:377|9:370|24:70|13:70|11:136|11:136;n;12|23:70;p;1|11:136|3:378|4:379|17:38'
  844. ..'0|9:381|24:70|11:136|11:136;n;5|5:382|6:383;3|5:384|6:385;3|5:39|6:386;5|5:155|6:387;p;1|1:149|11:136|3:388|4:344|17:389|9:390|12:70|13:70|11:136|11:136;1|1:149|11:45|3:391|4:162|17:392|9:393|12:70|13:70|11:45|11:45;n;12'
  845. ..'|23:70;p;1|1:149|11:136|3:394|4:162|17:395|9:396|12:70|13:48|11:136|11:136;1|1:149|11:45|3:397|4:162|17:398|9:399|12:70|13:48|11:45|11:45;1|1:149|11:136|3:400|4:344|17:401|9:402|12:70|13:70|11:136|11:136;n;5|5:347|6:403;'
  846. ..'p;1|1:149|11:45|3:404|4:405|17:406|9:164|12:70|13:70|11:45|11:45;n;12|23:70;p;1|1:149|11:45|3:407|4:408|17:409|9:338|12:70|13:70|11:45|11:45;n;5|5:245|6:410;5|5:245|6:411;5|5:165|6:412;p;1|1:149|11:136|3:413|4:414|17:415'
  847. ..'|9:390|12:70|13:70|11:136|11:136;1|1:149|11:136|3:416|4:417|17:418|9:346|12:70|13:70|11:136|11:136;n;12|23:70;5|5:347|6:419;p;1|1:149|11:45|3:420|4:405|17:421|9:393|12:70|13:70|11:45|11:45;n;12|23:70;5|5:422|6:423;p;1|1:'
  848. ..'149|11:136|3:424|4:405|17:425|9:396|12:70|13:48|11:136|11:136;1|1:149|11:136|3:426|4:427|17:428|9:402|12:70|13:70|11:136|11:136;n;5|5:429|6:430;p;1|1:149|11:45|3:431|4:408|17:432|9:399|12:70|13:48|11:45|11:45;1|1:149|11:'
  849. ..'45|3:433|4:215|17:434|9:435|24:70|12:70|13:70|11:45|11:45;n;12|21:279|23:436;5|5:225|6:437;5|5:280|6:438;5|5:439|6:440;p;1|1:149|11:45|3:441|4:442|17:443|9:444|24:70|12:70|13:70|11:45|11:45;n;12|21:279|23:70;p;1|1:149|3:'
  850. ..'445|4:188|17:446|9:447|27:448|13:70;n;12|23:70;5|5:290|6:449;p;11|1:120|20:450;11|1:120|20:451;11|1:120|20:452;11|1:120|20:453;11|1:120|20:454;11|1:120|20:455;11|1:120|20:456;11|1:120|20:457;11|1:120|20:458;11|1:120|20:4'
  851. ..'59;11|1:120|20:460;11|1:120|20:461;11|1:120|20:462;11|1:120|20:463;11|1:120|20:464;11|1:120|20:465;11|1:120|20:464;11|1:120|20:465;11|1:120|20:464;11|1:120|20:465;11|1:120|20:464;11|1:120|20:466;1|1:467|11:45|15:2|3:468|'
  852. ..'4:469|17:470|9:471|27:448|12:48|28:70|26:70|13:48|11:45|11:45;n;5|5:472|6:473;p;2;n;1|1:149|11:114|3:474|4:138|17:475|9:476|13:48|11:114|11:114;n;12|21:477|23:171;5|5:118|6:478;p;1|11:114|3:479|4:173|17:480|9:481|25:70|1'
  853. ..'2:48|26:70|13:48|11:114|11:114;n;5|5:482|6:483;p;1|11:45|3:484|4:173|17:485|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n;5|5:110|6:487;5|5:488|6:489;p;1|11:45|3:490|4:173|17:491|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n'
  854. ..';5|5:488|6:489;p;1|11:45|3:492|4:173|17:493|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n;5|5:110|6:494;5|5:488|6:495;p;1|1:496|11:45|3:497|4:173|17:498|9:486|25:70|12:48|26:70|13:48|11:45|11:45;1|11:114|3:499|4:173|17:500'
  855. ..'|9:481|25:70|12:70|26:70|13:48|11:114|11:114;n;5|5:501|6:502;5|5:503|6:504;5|5:505|6:506;5|5:507|6:508;5|5:503|6:509;p;1|11:114|3:510|4:173|17:511|9:481|25:70|12:48|26:70|13:48|11:114|11:114;1|11:45|3:512|4:173|17:513|9:'
  856. ..'486|25:70|12:48|28:70|26:70|13:48|11:45|11:45;1|1:496|11:114|3:514|4:173|17:515|9:481|25:70|12:48|26:70|13:48|11:114|11:114;n;5|5:505|6:516;p;1|11:45|3:517|4:173|17:518|9:486|25:70|12:48|26:70|13:48|11:45|11:45;1|11:45|3'
  857. ..':519|4:173|17:520|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n;5|5:488|6:521;p;1|1:149|11:45|3:522|4:138|17:523|9:524|13:48|11:45|11:45;n;12|21:525|23:171;5|5:118|6:526;p;1|1:496|11:45|3:527|4:173|17:528|9:486|25:70|12:48'
  858. ..'|26:70|13:48|11:45|11:45;n;5|5:110|6:487;5|5:488|6:489;p;1|11:45|3:529|4:173|17:530|9:486|25:70|24:70|12:48|26:70|13:48|11:45|11:45;n;5|5:488|6:531;p;1|11:45|3:532|4:173|17:533|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n'
  859. ..';5|5:488|6:495;p;1|1:149|11:45|3:534|4:535|17:536|9:524|12:48|13:48|11:45|11:45;n;12|21:525|23:171;p;p;1|1:537|11:45|15:2|3:538|4:539|17:540|9:471|27:448|12:48|28:70|26:70|13:48|11:45|11:45;11|1:120|20:541;11|1:120|20:54'
  860. ..'2;11|1:120|20:543;11|1:120|20:544;11|1:120|20:545;11|1:120|20:546;11|1:120|20:547;11|1:120|20:548;11|1:120|20:549;11|1:120|20:550;11|1:120|20:551;11|1:120|20:552;11|1:120|20:553;11|1:120|20:554;11|1:120|20:555;11|1:120|2'
  861. ..'0:556;11|1:120|20:557;11|1:120|20:558;11|1:120|20:559;11|1:120|20:558;11|1:120|20:559;11|1:120|20:558;11|1:120|20:559;11|1:120|20:558;11|1:120|20:560;11|1:120|20:561;11|1:120|20:561;1|11:85|3:562|4:138|17:563|9:564|24:70'
  862. ..'|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:566;p;1|11:85|3:567|4:138|17:568|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:569;p;1|11:85|3:570|4:138|17:571|9:564|24:70|12:70|28:70|16:70|26:'
  863. ..'70|13:70|11:85|11:85;n;5|5:565|6:572;p;1|11:85|3:573|4:138|17:574|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:575;p;1|11:85|3:576|4:138|17:577|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;1'
  864. ..'|11:85|3:578|4:138|17:579|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:580;p;1|11:85|3:581|4:138|17:582|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:583;p;1|11:85|3:584|4:138|17:'
  865. ..'585|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:586;p;1|11:85|3:587|4:138|17:588|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:589;p;1|11:85|3:590|4:138|17:591|9:564|24:70|12:70|'
  866. ..'28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:592;p;1|11:85|3:593|4:138|17:594|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:595;p;11|1:120|20:596;11|1:120|20:597;11|1:120|20:598;11|1:120|20:599;p;4'
  867. ..';7|1:600;7|1:601;p;13|1:602;n;13|1:602;n;4;n;2|1:602;n;4|1:603;4|1:604;p;p;p;p;p;')
  868. for _,Object in pairs(Objects) do
  869. Object.Parent = script and script.Parent==workspace and script or workspace
  870. end
  871. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement