Advertisement
lafur

Untitled

May 6th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 58.25 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 52024
  3. local genv={}
  4. local Scripts = {
  5. function() local a = script.Parent.Parent.Cart:clone()
  6. local deb = false
  7.  
  8. function chng()
  9. if deb == true then return end
  10. deb = true
  11. local new = a:clone()
  12. new.Parent = script.Parent.Parent
  13. new:MakeJoints()
  14. script.Parent.BrickColor = BrickColor.new(21)
  15. wait(6)
  16. script.Parent.BrickColor = BrickColor.new(28)
  17. deb = false
  18. end
  19.  
  20. script.Parent.Click.MouseClick:connect(chng)
  21. end;
  22. function() function chng()
  23. script.Parent.Parent.Speed.Value = script.Parent.Parent.Speed.Value - 3
  24. script.Parent.BrickColor = BrickColor.new(21)
  25. wait(0.2)
  26. script.Parent.BrickColor = BrickColor.new(0)
  27. end
  28.  
  29. script.Parent.Click.MouseClick:connect(chng)
  30. end;
  31. function() function chng()
  32. script.Parent.Parent.CarOn.Value = not script.Parent.Parent.CarOn.Value
  33. if script.Parent.Parent.CarOn.Value == false then
  34. script.Parent.BrickColor = BrickColor.new(21)
  35. else
  36. script.Parent.BrickColor = BrickColor.new(28)
  37. end
  38. end
  39.  
  40. script.Parent.Click.MouseClick:connect(chng)
  41. end;
  42. function() function blow()
  43. for i = 1, 4 do
  44. if script.Parent:FindFirstChild("Engine") ~= nil then
  45. local ex = Instance.new("Explosion")
  46. ex.Position = script.Parent.Parent.Engine.Position + Vector3.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  47. ex.BlastRadius = 1
  48. ex.BlastPressure = 1000
  49. ex.Parent = game.Workspace
  50. wait()
  51. end
  52. end
  53. wait(1)
  54. script.Parent.Parent:remove()
  55. end
  56.  
  57. script.Parent.Parent.ChildRemoved:connect(blow)
  58.  
  59. while true do
  60. wait(0.1)
  61. if script.Parent.Parent.CarOn.Value == true then
  62. local look = script.Parent.CFrame.lookVector*script.Parent.Parent.Speed.Value
  63. script.Parent.BV.velocity = Vector3.new(look.x, -15, look.z)
  64. else
  65. script.Parent.BV.velocity = Vector3.new(0, -5, 0)
  66. end
  67. end
  68. end;
  69. function() function add(p)
  70. script.Parent.ChildRemoved:connect(function()
  71. local a = script.Parent.Parent.Seat:FindFirstChild("SeatWeld")
  72. if a ~= nil then return end
  73. script.Parent.Parent:remove()
  74. end)
  75. --[[for i = 1, 6 do
  76. local ex = Instance.new("Explosion")
  77. ex.Position = script.Parent.Position + Vector3.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  78. ex.BlastRadius = 2
  79. ex.BlastPressure = 1000
  80. ex.Parent = game.Workspace
  81. wait()
  82. end--]]
  83. end
  84.  
  85. script.Parent.ChildAdded:connect(add)
  86. end;
  87. function() function chng()
  88. script.Parent.Parent.Speed.Value = script.Parent.Parent.Speed.Value + 3
  89. script.Parent.BrickColor = BrickColor.new(21)
  90. wait(0.2)
  91. script.Parent.BrickColor = BrickColor.new(0)
  92. end
  93.  
  94. script.Parent.Click.MouseClick:connect(chng)
  95. end;}local ActualScripts = {}
  96. function s(var)
  97. local func = table.remove(Scripts,1)
  98. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  99. __index = getfenv(func),
  100. }))
  101. table.insert(ActualScripts,coroutine.wrap(func))
  102. end
  103. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  104. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  105. function(t,f)
  106. for a,b in pairs(t) do
  107. f(a,b)
  108. end
  109. end
  110. local Types = {
  111. Color3 = Color3.new,
  112. Vector3 = Vector3.new,
  113. Vector2 = Vector2.new,
  114. UDim = UDim.new,
  115. UDim2 = UDim2.new,
  116. CFrame = CFrame.new,
  117. Rect = Rect.new,
  118. NumberRange = NumberRange.new,
  119. BrickColor = BrickColor.new,
  120. PhysicalProperties = PhysicalProperties.new,
  121. NumberSequence = function(...)
  122. local a = {...}
  123. local t = {}
  124. repeat
  125. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  126. until #a==0
  127. return NumberSequence.new(t)
  128. end,
  129. ColorSequence = function(...)
  130. local a = {...}
  131. local t = {}
  132. repeat
  133. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  134. until #a==0
  135. return ColorSequence.new(t)
  136. end,
  137. number = tonumber,
  138. boolean = function(a)
  139. return a=="1"
  140. end
  141. }
  142. split = function(str,sep)
  143. if not str then return end
  144. local fields = {}
  145. local ConcatNext = false
  146. str:gsub(("([^%s]+)"):format(sep),function(c)
  147. if ConcatNext == true then
  148. fields[#fields] = fields[#fields]..sep..c
  149. ConcatNext = false
  150. else
  151. fields[#fields+1] = c
  152. end
  153. if c:sub(#c)=="\\" then
  154. c = fields[#fields]
  155. fields[#fields] = c:sub(1,#c-1)
  156. ConcatNext = true
  157. end
  158. end)
  159. return fields
  160. end
  161. RemoveAndSplit = function(t)
  162. return split(table_remove(t,1),comma)
  163. end
  164. t = split(str,";")
  165. props = RemoveAndSplit(t)
  166. classes = RemoveAndSplit(t)
  167. values = split(table_remove(t,1),'|')
  168. ICList = RemoveAndSplit(t)
  169. InstanceList = {}
  170. Model = inst"Model"
  171. CurPar = Model
  172. table_foreach(t,function(ct,c)
  173. if c=="n" or c=="p" then
  174. CurPar = c=="n" and LastIns or CurPar[parnt]
  175. else
  176. ct = split(c,"|")
  177. local class = classes[tonum(table_remove(ct,1))]
  178. if class=="UnionOperation" then
  179. LastIns = {UsePartColor="1"}
  180. else
  181. LastIns = inst(class)
  182. if LastIns:IsA"Script" then
  183. s(LastIns)
  184. elseif LastIns:IsA("ModuleScript") then
  185. ms(LastIns)
  186. end
  187. end
  188.  
  189. local function SetProperty(LastIns,p,str,s)
  190. s = Types[typeof(LastIns[p])]
  191. if p=="CustomPhysicalProperties" then
  192. s = PhysicalProperties.new
  193. end
  194. if s then
  195. LastIns[p] = s(unpack(split(str,comma)))
  196. else
  197. LastIns[p] = str
  198. end
  199. end
  200.  
  201. local UnionData
  202. table_foreach(ct,function(s,p,a,str)
  203. a = p:find":"
  204. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  205. if p=="UnionData" then
  206. UnionData = split(str," ")
  207. return
  208. end
  209. if class=="UnionOperation" then
  210. LastIns[p] = str
  211. return
  212. end
  213. SetProperty(LastIns,p,str)
  214. end)
  215.  
  216. if UnionData then
  217. local LI_Data = LastIns
  218. LastIns = DecodeUnion(UnionData)
  219. table_foreach(LI_Data,function(p,str)
  220. SetProperty(LastIns,p,str)
  221. end)
  222. end
  223. table.insert(InstanceList,LastIns)
  224. LastIns[parnt] = CurPar
  225. end
  226. end)
  227. table_remove(ICList,1)
  228. table_foreach(ICList,function(a,b)
  229. b = split(b,">")
  230. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  231. end)
  232.  
  233. return Model:GetChildren()
  234. end
  235.  
  236. local Objects = Decode('Name,PrimaryPart,Color,Position,Orientation,Size,BackSurface,C0,C1,Part0,Part1,FrontSurface,Anchored,TopSurface,CanCollide,MaxActivationDistance,BottomSurface,Texture,Face,Shape,RightSurface,Transparency,MaxTorque,Velocity,MaxForce,Force,Material;Part,Model,Snap,Weld,ManualWeld,ClickDetector,Script,SpecialMesh,Decal,Rotate,BodyGyro,BodyVelocity'
  237. ..',BodyForce,Seat;Part|0.4823,0,0.4823|-60.906,1.8,-47.1068|0,180,0|1,3.6,1|2|0,1.8,0,-1,-0,-0,0,0,1,0,1,0|7,-0.4001,0,1,0,0,0,0,1,0,-1,0|0,0,0.5,1,0,0,0,1,0,0,0,1|-7,-0.8001,-2,1,0,0,0,1,0,0,0,1|-60.906,1.8,-52.1068|-67.906,2.6,-49.6068|15,0.4,4|Smooth Block Model-to-Smooth Block Model Strong Joint|7.5,-0.2001,2,0,0,1,0,1,-0,-1,0,0|-7.5,-0.2001,'
  238. ..'2,0,0,1,0,1,-0,-1,0,0|0,0,2,1,0,0,0,1,0,0,0,1|7,0.8,-0.5,1,0,0,0,1,0,0,0,1|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|0,-0.4001,0,1,0,0,0,0,1,0,-1,0|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|-7,0.8,0.5,-1,0,0,0,1,0,0,0,-1|-7,0.8,-0.5,1,0,0,0,1,0,0,0,1|Rail|1|-67.906,3.2,-49.6068|15,0.8,2|0|Rail-to-Rail Strong Joint|-7.5,-0.4001,-1,0,0,-1,0,1,0,1,0,0|7.5,-0.4001,-1,0,0,'
  239. ..'-1,0,1,0,1,0,0|-67.906,4,-52.1068|15,0.8,1|-7.5,-0.4001,-0.5,0,0,-1,0,1,0,1,0,0|7.5,-0.4001,-0.5,0,0,-1,0,1,0,1,0,0|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|7,1.8,0,-1,0,0,0,0,-1,0,-1,0|-7,1.8,0,-1,0,0,0,0,-1,0,-1,0|-67.906,4,-47.1068|-74.906,1.8,-52.1068|0.5,-1.8001,0.5,0,0,1,0,1,-0,-1,0,0|-0.5,-1.8001,0.5,0,0,1,0,1,-0,-1,0,0|-74.906,1.8,-47.1068|-60.'
  240. ..'9104,4,-82.1021|1,0.8,1|0.0095,1.7999,-0.0004,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|-64.3037,4,-77.5404|0,167.1399,0|4,0.8,1|-66.0847,4,-83.4641|0,153,0|2,0.8,1|-62.3653,4,-82.2557|0,171,0|-64.2725,4,-82.7135|0,162,0|-61.4097,4,-77.1018|0,-180,0|0.5088,1.7999,-0.0008,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-60.9104,4,-77.1021|0.0095,1.7999,-0.000'
  241. ..'5,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|-76.1768,4,-87.0084|0,115.72,0|-74.0918,4,-83.6904|0,128.57,0|-71.3207,4,-80.9194|0,141.4299,0|-72.2983,4,-90.7389|0,108,0|-71.5476,4,-88.9267|0,117,0|-69.2486,4,-85.7628|0,135,0|-68.0025,4,-78.8346|0,154.2899,0|-77.4713,4,-90.7073|0,102.86,0|-70.5227,4,-87.2544|0,126,0|-67.7571,4,-84.4889|0,144,0|-72.75'
  242. ..'64,4,-92.6462|0,99,0|-72.9104,4,-94.1019|-77.9102,4,-93.6013|0,90,0|-77.9104,4,-94.1019|-60.9009,1.8,-82.1025|-60.91,1.4,-79.5925|1,0.4,4|-60.9008,1.8,-77.1025|-77.9008,1.8,-94.1024|0,-90,0|0.0096,-0.4,-0.0005,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|0.501,-0.4,0.0094,1,0,0,-0.0001,0,1,0,-1,0|-75.4008,1.4,-94.1024|-72.9008,1.8,-94.1024|0.0095,-0.4'
  243. ..',-0.0005,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-59.7068,4,-77.2963|-56.3135,4,-81.858|0,-12.86,0|-54.5325,4,-75.9343|0,-27,0|-58.2519,4,-77.1427|0,-9,0|-56.3447,4,-76.6849|0,-18,0|-59.2075,4,-82.2966|-59.7068,4,-82.2963|-44.4404,4,-72.39|0,-64.28,0|-46.5254,4,-75.708|0,-51.4301,0|-49.2965,4,-78.479|0,-38.57,0|-48.3189,4,-68.6595|0,-72,0|-49.069'
  244. ..'6,4,-70.4717|0,-63,0|-51.3686,4,-73.6356|0,-45,0|-52.6147,4,-80.5638|0,-25.71,0|-43.1459,4,-68.6911|0,-77.14,0|-50.0945,4,-72.144|0,-54,0|-52.8601,4,-74.9095|0,-36,0|-47.8609,4,-66.7522|0,-81,0|-47.7068,4,-65.2965|0.5,-0.4001,-0.5,-1,0,0,0,1,0,0,0,-1|0.5051,-0.4,-0.4951,0,0,-1,0,1,0,1,-0.0001,-0.0001|-42.707,4,-65.797|1,-0.4001,0.5,0,0,1,0,1,-0'
  245. ..',-1,0,0|-1.005,-0.4,0.4955,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|0.5056,-0.4,-0.4953,0,0,-1,0,1,0,1,-0.0001,0|-42.7068,4,-65.2965|-1.0045,-0.4,0.4953,0,-0.0001,1,0,1,0,-1,0,0|0.5051,-0.4,-0.4952,0,0,-1,0,1,0,1,-0.0001,-0.0001|-59.7164,1.8,-77.2959|0.0095,-0.4,-0.0005,1,-0.0001,-0.0001,0,0,1,0,-1,0|-59.7072,1.4,-79.8059|-59.7164,1.8,-82.2959|0.00'
  246. ..'95,-0.4,-0.0005,1,0,-0.0001,0,0,1,0,-1,0|-42.7164,1.8,-65.296|-0.5,-1.8001,-0.5,0,0,-1,0,1,0,1,0,0|-0.4952,-1.8,0.5042,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|-45.2164,1.4,-65.296|-0.5,-0.2001,-2,0,0,-1,0,1,0,1,0,0|-0.5043,-0.2,2.0142,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|-47.7164,1.8,-65.296|-47.7117,4,-64.2913|-43.15,4,-60.8981|0,-102.8601,0|-49.'
  247. ..'0738,4,-59.1171|0,-117,0|-47.8654,4,-62.8365|0,-99,0|-48.3232,4,-60.9293|0,-108,0|-42.7114,4,-63.7921|-42.7117,4,-64.2913|0.0095,1.7999,-0.0005,-1,-0.0001,0,-0.0001,0,-1,-0.0001,-1,-0.0001|-52.6181,4,-49.025|0,-154.28,0|-49.3001,4,-51.11|0,-141.43,0|-46.5291,4,-53.881|0,-128.5701,0|-56.3486,4,-52.9035|0,-162,0|-54.5364,4,-53.6542|0,-153,0|-51.3'
  248. ..'725,4,-55.9531|0,-135,0|-44.4442,4,-57.1993|0,-115.71,0|-56.3169,4,-47.7305|0,-167.14,0|-52.864,4,-54.6791|0,-144,0|-50.0986,4,-57.4447|0,-126,0|-58.2559,4,-52.4454|0,-171,0|-59.7116,4,-52.2914|-59.211,4,-47.2916|0.501,1.7999,0.0093,-1,-0.0001,-0.0001,0,0,-1,0,-1,-0.0001|-59.7116,4,-47.2914|-47.7121,1.8,-64.3009|-45.2021,1.4,-64.2918|-42.7122,1'
  249. ..'.8,-64.3009|-0.5089,-0.4,0.0007,-1,-0.0001,0,0,0,1,-0.0001,1,-0.0001|-59.712,1.8,-47.301|-59.712,1.4,-49.801|-59.712,1.8,-52.3009|-89.9052,8.6001,-139.6074|-89.9052,5.4,-137.1073|1,10.8,1|0,5.4,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,-0.4,0,1,0,0,0,-0.0001,1,0,-1,0|-89.9051,5.4,-142.1074|-0.4993,-0.4001,0.0002,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,-0.0001|'
  250. ..'-89.9053,11.2,-137.1073|-86.5118,11.2,-141.6689|-84.731,11.2,-135.7451|-88.4504,11.2,-136.9537|-86.5432,11.2,-136.4958|-89.4058,11.2,-142.1077|-89.9051,11.2,-142.1074|0,5.3999,0,-1,0,0,0,0,-1,0,-1,0|-74.639,11.2,-132.2004|0,-64.2901,0|-76.7239,11.2,-135.5186|-79.4949,11.2,-138.2896|-78.5176,11.2,-128.47|-79.2683,11.2,-130.2822|-81.5671,11.2,-13'
  251. ..'3.4462|-82.8131,11.2,-140.3746|0,-25.72,0|-73.3446,11.2,-128.5015|-80.2931,11.2,-131.9547|-83.0586,11.2,-134.7203|-78.0597,11.2,-126.5627|-77.9057,11.2,-125.1068|-1,-0.4002,0.4997,0,0,1,0,1,-0.0001,-1,0,0|-72.9058,11.2,-125.6074|-1.0005,-0.4001,0.4998,-0.0001,0,1,0,1,-0.0001,-1,0,-0.0001|-72.9058,11.2,-125.1067|-0.9998,-0.4002,0.4998,0,0,1,0,1,'
  252. ..'-0.0001,-1,0,0|-75.4058,8.6,-125.1068|0.5,-0.2001,2,0,0,1,0,1,-0,-1,0,0|0.4999,-0.2001,-1.9999,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|-77.9057,5.4,-125.1069|0.5,-5.4001,0.5,0,0,1,0,1,-0,-1,0,0|0.4999,-5.4001,-0.4998,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|0,-0.4,0,-0.0001,1,-0.0001,-0.0001,0,1,1,0,0|-72.9058,5.4,-125.1067|0.4'
  253. ..'997,-5.4001,-0.4999,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|0.5007,-0.4001,-0.0001,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-75.406,1.4,-95.1067|-0.5043,-0.2,2.0051,0,-0.0001,1,0,1,0,-1,0,0|0,-0.4001,-0.5,1,0,-0.0001,0,1,0,0,-0.0001,1|0,-0.4001,0.5,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,-0.0001,-1|-77.906,1.8,-95.1067|-0.'
  254. ..'5044,-1.8,0.5051,0,-0.0001,1,0,1,0,-1,0,0|0.5,-0.4001,0,1,-0.0001,0,0,-0.0001,1,0,-1,-0.0001|-75.906,2,-95.6067|0.5,0.2,-0.5001,-1,0,0,0,0,-1,0,-1,0|-72.906,4.0001,-95.6067|-0.4956,-0.4,-0.5048,1,-0.0001,-0.0001,0,1,0,0,-0.0001,1|0.5,1.8,0,-1,0,-0.0001,-0.0001,-0.0001,-1,-0.0001,-1,0|-72.906,1.8,-95.1067|-0.5043,-1.8,0.5051,0,-0.0001,1,0,1,0,-1'
  255. ..',0,0|-74.906,2,-95.6067|0.5,0.2,0.4999,-1,0,0,0,0,-1,0,-1,0|-77.906,4.0001,-95.6067|1.0053,-0.4,-0.4958,-0.0001,0,-1,-0.0001,1,0,1,0,-0.0001|-74.906,5.6214,-109.6838|0,-90,-15.4701|27,0.8,1|-75.906,5.6214,-109.6838|-77.906,7.6214,-109.6838|-72.906,7.6214,-109.6838|-77.906,5.4001,-124.107|-0.5,-0.4001,0,1,-0.0001,0,0,0,1,0,-1,0|0,-3.2001,-2,1,0,'
  256. ..'0,-0.0001,1,0,0,-0.0001,1|-72.906,5.4001,-124.107|-0.5,-0.4001,-0.0001,1,-0.0001,0,0,0,1,-0.0001,-1,0|-75.406,8.6001,-124.107|0,3.2,-0.5001,1,-0.0001,-0.0001,-0.0001,1,0,0,0,1|-75.906,9.2001,-123.607|-0.5,0.2,-0.5,-1,-0.0001,0,0,0,-1,-0.0001,-1,-0.0001|-74.906,9.2001,-123.607|-0.5,0.2,0.5,-1,-0.0001,0,0,0,-1,-0.0001,-1,-0.0001|-72.906,11.2001,-'
  257. ..'123.607|-77.906,11.2001,-123.607|-150.9055,9,-137.107|1,18,1|0,9,0,-1,-0,-0,0,0,1,0,1,0|0,-0.4001,0,0,-1,0,0,0,1,-1,0,0|-150.9055,9,-142.107|0.5004,-0.4001,0.0002,1,0,0,0,0,1,0,-1,0|-150.9055,15.8,-139.607|-154.3,18.4,-141.6682|0,12.8599,0|-157.9989,18.4,-140.3736|0,25.7199,0|-161.317,18.4,-138.2884|0,38.5699,0|-156.0806,18.4,-135.7444|0,27,0|-'
  258. ..'154.2684,18.4,-136.4951|0,18,0|-164.088,18.4,-135.5173|0,51.43,0|-157.7531,18.4,-134.7194|0,36,0|-160.5186,18.4,-131.9537|0,54,0|-159.2446,18.4,-133.4453|0,45,0|-166.1729,18.4,-132.1989|0,64.29,0|-161.5434,18.4,-130.2813|0,63,0|-167.4671,18.4,-128.5001|0,77.1399,0|-162.294,18.4,-128.469|0,72,0|-162.7518,18.4,-126.5618|0,81,0|-152.3611,18.4,-136'
  259. ..'.9533|0,9,0|-162.9055,18.4,-125.107|0,9,0,-1,0,0,0,0,-1,0,-1,0|-167.9055,18.4,-125.107|-167.9058,18.4,-125.6061|-150.9055,18.4,-142.107|-151.4059,18.4,-142.1072|0,0.0099,0|-150.9055,18.4,-137.107|-167.9055,9,-125.107|-0.4991,-0.4,0.0003,-1,-0.0001,0,0,0,1,-0.0001,1,0|-162.9055,9,-125.107|-165.4054,15.8,-125.107|-162.906,9,-64.1068|-0.5,-9,-0.5,'
  260. ..'0,0,-1,0,1,0,1,0,0|-0.5002,-9,0.4995,0,0,1,0,1,-0,-1,0,0|-167.906,9,-64.1068|-0.5002,-9,0.4994,0,0,1,0,1,-0,-1,0,0|-165.406,15.8,-64.1068|-0.5002,-0.2001,1.9994,-0.0001,0,1,-0.0001,1,-0.0001,-1,-0.0001,-0.0001|-167.4672,18.4,-60.7123|-166.1726,18.4,-57.0134|-164.0874,18.4,-53.6953|-161.5434,18.4,-58.9317|-162.2941,18.4,-60.7439|-161.3163,18.4,-'
  261. ..'50.9243|-160.5184,18.4,-57.2592|-157.7527,18.4,-54.4937|-159.2443,18.4,-55.7677|-157.9979,18.4,-48.8394|-156.0803,18.4,-53.4689|-154.2991,18.4,-47.5452|-154.268,18.4,-52.7183|-152.3608,18.4,-52.2605|-162.7523,18.4,-62.6512|-150.906,18.4,-52.1068|0.5,-0.4001,0.5,0,0,1,0,1,-0,-1,0,0|-0.5006,-0.4044,0.5096,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|Rail'
  262. ..'-to-Smooth Block Model Strong Joint|0.5007,8.9956,-0.5002,0,0,-1,0,1,0,0.9999,-0.0001,0|0,9,0,-1,0,-0.0001,0,-0.0001,-1,-0.0001,-1,0|-150.906,18.4,-47.1068|-0.5006,-0.4044,0.5097,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|0.5007,8.9955,-0.5002,0,0,-1,0,1,0,0.9999,-0.0001,0|0,9,0,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|-151.405,18.4,-47.1065|-1,-0.4001'
  263. ..',-0.5,0,0,-1,0,1,0,1,0,0|-0.4996,-0.4045,0.51,-0.0001,-0.0001,0.9999,0,1,0,-1.0001,0,-0.0001|0.4998,8.9955,-0.5005,0,0,-1,0,1,0,0.9999,-0.0001,0|0.499,8.9999,-0.0004,1,0,0,0,0,-1,-0.0001,1,0|-167.906,18.4,-64.1068|0.5001,-0.4,-0.4995,0,0,-1,0,1,0,1,0,0|-0.9993,-0.4,0.4998,0,0,1,0,1,0,-1,0,0|0,8.9999,0,0,1,0,0,0,-1,-1,0,0|-167.9062,18.4,-63.6064'
  264. ..'|0,90.01,0|0.5005,-0.4,-0.4992,0,0,-1,0,1,0,1,0,0|-0.9997,-0.4,0.4994,-0.0001,0,1,0,1,0,-1,0,-0.0001|0.5004,9,0.0002,-1,-0.0001,0,0,0,-1,0,-1,-0|-162.906,18.4,-64.1068|0.5001,-0.4,-0.4996,0,0,-1,0,1,0,1,0,0|-150.906,9,-47.1068|0.4993,-9.0045,-0.4999,0,0,-1,0,1,0,0.9999,-0.0001,0|-150.906,9,-52.1068|0.4993,-9.0044,-0.4999,0,0,-1,0,1,0,0.9999,-0.'
  265. ..'0001,0|-150.906,15.8,-49.6069|0.5005,-0.2045,-2.0001,0,0,-1,0,1,0,1,-0.0001,0|-119.9058,9,-82.1063|-119.9058,9,-77.1063|-119.9058,15.8,-79.6063|-116.5113,18.4,-77.5451|-112.8124,18.4,-78.8397|-109.4943,18.4,-80.9249|-114.7307,18.4,-83.4689|-116.5429,18.4,-82.7182|-106.7233,18.4,-83.696|-113.0582,18.4,-84.4939|-110.2927,18.4,-87.2596|-111.5667,1'
  266. ..'8.4,-85.768|-104.6384,18.4,-87.0144|-109.2679,18.4,-88.932|-103.3442,18.4,-90.7132|-108.5173,18.4,-90.7443|-108.0595,18.4,-92.6515|-118.4502,18.4,-82.26|-107.9058,18.4,-94.1063|-0.4996,-0.4,-0.5002,1,0,0,0,1,0,0,0,1|-102.9058,18.4,-94.1063|1.0006,-0.4001,-0.4992,-0.0001,0,-1,0,1,0,1,0,-0.0001|-0.4995,-0.4,-0.5002,1,0,0,0,1,0,0,0,1|-102.9055,18.'
  267. ..'4,-93.6073|0.9997,-0.4001,-0.4995,-0.0001,0,-1,0,1,0,1,0,-0.0001|-0.4998,-0.4001,-0.4993,1,0,0,0,1,0,-0.0001,0,1|-119.9058,18.4,-77.1063|-119.4054,18.4,-77.1061|0,-179.9901,0|-119.9058,18.4,-82.1063|-102.9058,9,-94.1063|-107.9058,9,-94.1063|-105.4058,15.8,-94.1064|-0.5002,-0.2,1.9994,0,0,1,-0.0001,1,-0.0001,-1,-0.0001,0|-119.906,9,-142.1068|-0.'
  268. ..'5,-0.4001,0,-1,0,0,0,0,1,0,1,0|-119.406,16.4001,-139.1068|-119.406,16.4001,-140.1068|0.5,0.2,-0.5,1,0,-0.0001,-0.0001,0,-1,0,1,0|-119.406,18.4001,-142.1068|-119.406,18.4001,-137.1068|-119.906,9,-137.1068|-119.906,15.8,-139.6068|-0.5001,-0.4001,-0.5,-1,0,0,0,0,1,0,1,0|-105.483,12.8215,-139.1068|0,0,-15.4701|-105.483,14.8214,-137.1068|-105.483,14'
  269. ..'.8214,-142.1068|-90.9059,5.4,-137.1068|0.5,-0.4001,0,1,0,0,-0.0001,0,1,0,-1,0|0,-3.2001,-2,1,-0.0001,-0,0,1,0,-0,0,1|-90.9059,5.4,-142.1068|0.5,-0.4001,0,1,0,0,0,0,1,0,-1,0|-105.483,12.8215,-140.1068|-91.4059,9.2,-140.1068|0.5,0.1999,0.5,-1,0,0,-0.0001,0,-1,0,-1,0|-91.4059,9.2,-139.1068|-91.4059,11.2,-142.1068|-90.9059,8.6001,-139.6068|0.5,-0.4'
  270. ..',-0.5,1,0,0,0,0,1,0,-1,0|-0.0001,3.2,-0.5,1,0,-0,0,1,0,-0,0,1|-91.4059,11.2,-137.1068|-122.4722,11.2226,-47.1165|54,0.8,1|-122.4723,9.2226,-49.1164|-94.9066,2,-49.1067|-2.0007,-0.4001,1.0001,0,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,0|-122.4722,11.2226,-52.1164|-149.9054,18.4043,-47.1166|-94.9069,4,-47.1163|-2.001,-0.4001,0.4904,0,0,1,-0.0001,1,-'
  271. ..'0.0001,-1,-0.0001,0|0.0004,1.7999,0.0096,-1,0,0,-0.0001,0,-1.0001,-0.0001,-1,-0.0001|-94.9069,3.9999,-52.1163|-2.001,-0.4002,0.4905,0,0,1,-0.0001,1,-0.0001,-1,-0.0001,0|-94.9066,2,-50.1067|-2.0007,-0.4001,0.0001,0,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,0|0,0.2,0.4999,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|-122.4723,9.2225,-50.1164|-94.9066,1.8,-'
  272. ..'52.1066|0.5008,-1.8001,-0.5002,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,-0.0001|0.0004,-0.4,0.0095,0.9999,-0.0001,-0.0001,0,0,1,-0.0001,-1,0|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0.4,1.9999,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|-94.9067,1.4,-49.6067|0.5007,-0.2001,-2.0002,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,-0.0001|0,-0.4,-0.5001,1,'
  273. ..'0,0,-0.0001,0,1,0,-1,0|-94.9066,1.8001,-47.1067|0.5008,-1.8,-0.5002,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,-0.0001|0,0.4,-2,1,-0.0001,-0.0001,0,1,-0.0001,0,0,1|-149.9059,9.0044,-47.1068|0.0002,-0.4,0.0096,1,0,-0.0001,0,0,1,0,-1,0|0,-6.8001,-2,1,-0.0001,-0.0001,0,1,-0.0001,0,0,1|-149.9054,15.8044,-49.6069|0.0002,-0.4,-0.4904,1,-0.0001,-0.'
  274. ..'0001,0,0,1,-0.0001,-1,0|-149.9056,16.4043,-50.1165|0.0002,0.1999,0.5096,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|-149.9056,16.4043,-49.1165|-149.9059,9.0043,-52.1068|-0.0001,-6.8001,1.9999,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|-149.9054,18.4043,-52.1165|0.0002,8.9999,0.0095,-1,0,0,-0.0001,0,-1.0001,-0.0001,-1,-0.0001|-150.9054,9,-77.107|0.4995,-9'
  275. ..',-0.4999,0,0,-1,0,1,0,1,0,0|-150.9055,9,-82.107|0,-0.4,0,0,-1,0,0,0,1,-1,0,0|-150.9055,15.8,-79.607|0.4995,-0.2,-1.9999,0,0,-1,0,1,0,1,0,0|-154.3,18.4,-81.6682|-157.9989,18.4,-80.3736|-161.317,18.4,-78.2884|-156.0806,18.4,-75.7444|-154.2684,18.4,-76.4951|-164.088,18.4,-75.5173|-157.7531,18.4,-74.7194|-160.5186,18.4,-71.9537|-159.2446,18.4,-73.4'
  276. ..'453|-166.1729,18.4,-72.1989|-161.5434,18.4,-70.2813|-167.4671,18.4,-68.5001|-162.294,18.4,-68.469|-162.7518,18.4,-66.5618|-152.3611,18.4,-76.9533|-162.9055,18.4,-65.107|-167.9055,18.4,-65.107|0,8.9999,0,-1,0,0,0,0,-1,0,-1,0|-167.9058,18.4,-65.6061|-150.9055,18.4,-82.107|-14.9996,-0.4,0.4998,0,0,1,0,1,-0,-1,0,0|-151.4059,18.4,-82.1072|-15,-0.4,0'
  277. ..'.4995,-0.0001,0,1,0,1,0,-1,0,-0.0001|0.5004,9,0.0002,-1,-0.0001,0,0,0,-1,0,-1,0|-150.9055,18.4,-77.107|-167.9055,9,-65.107|-162.9055,9,-65.107|-165.4054,15.8,-65.107|-162.906,9,-124.1068|-167.906,9,-124.1068|-165.406,15.8,-124.1068|-167.4672,18.4,-120.7123|-166.1726,18.4,-117.0134|-164.0874,18.4,-113.6953|-161.5434,18.4,-118.9317|-162.2941,18.4'
  278. ..',-120.7439|-161.3163,18.4,-110.9243|-160.5184,18.4,-117.2592|-157.7527,18.4,-114.4937|-159.2443,18.4,-115.7677|-157.9979,18.4,-108.8394|-156.0803,18.4,-113.4689|-154.2991,18.4,-107.5452|-154.268,18.4,-112.7183|-152.3608,18.4,-112.2605|-162.7523,18.4,-122.6512|-150.906,18.4,-112.1068|-150.906,18.4,-107.1068|-151.405,18.4,-107.1065|-167.906,18.4,'
  279. ..'-124.1068|-167.9062,18.4,-123.6064|-162.906,18.4,-124.1068|0,9,0,0,1,0,0,0,-1,-1,0,0|-150.9059,9,-107.1069|-0.4991,-0.4,0.0003,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|0,-0.4,-0.0001,0.9999,0,0,-0.0001,-0.0001,1,0,-1.0001,-0.0001|-150.906,9,-112.1068|0,-0.4001,0,1,0,0,-0.0001,-0.0001,1,0,-1,-0.0001|-150.9059,15.8001,-109.607|-107.9053,9'
  280. ..',-95.1065|-102.9053,9,-95.1065|-105.4053,15.8,-95.1065|-103.3441,18.4,-98.501|-104.6387,18.4,-102.1999|-106.7239,18.4,-105.518|-109.2679,18.4,-100.2816|-108.5171,18.4,-98.4694|-109.495,18.4,-108.289|-110.2929,18.4,-101.9541|-113.0586,18.4,-104.7196|-111.567,18.4,-103.4456|-112.8133,18.4,-110.3739|-114.731,18.4,-105.7444|-116.5122,18.4,-111.6681'
  281. ..'|-116.5433,18.4,-106.495|-118.4505,18.4,-106.9528|-108.059,18.4,-96.5621|-119.9053,18.4,-107.1065|15.0006,-0.4,-0.4997,0,0,-1,0,1,0,1,0,0|-119.9053,18.4,-112.1065|-119.4062,18.4,-112.1068|14.9997,-0.4001,-0.5,0,0,-1,0,1,0,1,0,0|-102.9053,18.4,-95.1065|-102.9051,18.4,-95.6069|0,-89.99,0|-107.9053,18.4,-95.1065|-119.9053,9,-112.1065|-0.5007,-9,0.'
  282. ..'4996,0,0,1,0,1,-0,-1,0,0|-119.9053,9,-107.1065|-119.9053,15.8,-109.6064|-0.5007,-0.2,1.9996,0,0,1,-0.0001,1,-0.0001,-1,-0.0001,0|-120.906,9,-137.1068|14.5,-0.4001,0,1,0,0,0,0,1,0,-1,0|-0.0001,-6.8,-2,1,0,0,-0.0001,1,0,0,0,1|-135.406,16.4,-139.6068|30,0.8,2|14.4999,0.2,0,1,0,-0.0001,-0.0001,0,-1,0,1,0|-120.906,15.8,-139.6068|-120.906,9,-142.1068'
  283. ..'|-0.0001,-6.8,2,-1,0,0,0,1,0,0,0,-1|-135.406,18.4,-137.1068|30,0.8,1|-135.406,18.4,-142.1068|14.5,9,0,-1,0,0,0,0,-1,0,-1,0|-14.5,9,0,-1,0,0,0,0,-1,0,-1,0|-149.906,9,-137.1068|-14.5,-0.4001,0,1,0,0,0,0,1,0,-1,0|-149.906,9,-142.1068|-149.906,15.8,-139.6068|14.5,-0.4001,0,-1,0,0,0,0,1,0,1,0|0,6.7999,-0.5,1,0,0,0,1,0,0,0,1|0,6.7999,0.5,-1,0,0,0,1,0'
  284. ..',0,0,-1|-120.906,9,-107.1068|-135.406,16.4,-109.6068|-14.5,0.1999,-0.0001,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-120.906,15.8,-109.6068|-14.5,-0.4001,0,-1,0,0,0,0,1,0,1,0|-120.906,9,-112.1068|0,-6.8,2,-1,0,0,0,1,0,0,0,-1|-135.406,18.4,-107.1068|-135.406,18.4,-112.1068|-14.5,9,-0.0001,-1,-0.0001,-0.0001,0,-0.0001,-1,0,-1,0|-149.906,9,-107.1068|0,'
  285. ..'-6.8001,-2.0001,1,-0.0001,-0.0001,0,1,-0.0001,0,0,1|-149.9059,9,-112.1069|0.5,-9,0.5,0,0,1,0,1,-0,-1,0,0|-0.5,-15.8001,2.9998,-0.0001,-0.0001,0.9999,0,1,0,-1,0,0|0,-6.8,2,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|-149.9059,15.8,-109.6069|-0.5,-0.2001,1.9998,-0.0001,-0.0001,0.9999,0,1,0,-1,0,0|-0.5,6.5999,4.4999,-0.0001,0,1,-0.0001,1,-0.0001,-1,-0.0'
  286. ..'001,-0.0001|-120.906,9,-77.1068|-135.406,16.4,-79.6068|-120.906,15.8,-79.6068|-120.906,9,-82.1068|-135.406,18.4,-77.1068|-135.406,18.4,-82.1068|-14.5,8.9999,0,-1,0,0,0,0,-1,0,-1,0|-149.9059,9,-77.1068|-0.0001,-6.8,-2,1,0,0,0,1,0,0,0,1|-149.906,9,-82.1068|-149.906,15.8,-79.6068|-75.906,1.8,-47.1068|-75.906,1.8,-52.1068|-82.906,2.6,-49.6068|-82.9'
  287. ..'06,3.2,-49.6068|0,0.2,0,-1,0,0,0,0,-1,0,-1,0|-82.906,4,-52.1068|-82.906,4,-47.1068|-89.906,1.8,-52.1068|7,-0.8001,2,-1,0,0,0,1,0,0,0,-1|-89.906,1.8,-47.1068|-7,-0.4001,0,1,0,0,0,0,1,0,-1,0|7,-0.8001,-2,1,0,0,0,1,0,0,0,1|-92.406,2,-49.6068|4,0.8,2|1.5,0.2,0,-1,0,0,0,0,-1,0,-1,0|-92.406,4,-47.1068|-1.5,1.7999,0,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-9'
  288. ..'0.906,1.8,-47.1068|0,0.4,-2,1,0,0,0,1,0,0,0,1|1.5,-0.4,0,1,0,0,0,0,1,0,-1,0|-93.906,1.4,-49.6068|-1.5,-0.4,0,1,0,0,-0.0001,-0.0001,1,0,-1,-0.0001|0,-0.4001,0.4999,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|0,-0.4001,-0.5001,1,-0.0001,-0.0001,0,1,-0.0001,0,0,1|-93.906,1.8,-52.1068|-92.406,4,-52.1068|1.5,1.7999,0,-1,0,0,0,0,-1,0,-1,0|-90.906,1.4,-49.6'
  289. ..'068|0,-0.4001,-0.5,1,0,0,0,1,0,0,0,1|0,-0.4,0.5,-1,0,0,0,1,0,0,0,-1|0,-0.4001,0.5,-1,0,0,0,1,0,0,0,-1|-90.906,1.8,-52.1068|-93.906,1.8,-47.1068|Regen|0.1568,0.498,0.2784|-83.406,4.2,-44.1068|1,0.4,2|0|Click|10|0.949,0.9529,0.9529|-1.5,-0.4,0,1,0,0,0,0,1,0,-1,0|0,0.4,-2,1,0,0,-0.0001,1,0,-0.0001,-0.0001,1|0.5,-1.8,-0.5,0,0,-1,0,1,0,1,0,0|0,0.4,2'
  290. ..',-1,0,0,0,1,0,0,0,-1|0.7686,0.1568,0.1098|2,-0.4001,0.5,0,0,1,0,1,-0,-1,0,0|-7.5,-0.4,0.5,0,0,1,0,1,-0,-1,0,0|-1.5,1.7999,0,-1,0,0,0,0,-1,0,-1,0|-1.5,-0.4,0,1,0,0,-0.0001,0,1,0,-1,0|0,0.4,2,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|-1.5,-0.4,0,1,0,-0.0001,-0.0001,0,1,0,-1,0|0,-0.4001,-0.5,1,0,-0.0001,0,1,0,-0.0001,-0.0001,1|0,-0.4001,0.5,-1,0,0,-0.'
  291. ..'0001,1,0,0,-0.0001,-1|0,0.3999,-2,1,0,0,0,1,0,0,0,1|1.5,-0.4001,0,1,0,0,0,0,1,0,-1,0|1.5,1.8,0,-1,0,0,0,0,-1,0,-1,0|-1.5,0.2,0,-1,0,0,0,0,-1,0,-1,0|-1.5,0.2,0,-1,-0.0001,-0.0001,0,-0.0001,-1,0,-1,0|-82.906,11.2,-49.6068|1,1.2,4|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|0,0.8,0,0,1,0,0,0,-1,-1,0,0|-85.906,5.8,-52.1068|-80.906,8.2,-51.1068|1,1.6,3|0,-0.80'
  292. ..'01,0,1,0,0,-0,-0,-1,0,1,0|2.5,0.2,-1.5,0,1,0,0,0,-1,-1,0,0|-80.906,11.2,-51.1068|1,1.2,3|-81.406,12,-49.6068|4,0.4,4|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|1.5,0.5999,-0.5,1,0,0,0,0,-1,0,1,0|-1.5,0.5999,-0.5,1,0,0,0,0,-1,0,1,0|-1.5,0.5999,0,0,-1,0,0,0,-1,1,0,0|-86.406,11.4,-49.6068|0,90,180|1,1.2,1|Down|-82.206,9.5,-50.1068|90,90,0|1,0.4,1|http://www'
  293. ..'.roblox.com/asset/?id=2008919|1|On|-82.206,10.5,-49.6068|0,0,-90|0,0.7,0.5,0,-1,0,-1,0,0,0,0,-1|-0.5001,-0.7001,0,0,0,1,-1,0,0,0,-1,0|-85.406,9.3,-49.6068|0,180,180|3,3,3|0,1.5,0,-1,-0,-0,0,0,1,0,1,0|0,-1.5,0,1,0,0,-0,-0,-1,0,1,0|0,0.6,1,0,-1,0,0,0,-1,1,0,0|-82.906,9.8,-49.6068|2,1.6,1|-0.5,-0.2001,0.2999,-1,0,0,0,0,1,0,1,0|-0.5,-0.2001,-0.3,1,'
  294. ..'0,0,0,0,1,0,-1,0|-80.906,9.8,-51.1068|1,1.6,1|0,0.8,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6001,0,-1,0,0,0,0,1,0,1,0|0,0.7999,0,1,0,0,0,0,-1,0,1,0|0.5|-82.4061,4.8998,-48.1069|0,90,90|1,1,1|6|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-0.2,0,-1,-0,-0,0,0,1,0,1,0|-80.9061,5.7998,-47.6069|0,-90,180|2,2,2|1,0,0,0,0,1,0,1,0,-1,-0,-0|2,0.3999,1,-1,-0,-0,0,1,0,-0,-0,-1|-1,'
  295. ..'-0.6,1.5,0,0,1,0,1,0,-1,-0,-0|-85.906,5.8,-47.1068|-83.9041,5.8388,-47.6028|-0.16,-89.9801,-179.9401|-1,-0.5601,-1.5,0,0,1,0,1,0,-1,-0,-0|-1,0.4399,1,-1,-0,-0,0,1,0,-0,-0,-1|-85.9061,4.8998,-48.1069|0.1058,0.1647,0.2078|-82.406,5.6,-48.1068|-85.906,5.6,-48.1068|-78.906,6.0999,-49.6068|0,0,180|0,-0.3,3,-1,-0,-0,0,1,0,-0,-0,-1|-80.906,8.2,-48.106'
  296. ..'8|0,-0.8,0,-1,0,0,0,0,1,0,1,0|2.5,0.2,1.5,0,1,0,0,0,-1,-1,0,0|-77.906,6.0999,-49.6068|-0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-82.906,5.4,-49.6068|7,0.8,2|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,-0.2001,0.5,-1,0,0,0,1,0,0,0,-1|0,0,1,1,0,0,0,1,0,0,0,1|-0.5,-0.2001,-0.5,1,0,0,0,1,0,0,0,1|3,-0.2001,0.5,-1,0,0,0,1,0,0,0,-1|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6001,'
  297. ..'-0.5,0,-1,0,0,0,1,-1,0,0|3,-0.2001,-0.5,1,0,0,0,1,0,0,0,1|Engine|-82.406,6.4,-49.6068|2,1.2,6|0,0,0|BV|0,-5,0|20000,2000,20000|0,-30000,0|-83.406,7.2,-49.6068|8,0.4,4|2,-0.2,0,-1,0,0,0,0,1,0,1,0|0,0.6,-1,0,-1,0,0,0,-1,1,0,0|-85.9061,4.8999,-51.1069|-82.4061,4.8998,-51.1069|-85.406,7.6,-49.6068|-80.906,9.8,-48.1068|-85.906,6.6,-49.6068|1,0.8,6|0'
  298. ..',0.2,-3,1,0,0,0,1,0,0,0,1|0,0.4,-2.5,1,0,0,0,0,-1,0,1,0|-2.5,-0.2001,0,-1,0,0,0,0,1,0,1,0|0,0.4,2.5,1,0,0,0,0,-1,0,1,0|Safe|-80.406,7.6,-49.6068|2,0.4,2|3,0.1999,0,0,1,0,0,0,-1,-1,0,0|-82.406,5.6,-51.1068|Up|-82.206,9.5,-49.1068|-90,-90,0|-82.906,8.2,-49.6068|1,1.6,4|0.5,0.2,0,1,0,0,0,0,-1,0,1,0|0,-0.8,0,0,-1,0,0,0,1,-1,0,0|-83.9061,5.7998,-51.'
  299. ..'6069|0,90,-180|-1,0.3999,-1,1,0,0,0,1,0,0,0,1|1,-0.6,-1.5,-0,-0,-1,0,1,0,1,0,0|-80.9061,5.7998,-51.6069|2,0.3999,-1,1,0,0,0,1,0,0,0,1|1,-0.6,1.5,-0,-0,-1,0,1,0,1,0,0|-80.906,11.2,-48.1068|0,0.8,0,1,0,0,0,0,-1,0,1,0|-85.906,5.6,-51.1068|288|-174.906,28,-90.6068|61,20,2|http://www.roblox.com/asset/?id=383517485;0,4>2>9,6>10>5,6>11>21,7>10>5,7>11>'
  300. ..'9,10>10>9,10>11>598,11>10>9,11>11>8,12>10>9,12>11>15,13>10>9,13>11>26,14>10>9,14>11>24,16>10>15,16>11>600,18>10>17,18>11>602,19>10>17,19>11>8,20>10>17,20>11>24,22>10>21,22>11>605,23>10>21,23>11>26,25>10>24,25>11>597,27>10>26,27>11>594,28>2>40,30>10>29,30>11>53,36>10>35,36>11>55,38>10>37,38>11>55,57>10>56,57>11>52,58>10>56,58>11>51,61>10>60,61>1'
  301. ..'1>50,62>2>72,69>10>68,69>11>93,83>10>82,83>11>105,85>10>84,85>11>110,86>10>84,86>11>111,88>10>87,88>11>110,89>10>87,89>11>111,91>10>90,91>11>63,94>10>93,94>11>70,96>10>95,96>11>131,97>10>95,97>11>87,98>10>95,98>11>84,100>10>99,100>11>130,102>10>101,102>11>128,103>10>101,103>11>82,104>2>114,112>10>111,112>11>131,126>10>125,126>11>133,129>10>128,'
  302. ..'129>11>105,132>10>131,132>11>110,134>10>133,134>11>127,137>10>136,137>11>124,139>2>154,142>10>141,142>11>145,144>10>143,144>11>150,152>10>151,152>11>143,165>10>164,165>11>215,167>10>166,167>11>214,169>10>168,169>11>214,171>10>170,171>11>208,173>10>172,173>11>203,174>10>172,174>11>164,176>10>175,176>11>206,177>10>175,177>11>168,178>10>175,178>11'
  303. ..'>166,179>2>199,181>10>180,181>11>59,182>10>180,182>11>192,183>10>180,183>11>184,185>10>184,185>11>56,186>10>184,186>11>196,188>10>187,188>11>180,190>10>189,190>11>50,191>10>189,191>11>192,193>10>192,193>11>60,195>10>194,195>11>180,197>10>196,197>11>51,198>10>196,198>11>52,204>10>203,204>11>215,205>10>203,205>11>208,207>10>206,207>11>214,209>10>'
  304. ..'208,209>11>206,211>10>210,211>11>208,213>10>212,213>11>208,217>2>226,219>10>218,219>11>245,221>10>220,221>11>244,222>10>220,222>11>243,240>10>239,240>11>249,247>10>246,247>11>242,248>10>246,248>11>241,251>2>261,253>10>252,253>11>450,254>10>252,254>11>294,256>10>255,256>11>449,258>10>257,258>11>451,275>10>274,275>11>410,276>10>274,276>11>408,277'
  305. ..'>10>274,277>11>298,279>10>278,279>11>379,280>10>278,280>11>400,281>10>278,281>11>296,283>10>282,283>11>379,284>10>282,284>11>400,285>10>282,285>11>296,287>10>286,287>11>437,288>10>286,288>11>439,289>10>286,289>11>255,291>10>290,291>11>437,292>10>290,292>11>439,293>10>290,293>11>255,295>10>294,295>11>435,297>10>296,297>11>400,299>10>298,299>11>4'
  306. ..'08,301>10>300,301>11>403,302>2>311,304>10>303,304>11>336,306>10>305,306>11>335,307>10>305,307>11>334,325>10>324,325>11>516,326>10>324,326>11>340,328>10>327,328>11>515,329>10>327,329>11>514,330>10>327,330>11>337,332>10>331,332>11>515,333>10>331,333>11>514,338>10>337,338>11>489,339>10>337,339>11>331,341>10>340,341>11>487,343>10>342,343>11>492,344'
  307. ..'>2>356,346>10>345,346>11>350,349>10>348,349>11>354,353>10>352,353>11>351,355>10>354,355>11>347,360>10>359,360>11>372,361>10>359,361>11>369,363>10>362,363>11>368,366>10>365,366>11>369,370>10>369,370>11>367,371>10>369,371>11>362,373>2>374,377>10>376,377>11>673,381>10>380,381>11>667,382>10>380,382>11>397,384>10>383,384>11>649,386>10>385,386>11>673'
  308. ..',387>10>385,387>11>394,389>2>394,391>10>390,391>11>655,392>10>390,392>11>383,393>10>390,393>11>394,395>10>394,395>11>659,396>10>394,396>11>376,398>10>397,398>11>639,399>10>397,399>11>394,401>10>400,401>11>379,402>10>400,402>11>403,404>10>403,404>11>407,406>10>405,406>11>403,409>10>408,409>11>403,411>10>410,411>11>408,412>2>422,414>10>413,414>11'
  309. ..'>585,416>10>415,416>11>588,417>10>415,417>11>441,419>10>418,419>11>589,436>10>435,436>11>450,438>10>437,438>11>449,440>10>439,440>11>449,442>10>441,442>11>582,444>10>443,444>11>582,445>10>443,445>11>415,447>10>446,447>11>581,448>10>446,448>11>413,452>2>458,475>10>474,475>11>454,477>10>476,477>11>454,479>10>478,479>11>453,481>10>480,481>11>473,4'
  310. ..'82>10>480,482>11>472,484>10>483,484>11>471,486>2>495,488>10>487,488>11>516,490>10>489,490>11>515,491>10>489,491>11>514,509>10>508,509>11>558,511>10>510,511>11>559,513>10>512,513>11>559,518>10>517,518>11>555,519>10>517,519>11>512,520>10>517,520>11>510,522>10>521,522>11>548,523>10>521,523>11>508,525>10>524,525>11>552,526>2>530,528>10>527,528>11>5'
  311. ..'36,529>10>527,529>11>532,531>10>530,531>11>532,534>10>533,534>11>532,535>2>536,538>10>537,538>11>533,539>10>537,539>11>542,541>10>540,541>11>536,544>10>543,544>11>530,545>10>543,545>11>542,546>10>543,546>11>540,547>2>550,549>10>548,549>11>558,551>10>550,551>11>568,553>10>552,553>11>550,554>10>552,554>11>548,556>10>555,556>11>552,557>2>558,560>1'
  312. ..'0>559,560>11>565,561>10>559,561>11>555,563>10>562,563>11>558,564>10>562,564>11>568,566>10>565,566>11>485,567>10>565,567>11>568,569>10>568,569>11>485,570>10>568,570>11>480,571>2>574,573>10>572,573>11>581,576>10>575,576>11>574,577>10>575,577>11>579,578>10>575,578>11>572,580>2>581,583>10>582,583>11>579,584>10>582,584>11>588,586>10>585,586>11>581,5'
  313. ..'87>10>585,587>11>589,590>10>589,590>11>574,591>10>589,591>11>588,593>2>598,595>10>594,595>11>605,596>10>594,596>11>598,599>10>598,599>11>597,601>10>600,601>11>598,603>10>602,603>11>597,604>10>602,604>11>606,607>10>606,607>11>598,609>10>608,609>11>605,610>10>608,610>11>598,613>10>612,613>11>647,615>10>614,615>11>634,617>10>616,617>11>647,618>10>'
  314. ..'616,618>11>614,620>10>619,620>11>612,621>10>619,621>11>634,622>10>619,622>11>623,625>10>624,625>11>633,626>10>624,626>11>623,628>10>627,628>11>612,629>10>627,629>11>643,630>10>627,630>11>663,631>10>627,631>11>633,632>10>627,632>11>616,640>10>639,640>11>614,641>10>639,641>11>659,642>10>639,642>11>619,644>10>643,644>11>606,645>10>643,645>11>624,6'
  315. ..'46>10>643,646>11>647,648>10>647,648>11>633,650>10>649,650>11>602,651>10>649,651>11>633,652>10>649,652>11>643,653>10>649,653>11>655,654>10>649,654>11>623,656>10>655,656>11>624,657>10>655,657>11>659,658>10>655,658>11>619,660>10>659,660>11>612,661>10>659,661>11>623,662>10>659,662>11>634,664>10>663,664>11>608,665>10>663,665>11>647,666>10>663,666>11'
  316. ..'>614,668>10>667,668>11>605,669>10>667,669>11>663,670>10>667,670>11>616,671>10>667,671>11>639,672>10>667,672>11>634,674>10>673,674>11>647,675>10>673,675>11>627,676>10>673,676>11>659,677>10>673,677>11>619,679>10>678,679>11>702,682>10>681,682>11>739,685>10>684,685>11>770,686>10>684,686>11>683,687>10>684,687>11>678,697>10>694,697>11>702,698>10>694,'
  317. ..'698>11>678,700>10>699,700>11>746,701>10>699,701>11>688,703>10>702,703>11>757,704>10>702,704>11>690,706>10>705,706>11>683,707>10>705,707>11>681,709>10>708,709>11>719,711>10>710,711>11>728,712>10>710,712>11>734,715>10>714,715>11>734,716>10>714,716>11>728,718>10>717,718>11>720,722>10>721,722>11>734,724>10>723,724>11>747,725>10>723,725>11>739,727>1'
  318. ..'0>726,727>11>721,729>10>728,729>11>756,730>10>728,730>11>719,731>10>728,731>11>772,732>10>728,732>11>734,733>10>728,733>11>720,740>10>739,740>11>746,741>10>739,741>11>734,743>10>742,743>11>772,745>10>744,745>11>756,749>10>748,749>11>734,750>10>748,750>11>713,751>10>748,751>11>739,752>10>748,752>11>680,755>10>753,755>11>739,762>10>761,762>11>739'
  319. ..',763>10>761,763>11>702,765>10>764,765>11>728,766>10>764,766>11>734,768>10>767,768>11>728,769>10>767,769>11>734,771>10>770,771>11>747;2;n;2;n;2;n;2;n;1|3:2|4:3|5:4|6:5|7:6|3:2|3:2;n;3|8:7|9:8;4|8:9|9:10;p;1|3:2|4:11|5:4|6:5|12:6|3:2|3:2;1|3:2|4:12|5:4|6:13|3:2|3:2;n;5|1:14|8:15|9:16;4|8:17|9:18;3|8:19|9:20;4|8:21|9:22;4|8:17|9:23;p;1|1:24|13:25|'
  320. ..'3:2|4:26|6:27|14:28|3:2|3:2;n;5|1:29|8:30|9:31;p;1|1:24|13:25|3:2|4:32|6:33|14:28|3:2|3:2;n;5|1:29|8:34|9:35;3|8:36|9:37;3|8:36|9:38;p;1|1:24|13:25|3:2|4:39|6:33|14:28|3:2|3:2;n;5|1:29|8:34|9:35;3|8:36|9:38;p;1|3:2|4:40|5:4|6:5|12:6|3:2|3:2;n;5|1:14|8:41|9:42;p;1|3:2|4:43|5:4|6:5|7:6|3:2|3:2;n;5|1:14|8:41|9:42;p;p;2;n;1|1:24|13:25|3:2|4:44|6:45'
  321. ..'|14:28|3:2|3:2;n;3|8:36|9:46;p;1|1:24|13:25|3:2|4:47|5:48|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:50|5:51|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:53|5:54|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:55|5:56|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:57|5:58|6:52|14:28|3:2|3:2;n;3|8:36|9:59;p;1|1:24|13:25|3:2|4:60|6:45|14:28|3:2|3:2;n;3|8:36|9:61;p;1|1:24|13:25'
  322. ..'|3:2|4:62|5:63|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:64|5:65|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:66|5:67|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:68|5:69|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:70|5:71|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:72|5:73|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:74|5:75|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:76|5:77|6:49|14:2'
  323. ..'8|3:2|3:2;1|1:24|13:25|3:2|4:78|5:79|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:80|5:81|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:82|5:83|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:84|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:85|5:86|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:87|6:45|14:28|3:2|3:2;1|3:2|4:88|5:58|6:5|3:2|3:2;1|3:2|4:89|5:58|6:90|3:2|3:2;1|3:2|4:91|5:'
  324. ..'58|6:5|3:2|3:2;1|3:2|4:92|5:93|6:5|3:2|3:2;n;3|8:7|9:94;3|8:7|9:95;p;1|3:2|4:96|5:93|6:90|3:2|3:2;1|3:2|4:97|5:93|6:5|3:2|3:2;n;3|8:7|9:98;p;p;2;n;1|1:24|13:25|3:2|4:99|5:58|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:100|5:101|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:102|5:103|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:104|5:105|6:52|14:28|3:2|3:2;1|1:24|13'
  325. ..':25|3:2|4:106|5:107|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:108|6:52|14:28|3:2|3:2;n;3|8:36|9:59;p;1|1:24|13:25|3:2|4:109|5:58|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:110|5:111|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:112|5:113|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:114|5:115|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:116|5:117|6:52|14:28|3:2|3:2;1|1:24|13:'
  326. ..'25|3:2|4:118|5:119|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:120|5:121|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:122|5:123|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:124|5:125|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:126|5:127|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:128|5:129|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:130|5:131|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:1'
  327. ..'32|5:58|6:45|14:28|3:2|3:2;n;5|1:29|8:133|9:134;p;1|1:24|13:25|3:2|4:135|5:93|6:52|14:28|3:2|3:2;n;5|1:29|8:136|9:137;5|1:29|8:136|9:138;p;1|1:24|13:25|3:2|4:139|5:58|6:45|14:28|3:2|3:2;n;5|1:29|8:133|9:140;5|1:29|8:133|9:141;p;1|3:2|4:142|6:5|3:2|3:2;n;3|8:7|9:143;p;1|3:2|4:144|6:90|3:2|3:2;1|3:2|4:145|6:5|3:2|3:2;n;3|8:7|9:146;p;1|3:2|4:147|5'
  328. ..':86|6:5|3:2|3:2;n;5|1:14|8:148|9:149;3|8:7|9:98;3|8:7|9:95;p;1|3:2|4:150|5:86|6:90|3:2|3:2;n;5|1:14|8:151|9:152;p;1|3:2|4:153|5:86|6:5|3:2|3:2;n;5|1:14|8:148|9:149;3|8:7|9:98;p;p;2;n;1|1:24|13:25|3:2|4:154|5:86|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:155|5:156|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:157|5:158|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:1'
  329. ..'59|5:160|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:161|5:162|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:163|5:93|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:164|5:86|6:45|14:28|3:2|3:2;n;3|8:36|9:165;p;1|1:24|13:25|3:2|4:166|5:167|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:168|5:169|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:170|5:171|6:49|14:28|3:2|3:2;1|1:24|13:25|3:'
  330. ..'2|4:172|5:173|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:174|5:175|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:176|5:177|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:178|5:179|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:180|5:181|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:182|5:183|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:184|5:185|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:186|5:'
  331. ..'187|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:188|5:86|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:189|5:58|6:52|14:28|3:2|3:2;n;3|8:36|9:190;p;1|1:24|13:25|3:2|4:191|5:86|6:45|14:28|3:2|3:2;1|3:2|4:192|5:93|6:5|3:2|3:2;n;3|8:7|9:143;p;1|3:2|4:193|5:93|6:90|3:2|3:2;1|3:2|4:194|5:93|6:5|3:2|3:2;n;3|8:7|9:195;p;1|3:2|4:196|6:5|3:2|3:2;n;3|8:7|9:94;p;1|3:2|'
  332. ..'4:197|6:90|3:2|3:2;1|3:2|4:198|6:5|3:2|3:2;n;3|8:7|9:98;p;p;p;2;n;2;n;1|3:2|4:199|6:90|3:2|3:2;1|3:2|4:200|6:201|3:2|3:2;n;3|8:202|9:203;p;1|3:2|4:204|6:201|3:2|3:2;n;3|8:202|9:205;p;1|1:24|13:25|3:2|4:206|5:4|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:207|5:101|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:208|5:103|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:20'
  333. ..'9|5:105|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:210|5:107|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:211|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:212|5:4|6:45|14:28|3:2|3:2;n;3|8:36|9:213;p;1|1:24|13:25|3:2|4:214|5:215|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:216|5:113|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:217|5:115|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:218'
  334. ..'|5:117|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:219|5:119|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:220|5:121|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:221|5:222|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:223|5:125|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:224|5:127|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:225|5:129|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:226|5:131|6:5'
  335. ..'2|14:28|3:2|3:2;1|1:24|13:25|3:2|4:227|5:4|6:45|14:28|3:2|3:2;n;5|1:29|8:133|9:228;p;1|1:24|13:25|3:2|4:229|5:93|6:52|14:28|3:2|3:2;n;5|1:29|8:136|9:230;p;1|1:24|13:25|3:2|4:231|5:4|6:45|14:28|3:2|3:2;n;5|1:29|8:133|9:232;p;1|3:2|4:233|5:93|6:90|3:2|3:2;n;5|1:14|8:234|9:235;p;1|3:2|4:236|5:93|6:201|3:2|3:2;n;5|1:14|8:237|9:238;3|8:202|9:239;p;1'
  336. ..'|3:2|4:240|5:93|6:201|3:2|3:2;n;5|1:14|8:237|9:241;3|8:202|9:239;3|8:202|9:242;p;p;2;n;1|3:2|4:243|5:86|6:90|3:2|3:2;n;5|1:14|8:151|9:244;4|8:17|9:245;4|8:21|9:246;p;1|3:2|4:247|5:86|6:5|7:6|3:2|3:2;n;5|1:14|8:148|9:248;3|8:7|9:249;p;1|1:24|13:25|3:2|4:250|5:93|6:52|14:28|3:2|3:2;n;3|8:36|9:251;p;1|1:24|13:25|3:2|4:252|5:93|6:52|14:28|3:2|3:2;n'
  337. ..';5|1:29|8:136|9:253;3|8:36|9:254;p;1|3:2|4:255|5:86|6:5|12:6|3:2|3:2;n;5|1:14|8:148|9:256;p;1|1:24|13:25|3:2|4:257|5:93|6:52|14:28|3:2|3:2;n;3|8:36|9:258;p;1|1:24|13:25|3:2|4:259|5:93|6:52|14:28|3:2|3:2;n;5|1:29|8:136|9:260;5|1:29|8:136|9:253;p;1|1:24|13:25|3:2|4:261|5:262|6:263|14:28|3:2|3:2;1|1:24|13:25|3:2|4:264|5:262|6:263|14:28|3:2|3:2;1|1'
  338. ..':24|13:25|3:2|4:265|5:262|6:263|14:28|3:2|3:2;1|1:24|13:25|3:2|4:266|5:262|6:263|14:28|3:2|3:2;1|3:2|4:267|5:86|6:201|7:6|3:2|3:2;n;3|8:202|9:268;4|8:9|9:269;p;1|3:2|4:270|5:86|6:201|12:6|3:2|3:2;n;3|8:202|9:271;p;1|3:2|4:272|5:86|6:90|3:2|3:2;n;4|8:17|9:273;p;1|1:24|13:25|3:2|4:274|5:93|6:52|14:28|3:2|3:2;n;3|8:36|9:275;p;1|1:24|13:25|3:2|4:27'
  339. ..'6|5:93|6:52|14:28|3:2|3:2;n;3|8:36|9:277;p;1|1:24|13:25|3:2|4:278|5:93|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:279|5:93|6:52|14:28|3:2|3:2;p;p;2;n;2;n;1|3:2|4:280|5:4|6:281|3:2|3:2;n;3|8:282|9:283;p;1|3:2|4:284|5:4|6:281|3:2|3:2;n;3|8:282|9:285;3|8:282|9:283;p;1|3:2|4:286|5:4|6:90|3:2|3:2;1|1:24|13:25|3:2|4:287|5:288|6:49|14:28|3:2|3:2;1|1:24|13:'
  340. ..'25|3:2|4:289|5:290|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:291|5:292|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:293|5:294|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:295|5:296|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:297|5:298|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:299|5:300|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:301|5:302|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:3'
  341. ..'03|5:304|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:305|5:306|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:307|5:308|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:309|5:310|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:311|5:312|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:313|5:314|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:315|5:316|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:317|5:93|6:'
  342. ..'45|14:28|3:2|3:2;n;3|8:36|9:318;p;1|1:24|13:25|3:2|4:319|5:93|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:320|5:86|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:321|5:93|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:322|5:323|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:324|5:93|6:45|14:28|3:2|3:2;1|3:2|4:325|5:86|6:281|3:2|3:2;n;3|8:282|9:326;3|8:282|9:20;p;1|3:2|4:327|5:'
  343. ..'86|6:281|3:2|3:2;1|3:2|4:328|5:86|6:90|3:2|3:2;p;2;n;1|3:2|4:329|5:93|6:281|3:2|3:2;n;5|1:14|8:330|9:331;3|8:282|9:283;p;1|3:2|4:332|5:93|6:281|3:2|3:2;n;5|1:14|8:330|9:333;p;1|3:2|4:334|5:93|6:90|3:2|3:2;n;5|1:14|8:151|9:335;p;1|1:24|13:25|3:2|4:336|5:77|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:337|5:63|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:338|5'
  344. ..':65|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:339|5:71|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:340|5:69|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:341|5:67|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:342|5:79|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:343|5:81|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:344|5:73|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:345|5:75|6:49|14:28|3:'
  345. ..'2|3:2;1|1:24|13:25|3:2|4:346|5:51|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:347|5:48|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:348|5:56|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:349|5:54|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:350|5:83|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:351|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:353;5|1:354|8:352|9:355;3|8:36|9:356;p;1|1:24|'
  346. ..'13:25|3:2|4:357|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:358;5|1:354|8:352|9:359;3|8:36|9:360;p;1|1:24|13:25|3:2|4:361|5:58|6:52|14:28|3:2|3:2;n;5|1:29|8:362|9:363;5|1:354|8:362|9:364;3|8:36|9:365;p;1|1:24|13:25|3:2|4:366|6:45|14:28|3:2|3:2;n;5|1:29|8:133|9:367;5|1:29|8:133|9:368;3|8:36|9:369;p;1|1:24|13:25|3:2|4:370|5:371|6:52|14:28|3:2|3:2;n;5|1:2'
  347. ..'9|8:136|9:372;5|1:29|8:136|9:373;3|8:36|9:374;p;1|1:24|13:25|3:2|4:375|6:45|14:28|3:2|3:2;n;5|1:29|8:133|9:376;p;1|3:2|4:377|5:58|6:281|3:2|3:2;n;5|1:14|8:330|9:378;p;1|3:2|4:379|5:58|6:281|3:2|3:2;n;5|1:14|8:330|9:380;p;1|3:2|4:381|5:58|6:90|3:2|3:2;n;5|1:14|8:151|9:382;p;p;2;n;1|3:2|4:383|6:281|3:2|3:2;n;3|8:282|9:283;p;1|3:2|4:384|6:281|3:2|'
  348. ..'3:2;n;3|8:282|9:285;3|8:282|9:283;p;1|3:2|4:385|6:90|3:2|3:2;1|1:24|13:25|3:2|4:386|5:181|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:387|5:167|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:388|5:169|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:389|5:175|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:390|5:173|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:391|5:171|6:49|14:28|3:2|3'
  349. ..':2;1|1:24|13:25|3:2|4:392|5:183|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:393|5:185|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:394|5:177|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:395|5:179|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:396|5:158|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:397|5:156|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:398|5:162|6:52|14:28|3:2|3:2;1|1:24|'
  350. ..'13:25|3:2|4:399|5:160|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:400|5:187|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:401|5:86|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:402;3|8:36|9:318;p;1|1:24|13:25|3:2|4:403|5:86|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:404;5|1:29|8:352|9:405;3|8:36|9:318;p;1|1:24|13:25|3:2|4:406|5:93|6:52|14:28|3:2|3:2;n;5|1:29|8:362|9:407;5|1:'
  351. ..'29|8:362|9:408;p;1|1:24|13:25|3:2|4:409|5:86|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:410|5:411|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:412|5:86|6:45|14:28|3:2|3:2;1|3:2|4:413|5:93|6:281|3:2|3:2;n;5|1:14|8:330|9:333;3|8:282|9:326;p;1|3:2|4:414|5:93|6:281|3:2|3:2;n;5|1:14|8:330|9:331;p;1|3:2|4:415|5:93|6:90|3:2|3:2;n;5|1:14|8:151|9:416;p;p;2;n;1|3:2|'
  352. ..'4:417|6:281|3:2|3:2;n;3|8:282|9:418;p;1|1:24|13:25|3:2|4:419|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:420|6:52|14:28|3:2|3:2;n;3|8:36|9:421;p;1|1:24|13:25|3:2|4:422|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:423|6:52|14:28|3:2|3:2;1|3:2|4:424|6:281|3:2|3:2;n;3|8:282|9:418;p;1|3:2|4:425|6:90|3:2|3:2;n;3|8:19|9:426;p;1|1:24|13:25|3:2|4:427|5:428|6:263|14'
  353. ..':28|3:2|3:2;1|1:24|13:25|3:2|4:429|5:428|6:263|14:28|3:2|3:2;1|1:24|13:25|3:2|4:430|5:428|6:263|14:28|3:2|3:2;1|3:2|4:431|5:4|6:201|7:6|3:2|3:2;n;3|8:202|9:432;4|8:9|9:433;p;1|3:2|4:434|5:4|6:201|12:6|3:2|3:2;n;3|8:202|9:435;p;1|1:24|13:25|3:2|4:436|5:428|6:263|14:28|3:2|3:2;1|1:24|13:25|3:2|4:437|6:52|14:28|3:2|3:2;n;3|8:36|9:438;p;1|1:24|13:2'
  354. ..'5|3:2|4:439|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:440|6:52|14:28|3:2|3:2;1|3:2|4:441|5:4|6:90|3:2|3:2;n;3|8:19|9:442;4|8:17|9:443;p;1|1:24|13:25|3:2|4:444|6:52|14:28|3:2|3:2;p;2;n;1|1:24|13:25|3:2|4:445|5:428|6:446|14:28|3:2|3:2;1|1:24|13:25|3:2|4:447|5:428|6:446|14:28|3:2|3:2;1|1:24|13:25|3:2|4:448|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:449;p;1|1'
  355. ..':24|13:25|3:2|4:450|5:428|6:446|14:28|3:2|3:2;1|1:24|13:25|3:2|4:451|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:452|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:453;3|8:36|9:454;p;1|1:24|13:25|3:2|4:455|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:456;p;1|1:24|13:25|3:2|4:457|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:458;3|8:36|9:459;p;1|1:24|13:25|3:2|4:460|5:428|6:446|14'
  356. ..':28|3:2|3:2;2;n;1|3:2|4:461|5:4|6:5|12:6|3:2|3:2;n;5|1:14|8:148|9:462;3|8:7|9:463;4|8:464|9:465;p;1|3:2|4:466|5:4|6:90|3:2|3:2;n;5|1:14|8:151|9:467;3|8:19|9:468;p;1|3:2|4:469|5:4|6:5|7:6|3:2|3:2;n;5|1:14|8:148|9:470;4|8:9|9:471;p;p;1|3:2|4:472|5:58|6:281|7:6|3:2|3:2;n;3|8:282|9:473;4|8:9|9:474;p;1|3:2|4:475|5:58|6:90|3:2|3:2;n;3|8:19|9:476;p;1|'
  357. ..'1:24|13:25|3:2|4:477|6:45|14:28|3:2|3:2;n;3|8:36|9:478;p;1|1:24|13:25|3:2|4:479|6:45|14:28|3:2|3:2;1|3:2|4:480|5:4|6:281|12:6|3:2|3:2;n;4|8:464|9:481;p;1|1:24|13:25|3:2|4:482|6:45|14:28|3:2|3:2;n;3|8:36|9:483;p;p;2;n;1|3:2|4:484|5:4|6:281|3:2|3:2;n;5|1:14|8:330|9:485;p;1|3:2|4:486|5:4|6:281|3:2|3:2;n;5|1:14|8:330|9:485;3|8:282|9:487;p;1|3:2|4:4'
  358. ..'88|5:4|6:90|3:2|3:2;n;5|1:14|8:151|9:489;p;1|1:24|13:25|3:2|4:490|5:288|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:491|5:290|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:492|5:292|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:493|5:294|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:494|5:296|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:495|5:298|6:49|14:28|3:2|3:2;1|1:24|13:25|3:'
  359. ..'2|4:496|5:300|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:497|5:302|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:498|5:304|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:499|5:306|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:500|5:308|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:501|5:310|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:502|5:312|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:503|5:'
  360. ..'314|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:504|5:316|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:505|5:93|6:45|14:28|3:2|3:2;n;3|8:36|9:318;p;1|1:24|13:25|3:2|4:506|5:93|6:45|14:28|3:2|3:2;n;3|8:36|9:507;p;1|1:24|13:25|3:2|4:508|5:86|6:52|14:28|3:2|3:2;n;3|8:36|9:365;p;1|1:24|13:25|3:2|4:509|5:93|6:45|14:28|3:2|3:2;n;5|1:29|8:133|9:510;p;1|1:24|13:25|'
  361. ..'3:2|4:511|5:323|6:52|14:28|3:2|3:2;n;5|1:29|8:136|9:512;3|8:36|9:513;p;1|1:24|13:25|3:2|4:514|5:93|6:45|14:28|3:2|3:2;n;5|1:29|8:133|9:510;3|8:36|9:369;p;1|3:2|4:515|5:86|6:281|3:2|3:2;1|3:2|4:516|5:86|6:281|3:2|3:2;1|3:2|4:517|5:86|6:90|3:2|3:2;p;2;n;1|3:2|4:518|5:93|6:281|3:2|3:2;1|3:2|4:519|5:93|6:281|3:2|3:2;1|3:2|4:520|5:93|6:90|3:2|3:2;1|'
  362. ..'1:24|13:25|3:2|4:521|5:77|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:522|5:63|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:523|5:65|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:524|5:71|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:525|5:69|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:526|5:67|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:527|5:79|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:'
  363. ..'528|5:81|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:529|5:73|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:530|5:75|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:531|5:51|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:532|5:48|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:533|5:56|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:534|5:54|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:535|5:83|6:52|14:'
  364. ..'28|3:2|3:2;1|1:24|13:25|3:2|4:536|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:537|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:538|5:58|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:539|6:45|14:28|3:2|3:2;n;3|8:36|9:369;p;1|1:24|13:25|3:2|4:540|5:371|6:52|14:28|3:2|3:2;n;3|8:36|9:374;p;1|1:24|13:25|3:2|4:541|6:45|14:28|3:2|3:2;n;3|8:36|9:542;p;1|3:2|4:543|5:4|6:281'
  365. ..'|3:2|3:2;n;3|8:282|9:544;3|8:282|9:545;p;1|3:2|4:546|5:4|6:281|3:2|3:2;n;3|8:282|9:547;p;1|3:2|4:548|5:58|6:90|3:2|3:2;p;2;n;1|3:2|4:549|5:86|6:281|3:2|3:2;n;3|8:282|9:283;p;1|3:2|4:550|5:86|6:281|3:2|3:2;n;3|8:282|9:285;3|8:282|9:283;p;1|3:2|4:551|5:86|6:90|3:2|3:2;1|1:24|13:25|3:2|4:552|5:125|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:553|5:111|6:'
  366. ..'49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:554|5:113|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:555|5:119|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:556|5:117|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:557|5:115|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:558|5:127|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:559|5:129|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:560|5:121|6:52|14:28|3'
  367. ..':2|3:2;1|1:24|13:25|3:2|4:561|5:123|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:562|5:103|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:563|5:101|6:49|14:28|3:2|3:2;1|1:24|13:25|3:2|4:564|5:107|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:565|5:105|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:566|5:131|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:567|5:4|6:45|14:28|3:2|3:2;n;5|1'
  368. ..':29|8:352|9:568;p;1|1:24|13:25|3:2|4:569|5:4|6:45|14:28|3:2|3:2;n;5|1:29|8:352|9:568;p;1|1:24|13:25|3:2|4:570|6:52|14:28|3:2|3:2;n;5|1:29|8:362|9:571;p;1|1:24|13:25|3:2|4:572|5:4|6:45|14:28|3:2|3:2;1|1:24|13:25|3:2|4:573|5:574|6:52|14:28|3:2|3:2;1|1:24|13:25|3:2|4:575|5:4|6:45|14:28|3:2|3:2;1|3:2|4:576|6:281|3:2|3:2;n;5|1:14|8:330|9:577;3|8:282'
  369. ..'|9:326;3|8:282|9:20;p;1|3:2|4:578|6:281|3:2|3:2;n;5|1:14|8:330|9:577;3|8:282|9:20;p;1|3:2|4:579|6:90|3:2|3:2;n;5|1:14|8:151|9:580;p;p;2;n;1|3:2|4:581|5:4|6:281|7:6|3:2|3:2;n;3|8:282|9:582;4|8:9|9:583;p;1|1:24|13:25|3:2|4:584|5:4|6:585|14:28|3:2|3:2;n;3|8:36|9:586;p;1|3:2|4:587|5:4|6:90|3:2|3:2;1|3:2|4:588|5:4|6:281|12:6|3:2|3:2;n;4|8:464|9:589;'
  370. ..'p;2;n;1|1:24|13:25|3:2|4:590|6:591|14:28|3:2|3:2;1|1:24|13:25|3:2|4:592|6:591|14:28|3:2|3:2;n;3|8:36|9:593;3|8:36|9:594;p;p;1|3:2|4:595|5:4|6:281|7:6|3:2|3:2;n;3|8:282|9:596;p;1|3:2|4:597|5:4|6:281|12:6|3:2|3:2;1|3:2|4:598|5:4|6:90|3:2|3:2;n;3|8:19|9:599;4|8:17|9:600;4|8:21|9:601;p;p;2;n;1|3:2|4:602|5:4|6:281|7:6|3:2|3:2;n;3|8:282|9:582;p;1|1:2'
  371. ..'4|13:25|3:2|4:603|5:4|6:585|14:28|3:2|3:2;n;3|8:36|9:604;p;1|3:2|4:605|5:4|6:90|3:2|3:2;n;3|8:19|9:606;4|8:21|9:601;p;1|3:2|4:607|5:4|6:281|12:6|3:2|3:2;n;4|8:464|9:608;p;2;n;1|1:24|13:25|3:2|4:609|6:591|14:28|3:2|3:2;1|1:24|13:25|3:2|4:610|6:591|14:28|3:2|3:2;n;3|8:36|9:611;3|8:36|9:593;p;p;1|3:2|4:612|5:58|6:281|7:6|3:2|3:2;n;3|8:282|9:596;4|'
  372. ..'8:9|9:613;p;1|3:2|4:614|5:4|6:281|12:6|3:2|3:2;n;5|1:14|8:615|9:616;4|8:464|9:617;p;1|3:2|4:618|5:58|6:90|3:2|3:2;n;5|1:14|8:234|9:619;5|1:14|8:234|9:620;p;p;2;n;1|3:2|4:621|5:4|6:281|7:6|3:2|3:2;n;3|8:282|9:582;p;1|1:24|13:25|3:2|4:622|5:4|6:585|14:28|3:2|3:2;1|3:2|4:623|5:4|6:90|3:2|3:2;n;3|8:19|9:606;4|8:17|9:600;4|8:21|9:601;p;1|3:2|4:624|5'
  373. ..':4|6:281|12:6|3:2|3:2;2;n;1|1:24|13:25|3:2|4:625|6:591|14:28|3:2|3:2;1|1:24|13:25|3:2|4:626|6:591|14:28|3:2|3:2;n;3|8:36|9:593;3|8:36|9:627;p;p;1|3:2|4:628|5:4|6:281|7:6|3:2|3:2;n;3|8:282|9:596;4|8:9|9:629;p;1|3:2|4:630|5:4|6:281|12:6|3:2|3:2;1|3:2|4:631|5:4|6:90|3:2|3:2;n;3|8:19|9:599;4|8:17|9:600;p;p;p;2;n;2;n;1|3:2|4:632|5:4|6:5|7:6|3:2|3:2;'
  374. ..'n;3|8:7|9:8;4|8:9|9:10;p;1|3:2|4:633|5:4|6:5|12:6|3:2|3:2;1|3:2|4:634|5:4|6:13|3:2|3:2;n;4|8:17|9:18;p;1|1:24|13:25|3:2|4:635|6:27|14:28|3:2|3:2;n;3|8:36|9:636;p;1|1:24|13:25|3:2|4:637|6:33|14:28|3:2|3:2;n;3|8:36|9:37;3|8:36|9:38;p;1|1:24|13:25|3:2|4:638|6:33|14:28|3:2|3:2;1|3:2|4:639|5:4|6:5|12:6|3:2|3:2;n;4|8:464|9:640;p;1|3:2|4:641|5:4|6:5|7'
  375. ..':6|3:2|3:2;n;3|8:7|9:642;4|8:9|9:643;p;p;2;n;1|1:24|13:25|3:2|4:644|6:645|14:28|3:2|3:2;n;3|8:36|9:646;p;1|1:24|13:25|3:2|4:647|6:49|14:28|3:2|3:2;n;3|8:36|9:648;p;1|3:2|4:649|5:4|6:5|7:6|3:2|3:2;n;4|8:9|9:650;3|8:7|9:651;p;1|3:2|4:652|5:4|6:90|3:2|3:2;n;3|8:19|9:653;4|8:21|9:654;4|8:17|9:655;p;1|3:2|4:656|5:4|6:5|12:6|3:2|3:2;1|1:24|13:25|3:2|'
  376. ..'4:657|6:49|14:28|3:2|3:2;n;3|8:36|9:658;3|8:36|9:648;p;1|3:2|4:659|5:4|6:90|3:2|3:2;n;3|8:19|9:651;4|8:17|9:660;4|8:21|9:661;4|8:17|9:660;4|8:21|9:662;p;1|3:2|4:663|5:4|6:5|12:6|3:2|3:2;1|3:2|4:664|5:4|6:5|7:6|3:2|3:2;p;1|1:665|13:25|3:666|4:667|5:93|6:668|15:669|14:28|3:666|3:666;n;6|1:670|16:671;7;p;2;n;1|3:672|4:664|5:4|6:5|7:6|3:672|3:672;n'
  377. ..';3|8:7|9:673;4|8:9|9:650;4|8:9|9:674;p;1|3:672|4:663|5:4|6:5|12:6|3:672|3:672;n;5|1:14|8:148|9:675;3|8:7|9:651;4|8:464|9:676;p;1|3:672|4:659|5:4|6:90|3:672|3:672;n;4|8:17|9:660;p;1|1:24|13:25|3:677|4:657|6:49|14:28|3:677|3:677;n;5|1:29|8:678|9:679;3|8:36|9:658;3|8:36|9:658;3|8:36|9:680;3|8:36|9:680;p;1|3:672|4:656|5:4|6:5|12:6|3:672|3:672;n;3|8'
  378. ..':7|9:681;4|8:464|9:465;4|8:464|9:682;p;1|3:672|4:652|5:4|6:90|3:672|3:672;n;3|8:19|9:683;4|8:17|9:684;4|8:21|9:685;p;1|3:672|4:649|5:4|6:5|7:6|3:672|3:672;n;5|1:14|8:148|9:675;4|8:9|9:686;3|8:7|9:687;p;1|1:24|13:25|3:677|4:647|6:49|14:28|3:677|3:677;n;5|1:29|8:678|9:679;3|8:36|9:688;3|8:36|9:658;3|8:36|9:680;3|8:36|9:680;p;1|1:24|13:25|3:677|4:'
  379. ..'644|6:645|14:28|3:677|3:677;n;3|8:36|9:646;3|8:36|9:646;3|8:36|9:689;3|8:36|9:690;p;p;p;p;1|3:672|4:691|5:4|6:692|15:669|3:672|3:672;n;3|8:693|9:694;p;1|4:695|6:52;1|3:672|4:696|5:86|6:697|15:669|3:672|3:672;n;3|8:698|9:699;p;1|3:672|4:700|5:86|6:701|15:669|3:672|3:672;1|3:672|4:702|5:86|6:703|15:669|3:672|3:672;n;3|8:704|9:705;3|8:704|9:706;3|'
  380. ..'8:704|9:707;p;1|3:672|4:708|5:709|6:710|17:28|14:6|3:672|3:672;n;8;p;1|1:711|4:712|5:713|6:714|17:6|14:28;n;6|1:670|16:671;7;9|18:715|19:716;p;1|1:717|3:677|4:718|5:719|6:668|17:6|14:28|3:677|3:677;n;6|1:670|16:671;7;4|8:704|9:720;4|8:704|9:721;p;1|3:677|4:722|5:723|6:724|20:6|17:28|21:6|14:6|3:677|3:677;n;4|8:725|9:636;4|8:726|9:727;p;1|3:672|'
  381. ..'4:728|5:86|6:729|15:669|3:672|3:672;n;4|8:9|9:730;4|8:9|9:731;p;1|3:672|4:732|5:86|6:733|15:669|3:672|3:672;n;3|8:734|9:735;3|8:698|9:736;p;1|22:737|4:738|5:739|6:740|20:6|17:28|21:741|14:28;n;10|8:742|9:743;p;1|4:744|5:745|6:746|20:6|17:28|21:741|14:28;n;10|8:747|9:748;10|8:747|9:749;p;1|4:750|6:52;1|4:751|5:752|6:746|20:6|17:28|21:741|14:28;n'
  382. ..';10|8:747|9:753;10|8:747|9:754;p;1|22:737|4:755|5:739|6:740|20:6|17:28|21:741|14:28;n;10|8:742|9:743;p;1|3:756|22:737|4:757|6:714|12:6|3:756|3:756;1|3:756|22:737|4:758|6:714|12:6|3:756|3:756;1|4:759|5:760|6:740|20:28|15:669|17:28|21:741|14:28;n;10|8:742|9:761;p;1|3:672|4:762|5:86|6:697|15:669|3:672|3:672;n;3|8:734|9:763;3|8:698|9:764;p;1|4:765|'
  383. ..'5:760|6:740|20:28|15:669|17:28|21:741|14:28;n;10|8:742|9:766;p;1|4:767|6:768;n;4|8:769|9:770;4|8:771|9:772;4|8:769|9:773;3|8:774|9:775;4|8:771|9:776;p;1|1:777|4:778|5:86|6:779|12:6;n;7;11|23:780;12|1:781|24:782|25:783;13|26:784;p;1|3:677|4:785|6:786|3:677|3:677;n;3|8:19|9:787;3|8:704|9:788;p;1|22:737|4:789|5:739|6:740|20:6|17:28|21:741|14:28;n;'
  384. ..'10|8:742|9:743;p;1|22:737|4:790|5:739|6:740|20:6|17:28|21:741|14:28;n;10|8:742|9:743;p;1|3:677|4:791|6:703|3:677|3:677;1|3:672|4:792|5:86|6:733|15:669|3:672|3:672;1|4:793|6:794;n;4|8:742|9:795;3|8:36|9:796;3|8:774|9:797;3|8:36|9:798;p;14|1:799|3:677|4:800|5:86|6:801|14:716|3:677|3:677;n;7;3|8:704|9:802;p;1|3:756|22:737|4:803|6:714|7:6|3:756|3:7'
  385. ..'56;1|1:804|4:805|5:806|6:714|17:6|14:28;n;6|1:670|16:671;9|18:715|19:716;7;p;1|3:672|4:807|6:808|15:669|3:672|3:672;n;3|8:698|9:809;3|8:734|9:810;p;1|4:811|5:812|6:746|20:6|17:28|21:741|14:28;n;10|8:747|9:813;10|8:747|9:814;p;1|4:815|5:812|6:746|20:6|17:28|21:741|14:28;n;10|8:747|9:816;10|8:747|9:817;p;1|3:672|4:818|5:86|6:701|15:669|3:672|3:67'
  386. ..'2;n;3|8:693|9:819;p;1|3:756|22:737|4:820|6:714|7:6|3:756|3:756;1|13:25|27:821|4:822|5:93|6:823;n;9|18:824;9|18:824|19:6;p;p;')
  387. for _,Object in pairs(Objects) do
  388. Object.Parent = script and script.Parent==workspace and script or workspace
  389. end
  390. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement