Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Converted using Mokiros's Model to Script plugin
- -- Converted string size: 22112
- local genv={}
- local Scripts = {
- function() local a = script.Parent.Parent.Cart:clone()
- local deb = false
- function chng()
- if deb == true then return end
- deb = true
- local new = a:clone()
- new.Parent = script.Parent.Parent
- new:MakeJoints()
- script.Parent.BrickColor = BrickColor.new(21)
- wait(6)
- script.Parent.BrickColor = BrickColor.new(28)
- deb = false
- end
- script.Parent.Click.MouseClick:connect(chng)
- end;
- function() function add(p)
- script.Parent.ChildRemoved:connect(function()
- local a = script.Parent.Parent.Safe:FindFirstChild("SeatWeld")
- if a ~= nil then return end
- script.Parent.Parent:remove()
- end)
- --[[for i = 1, 6 do
- local ex = Instance.new("Explosion")
- ex.Position = script.Parent.Position + Vector3.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
- ex.BlastRadius = 2
- ex.BlastPressure = 1000
- ex.Parent = game.Workspace
- wait()
- end--]]
- end
- script.Parent.ChildAdded:connect(add)
- end;
- function() function blow()
- for i = 1, 4 do
- if script.Parent:FindFirstChild("Engine") ~= nil then
- local ex = Instance.new("Explosion")
- ex.Position = script.Parent.Parent.Engine.Position + Vector3.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
- ex.BlastRadius = 1
- ex.BlastPressure = 1000
- ex.Parent = game.Workspace
- wait()
- end
- end
- wait(1)
- script.Parent.Parent:remove()
- end
- script.Parent.Parent.ChildRemoved:connect(blow)
- while true do
- wait(0.1)
- if script.Parent.Parent.CarOn.Value == true then
- local look = script.Parent.CFrame.lookVector*script.Parent.Parent.Speed.Value
- script.Parent.BV.velocity = Vector3.new(look.x, -15, look.z)
- else
- script.Parent.BV.velocity = Vector3.new(0, -5, 0)
- end
- end
- end;
- function() function chng()
- script.Parent.Parent.CarOn.Value = not script.Parent.Parent.CarOn.Value
- if script.Parent.Parent.CarOn.Value == false then
- script.Parent.BrickColor = BrickColor.new(21)
- else
- script.Parent.BrickColor = BrickColor.new(28)
- end
- end
- script.Parent.Click.MouseClick:connect(chng)
- end;
- function() function add(p)
- script.Parent.ChildRemoved:connect(function()
- local a = script.Parent.Parent.Seat:FindFirstChild("SeatWeld")
- if a ~= nil then return end
- script.Parent.Parent:remove()
- end)
- --[[for i = 1, 6 do
- local ex = Instance.new("Explosion")
- ex.Position = script.Parent.Position + Vector3.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
- ex.BlastRadius = 2
- ex.BlastPressure = 1000
- ex.Parent = game.Workspace
- wait()
- end--]]
- end
- script.Parent.ChildAdded:connect(add)
- end;
- function() function chng()
- script.Parent.Parent.Speed.Value = script.Parent.Parent.Speed.Value + 3
- script.Parent.BrickColor = BrickColor.new(21)
- wait(0.2)
- script.Parent.BrickColor = BrickColor.new(0)
- end
- script.Parent.Click.MouseClick:connect(chng)
- end;
- function() function chng()
- script.Parent.Parent.Speed.Value = script.Parent.Parent.Speed.Value - 3
- script.Parent.BrickColor = BrickColor.new(21)
- wait(0.2)
- script.Parent.BrickColor = BrickColor.new(0)
- end
- script.Parent.Click.MouseClick:connect(chng)
- end;
- function() function chng()
- script.Parent.Parent.Couple:MakeJoints()
- end
- script.Parent.Click.MouseClick:connect(chng)
- end;}local ActualScripts = {}
- function s(var)
- local func = table.remove(Scripts,1)
- setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
- __index = getfenv(func),
- }))
- table.insert(ActualScripts,coroutine.wrap(func))
- end
- Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
- local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
- function(t,f)
- for a,b in pairs(t) do
- f(a,b)
- end
- end
- local Types = {
- Color3 = Color3.new,
- Vector3 = Vector3.new,
- Vector2 = Vector2.new,
- UDim = UDim.new,
- UDim2 = UDim2.new,
- CFrame = CFrame.new,
- Rect = Rect.new,
- NumberRange = NumberRange.new,
- BrickColor = BrickColor.new,
- PhysicalProperties = PhysicalProperties.new,
- NumberSequence = function(...)
- local a = {...}
- local t = {}
- repeat
- t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
- until #a==0
- return NumberSequence.new(t)
- end,
- ColorSequence = function(...)
- local a = {...}
- local t = {}
- repeat
- t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
- until #a==0
- return ColorSequence.new(t)
- end,
- number = tonumber,
- boolean = function(a)
- return a=="1"
- end
- }
- split = function(str,sep)
- if not str then return end
- local fields = {}
- local ConcatNext = false
- str:gsub(("([^%s]+)"):format(sep),function(c)
- if ConcatNext == true then
- fields[#fields] = fields[#fields]..sep..c
- ConcatNext = false
- else
- fields[#fields+1] = c
- end
- if c:sub(#c)=="\\" then
- c = fields[#fields]
- fields[#fields] = c:sub(1,#c-1)
- ConcatNext = true
- end
- end)
- return fields
- end
- RemoveAndSplit = function(t)
- return split(table_remove(t,1),comma)
- end
- t = split(str,";")
- props = RemoveAndSplit(t)
- classes = RemoveAndSplit(t)
- values = split(table_remove(t,1),'|')
- ICList = RemoveAndSplit(t)
- InstanceList = {}
- Model = inst"Model"
- CurPar = Model
- table_foreach(t,function(ct,c)
- if c=="n" or c=="p" then
- CurPar = c=="n" and LastIns or CurPar[parnt]
- else
- ct = split(c,"|")
- local class = classes[tonum(table_remove(ct,1))]
- if class=="UnionOperation" then
- LastIns = {UsePartColor="1"}
- else
- LastIns = inst(class)
- if LastIns:IsA"Script" then
- s(LastIns)
- elseif LastIns:IsA("ModuleScript") then
- ms(LastIns)
- end
- end
- local function SetProperty(LastIns,p,str,s)
- s = Types[typeof(LastIns[p])]
- if p=="CustomPhysicalProperties" then
- s = PhysicalProperties.new
- end
- if s then
- LastIns[p] = s(unpack(split(str,comma)))
- else
- LastIns[p] = str
- end
- end
- local UnionData
- table_foreach(ct,function(s,p,a,str)
- a = p:find":"
- p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
- if p=="UnionData" then
- UnionData = split(str," ")
- return
- end
- if class=="UnionOperation" then
- LastIns[p] = str
- return
- end
- SetProperty(LastIns,p,str)
- end)
- if UnionData then
- local LI_Data = LastIns
- LastIns = DecodeUnion(UnionData)
- table_foreach(LI_Data,function(p,str)
- SetProperty(LastIns,p,str)
- end)
- end
- table.insert(InstanceList,LastIns)
- LastIns[parnt] = CurPar
- end
- end)
- table_remove(ICList,1)
- table_foreach(ICList,function(a,b)
- b = split(b,">")
- InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
- end)
- return Model:GetChildren()
- end
- local Objects = Decode('Name,PrimaryPart,Anchored,Color,Position,Orientation,Size,TopSurface,FrontSurface,Velocity,CanCollide,MaxActivationDistance,BackSurface,BottomSurface,MeshType,Texture,Face,Shape,RightSurface,C0,C1,Par'
- ..'t0,Part1,Force,LeftSurface,MaxTorque,MaxForce,Transparency,Value;Part,Model,ClickDetector,Script,SpecialMesh,Decal,Seat,Rotate,BodyForce,BodyGyro,BodyVelocity,Snap,Weld,BoolValue,IntValue;Part|Track-C'
- ..'urve|Rail|1|0.3882,0.3725,0.3843|223.9739,29.4,324.5722|0,-167.14,0|4,0.8,1|0|227.6728,29.4,323.2778|0,-154.28,0|230.9909,29.4,321.1928|0,-141.43,0|225.7546,29.4,318.6484|0,-153,0|2,0.8,1|223.9425,29.'
- ..'4,319.3992|0,-162,0|233.7619,29.4,318.4218|0,-128.5701,0|227.4272,29.4,317.6236|0,-144,0|230.1926,29.4,314.8582|0,-126,0|228.9187,29.4,316.3497|0,-135,0|235.8469,29.4,315.1036|0,-115.71,0|231.2174,29.'
- ..'4,313.1857|0,-117,0|237.1412,29.4,311.4048|0,-102.8601,0|231.9681,29.4,311.3735|0,-108,0|232.4261,29.4,309.4663|0,-99,0|222.0352,29.4,319.8571|0,-171,0|232.5797,29.3999,308.0115|0,90,0|1,0.8,1|237.579'
- ..'7,29.3999,308.0117|237.5799,29.4,308.5108|0,-90,0|220.579,29.3999,325.0111|221.0798,29.4,325.0111|0,-180,0|220.5792,29.3999,320.0111|237.5799,15,248.5108|232.5799,15,248.5108|237.5799,18.6213,262.588|'
- ..'0,90,-15.4701|27,0.8,1|232.5799,18.6213,262.588|237.5799,22.2,276.5108|232.5799,22.2,276.5108|237.5799,22.2,278.5108|232.5799,22.2,278.5108|237.58,25.8213,292.588|232.58,25.8213,292.588|237.5799,29.4,'
- ..'306.5108|232.5799,29.4,306.5108|237.5799,7.6,218.5108|232.5799,7.6,218.5108|237.58,11.2213,232.5879|232.58,11.2213,232.5879|237.5799,14.7999,246.5108|232.5799,14.7999,246.5108|237.5799,0.4,188.5108|23'
- ..'2.5799,0.4,188.5108|237.5799,4.0213,202.5879|232.5799,4.0213,202.5879|237.5799,7.6,216.5108|232.5799,7.6,216.5108|205.0799,29.2,325.0108|30,0.8,1|205.0799,29.2,320.0108|loop|238.0801,77.5096,74.4218|6'
- ..'8.79,179.99,179.99|2,0.4,13|2|238.08,115.5913,117.0109|0,180,180|238.0796,107.3039,95.8326|32.7,-180,-180|238.0796,88.7755,79.5284|58.2099,-180,179.99|238.0802,99.0099,86.7226|47.59,180,179.99|238.080'
- ..'1,112.825,105.3815|21.25,-180,-179.98|238.0799,65.1984,71.4654|79.05,-180,-179.98|0,0,900|238.0805,39.9773,75.304|-68.02,179.8899,0.1199|2,0.4,14|238.08,114.3482,129.034|17.51,-0.01,179.9499|238.0798,'
- ..'52.5883,71.433|-83.82,179.6,0.4099|238.0874,20.0816,89.2612|-50.6801,-179.68,-0.21|238.0805,29.762,81.4162|-55.32,179.94,0.0799|238.0794,103.7646,151.0729|42.15,0.1199,-179.8201|238.0787,85.4384,167.2'
- ..'407|63.2299,0.27,-179.7|238.0786,73.4896,172.3851|77.9,0.6299,-179.3601|238.0796,95.1669,160.1192|49.3699,0.2,-179.7201|238.0802,110.0321,141.0691|27.92,-0.02,179.9499|238.0781,60.5005,173.5739|85.489'
- ..'9,178.2899,-1.7101|238.0804,12.0377,99.2033|-33.37,179.94,-0.06|238.0798,36.0803,150.2041|4.26,180,-0.13|0,0,200|238.0791,7.0704,110.0715|-20.6701,179.8999,0.0799|238.0785,49.3111,170.8576|60.29,179.7'
- ..'599,-0.2801|238.0785,40.1344,162.2446|29.59,179.91,-0.1501|238.08,3.7235,122.0269|-14.5601,179.99,0.0399|238.08,1.2749,135.0169|-8.87,179.99,0.0399|238.0799,0.6,164.5108|2,0.4,46|232.0801,77.4726,74.4'
- ..'216|232.08,115.5543,117.0107|232.0796,107.267,95.8324|232.0797,88.7385,79.5283|232.0802,98.973,86.7224|232.0802,112.7881,105.3813|232.08,65.1615,71.4652|232.0806,39.9403,75.3038|232.0801,114.3112,129.'
- ..'0338|232.0798,52.5514,71.4328|232.0875,20.0446,89.261|232.0806,29.725,81.416|232.0794,103.7277,151.0727|232.0787,85.4014,167.2405|232.0787,73.4526,172.3849|232.0797,95.13,160.119|232.0802,109.9952,141'
- ..'.0689|232.0781,60.4636,173.5737|232.0805,12.0007,99.2031|232.0798,36.0433,150.2039|232.0791,7.0335,110.0714|232.0786,49.2741,170.8574|232.0785,40.0974,162.2444|232.0801,3.6866,122.0267|232.0801,1.2379'
- ..',135.0167|232.08,0.563,164.5106|237.5799,28.4,114.5108|232.5799,28.4,114.5108|237.58,32.0213,128.588|232.58,32.0213,128.588|237.5799,35.6,142.5108|232.5799,35.6,142.5108|237.141,28.3,109.6159|0,-77.14'
- ..',0|235.8464,28.3,105.9171|0,-64.28,0|233.7614,28.3,102.599|0,-51.4301,0|231.2171,28.3,107.8353|0,-63,0|231.9679,28.3,109.6475|0,-72,0|230.9902,28.3,99.8281|0,-38.57,0|230.1922,28.3,106.1629|0,-54,0|22'
- ..'7.4266,28.3,103.3976|0,-36,0|228.9183,28.3,104.6714|0,-45,0|227.672,28.3,97.7433|0,-25.71,0|225.7543,28.3,102.3728|0,-27,0|223.9732,28.3,96.4491|0,-12.86,0|223.942,28.3,101.6222|0,-18,0|222.0348,28.3,'
- ..'101.1644|0,-9,0|232.4259,28.3,111.5547|0,-81,0|220.5799,28.3,101.0108|220.5799,28.3,96.0108|221.0791,28.3,96.0104|237.5799,28.3,113.0108|237.5799,28.3,112.5099|232.5799,28.3,113.0108|0.6313,0.647,0.63'
- ..'52|205.0799,12,204.0108|0,180,0|6,24,1|207.5799,13.7999,188.5108|202.5799,13.7999,188.5108|Cart-Regen|Regen|0.1568,0.498,0.2784|201.576,13.8435,195.8149|-0.16,-179.98,0.0599|1,0.4,2|0|Click|10|Cart|0.'
- ..'1058,0.1647,0.2078|205.0799,16.7,198.9108|-90,-180,0|-0.2716,-0.0271,0.22|4,0.8,3|http://www.roblox.com/asset/?id=2605537|1|0.7686,0.1568,0.1098|206.0799,16.1999,197.0108|-0.1326,0.36,0.1913|2,0.4,3|2'
- ..'07.5804,14.7291,196.0106|73.75,2.8599,-177.04|0.3502,-0.4965,0.1436|1,1,1|6|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-0.08,-2,1,0,0,0,1,0,0,0,1|207.5807,14.7295,194.0107|9.5799,179.8699,-0.8701|0.3383,1.1344,0.'
- ..'5475|0,-0.08,-0.5,1,0,0,0,1,0,0,0,1|207.4799,16.7,196.0108|-90,-90,0|-0.2163,0.7432,0.2658|5,0.8,3|0,-1000,0|207.5802,14.7278,198.0108|-47.32,-0.8601,-178.81|0.3959,-0.5209,0.1494|Engine|205.0799,15.5'
- ..'999,196.0108|0.0098,0.2501,0.1148|4,0.8,5|0,0,0|BV|0,-5,0|20000,2000,20000|0,-30000,0|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|1,-0.2001,-1,-1,0,0,0,0,1,0,1,0|-2,0,0,-0,-0,-1,0,1,0,1,0,0|0,-0.4,-1.1001,-1,0,0,0,0'
- ..',1,0,1,0|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|-1,0.2,0,0,1,0,0,0,-1,-1,0,0|0,0,2.5,1,0,0,0,1,0,0,0,1|2,0.4,0,0,1,0,0,0,-1,-1,0,0|-2,0.4,0,0,1,0,0,0,-1,-1,0,0|2,0.4,1.5,0,1'
- ..',0,0,0,-1,-1,0,0|2,0,0,0,0,1,0,1,0,-1,-0,-0|-1,-0.2001,-1,-1,0,0,0,0,1,0,1,0|1,0.2,0,0,1,0,0,0,-1,-1,0,0|0,0.4,0,0,1,0,0,0,-1,-1,0,0|2,0.4,-1.5,0,1,0,0,0,-1,-1,0,0|206.5799,14.7999,194.0108|0.2123,0.7'
- ..'494,0.067|206.5782,14.299,193.0107|0.05,100.94,90|0.321,-1.754,1.1844|0,-0.2,-1.5,-1,-0,-0,0,0,1,0,1,0|205.0799,15,195.0108|0.1521,0.3456,0.0575|1,0.4,4|205.0799,16.7,193.1108|-90,0,0|-0.1609,0.5272,0'
- ..'.22|205.0799,14.7999,194.0108|0.2123,0.4412,0.0384|1,0.8,2|On|205.0799,18.4,193.0108|-0.5083,0.5367,0.3824|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|0,0.1,1.5,0,-1,0,-1,0,0,0,0,-1|205.0799,15,197.0108|0.1139,0'
- ..'.1545,0.0575|205.0799,15,193.0108|0.1903,0.5367,0.0575|-0.5,0.2,0,0,0,1,0,1,0,-1,0,0|205.0799,14.7999,196.0108|0.1741,0.2501,0.0384|1,0.8,4|Safe|204.0799,16.1999,197.0108|-0.1326,-0.051,0.1531|202.679'
- ..'9,16.7,196.0108|-90,90,0|-0.2163,-0.2431,0.1741|203.5799,14.7999,194.0108|0.2123,0.133,0.0098|205.0799,14.7999,198.0108|0.1359,0.0589,0.0384|-0.51,-0.1,0,0,0,1,0,1,0,-1,-0,-0|203.5802,14.2972,193.011|'
- ..'0,120.0199,89.97|0.4549,-2.5184,0.4212|0,-0.2,1.5,-1,-0,-0,0,0,1,0,1,0|202.5796,14.72,196.0104|51.68,-179.28,-179.1001|-0.2546,0.2415,-1.0303|0,-0.08,2,-1,-0,-0,0,1,0,-0,-0,-1|202.5798,14.7204,194.010'
- ..'4|-1.03,0.0299,-0.51|-0.2774,-0.385,-0.8319|0,-0.08,0.5,-1,-0,-0,0,1,0,-0,-0,-1|202.5783,14.7259,198.0114|58.54,-178.7,-178.53|-0.1449,1.237,0.4437|CarOn|Speed|25|Up|206.5799,18.4,193.0108|-0.5083,0.8'
- ..'449,0.411|1,0.4,1|http://www.roblox.com/asset/?id=2008919|1.5,0.1,1.5,-1,0,0,0,1,0,0,0,-1|Down|203.5799,18.4,193.0108|-0.5083,0.2285,0.3538|-1.5,0.1,1.5,1,0,0,0,-1,0,0,0,-1|205.0813,14.7009,199.0165|-'
- ..'0.6801,89.93,179.6999|-2.0264,1.3857,0.3739|-0.5,0,0,0,0,1,0,1,0,-1,-0,-0|Couple|205.078,14.7113,201.0132|0.46,89.9499,179.8099|-2.1647,-5.8046,-0.3669|Con|205.0799,18.4,199.0108|-0.6228,-0.0366,0.382'
- ..'4|0,0.1,1.5,0,1,0,1,0,0,0,0,-1|205.0796,14.7062,200.0143|-7.24,89.93,179.5399|1.3715,-0.6178,0.4317|216.185,28.3,96.4498|0,12.8599,0|212.4862,28.3,97.7443|0,25.7199,0|209.1682,28.3,99.8294|0,38.5699,0'
- ..'|214.4045,28.3,102.3736|0,27,0|216.2166,28.3,101.6229|0,18,0|206.3972,28.3,102.6005|0,51.43,0|212.7321,28.3,103.3985|0,36,0|209.9667,28.3,106.1641|0,54,0|211.2406,28.3,104.6724|0,45,0|204.3125,28.3,10'
- ..'5.9187|0,64.29,0|208.942,28.3,107.8365|0,63,0|203.0183,28.3,109.6176|0,77.1399,0|208.1913,28.3,109.6487|0,72,0|207.7335,28.3,111.5559|0,81,0|218.1239,28.3,101.1649|0,9,0|207.5799,28.3,113.0108|202.579'
- ..'9,28.3,113.0108|202.5796,28.3,112.5116|219.5799,28.3,96.0108|219.0791,28.3,96.0108|219.5799,28.3,101.0108|202.5799,13.9,172.5108|207.5799,13.9,172.5108|202.5799,17.5213,158.4336|0,-90,-15.4701|207.579'
- ..'9,17.5213,158.4336|202.5799,21.1,144.5108|207.5799,21.1,144.5108|200.0799,6.6,195.0108|4,13.2,17|196.0799,4.8,195.0108|4,9.6,17|202.5799,21,142.5108|207.5799,21,142.5108|202.5799,24.6213,128.4336|207.'
- ..'5799,24.6213,128.4336|202.5799,28.2,114.5108|207.5799,28.2,114.5108|192.0799,3,195.0108|4,6,17|188.0799,1.8,195.0108|4,3.6,17|184.0799,0.6,195.0108|4,1.2,17|177.5799,15,248.5108|172.5799,15,248.5108|1'
- ..'77.5799,18.6213,262.588|172.5799,18.6213,262.588|177.5799,22.2,276.5108|172.5799,22.2,276.5108|177.5799,22.2,278.5108|172.5799,22.2,278.5108|177.58,25.8213,292.588|172.58,25.8213,292.588|177.5799,29.4'
- ..',306.5108|172.5799,29.4,306.5108|177.5799,7.6,218.5108|172.5799,7.6,218.5108|177.58,11.2213,232.5879|172.58,11.2213,232.5879|177.5799,14.7999,246.5108|172.5799,14.7999,246.5108|177.5799,0.4,188.5108|1'
- ..'72.5799,0.4,188.5108|177.5799,4.0213,202.5879|172.5799,4.0213,202.5879|177.5799,7.6,216.5108|172.5799,7.6,216.5108|173.0189,29.4001,311.4058|0,102.86,0|174.3135,29.4,315.1046|0,115.72,0|176.3985,29.4,'
- ..'318.4227|0,128.57,0|178.9428,29.4,313.1863|0,117,0|178.192,29.4,311.3742|0,108,0|179.1697,29.4,321.1936|0,141.4299,0|179.9677,29.4,314.8587|0,126,0|182.7333,29.4,317.624|0,144,0|181.2416,29.4,316.3502'
- ..'|0,135,0|182.4879,29.4,323.2783|0,154.2899,0|184.4056,29.4,318.6488|0,153,0|186.1867,29.4,324.5725|0,167.1399,0|186.2179,29.4,319.3994|0,162,0|188.1251,29.4,319.8572|0,171,0|177.734,29.4,309.467|0,99,'
- ..'0|189.5799,29.4,320.0108|189.5799,29.4,325.0108|189.0808,29.4,325.0112|172.5799,29.4,308.0108|172.58,29.4001,308.5118|177.5799,29.4,308.0108|177.5799,0.6,182.5108|1,1.2,10|172.5799,0.6,182.5108|175.07'
- ..'99,12,177.0108;0,1>2>83,2>2>5,24>2>28,25>2>28,32>2>35,39>2>42,46>2>49,53>2>54,56>2>83,57>2>83,84>2>110,111>2>114,118>2>121,141>2>142,144>2>164,148>2>164,155>22>154,155>23>197,157>22>156,157>23>182,163'
- ..'>22>162,163>23>205,169>22>164,169>23>198,170>22>164,170>23>200,171>22>164,171>23>186,172>22>164,172>23>194,173>22>164,173>23>149,174>22>164,174>23>189,175>22>164,175>23>205,176>22>164,176>23>182,177>2'
- ..'2>164,177>23>158,178>22>164,178>23>152,179>22>164,179>23>185,180>22>164,180>23>197,181>22>164,181>23>204,184>22>183,184>23>195,193>22>190,193>23>186,196>22>195,196>23>189,206>22>205,206>23>227,208>22>'
- ..'207,208>23>195,210>22>209,210>23>197,212>22>211,212>23>204,214>22>213,214>23>205,221>22>217,221>23>186,226>22>222,226>23>186,228>22>227,228>23>234,233>22>230,233>23>149,235>22>234,235>23>229,236>2>239'
- ..',258>2>261,267>2>270,277>2>281,278>2>281,285>2>288,292>2>295,299>2>302,306>2>309;2;n;2|1:2;n;1|1:3|3:4|4:5|5:6|6:7|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:10|6:11|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:12|6:13|7:8|8'
- ..':9|4:5|4:5;1|1:3|3:4|4:5|5:14|6:15|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:17|6:18|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:19|6:20|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:21|6:22|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:23|6:24|7:'
- ..'16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:25|6:26|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:27|6:28|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:29|6:30|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:31|6:32|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:33|6:34'
- ..'|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:35|6:36|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:37|6:38|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:39|6:40|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:42|6:40|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:43'
- ..'|6:44|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:45|6:40|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:46|6:47|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:48|6:40|7:41|8:9|4:5|4:5;p;2;n;2;n;1|1:3|3:4|4:5|5:49|6:40|7:16|8:9|4:5|4:5;1|1'
- ..':3|3:4|4:5|5:50|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:51|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:54|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:55|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:56|6:40|7:16|8:9|4:5|4:'
- ..'5;p;2;n;1|1:3|3:4|4:5|5:57|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:58|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:59|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:60|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:61|6:40|7:16'
- ..'|8:9|4:5|4:5;1|1:3|3:4|4:5|5:62|6:40|7:16|8:9|4:5|4:5;p;2;n;1|1:3|3:4|4:5|5:63|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:64|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:65|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:6'
- ..'6|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:67|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:68|6:40|7:16|8:9|4:5|4:5;p;2;n;1|1:3|3:4|4:5|5:69|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:70|6:40|7:16|8:9|4:5|4:5;1|1:3|'
- ..'3:4|4:5|5:71|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:72|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:73|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:74|6:40|7:16|8:9|4:5|4:5;p;p;2;n;1|1:3|3:4|4:5|5:75|7:76|8:9|4:5|4:'
- ..'5;1|1:3|3:4|4:5|5:77|7:76|8:9|4:5|4:5;p;2;n;2;n;1|1:78|3:4|5:79|6:80|7:81|8:82;1|1:78|3:4|5:83|6:84|7:81|8:82;1|1:78|3:4|5:85|6:86|7:81|9:82|8:82;1|1:78|3:4|5:87|6:88|7:81|8:82;1|1:78|3:4|5:89|6:90|7:'
- ..'81|8:82;1|1:78|3:4|5:91|6:92|7:81|8:82;1|1:78|3:4|5:93|6:94|10:95|7:81|8:82;1|1:78|3:4|5:96|6:97|10:95|7:98|8:82;1|1:78|3:4|5:99|6:100|7:81|8:82;1|1:78|3:4|5:101|6:102|10:95|7:81|8:82;1|1:78|3:4|5:103'
- ..'|6:104|10:95|7:81|8:82;1|1:78|3:4|5:105|6:106|10:95|7:81|8:82;1|1:78|3:4|5:107|6:108|7:81|8:82;1|1:78|3:4|5:109|6:110|7:81|8:82;1|1:78|3:4|5:111|6:112|7:81|8:82;1|1:78|3:4|5:113|6:114|7:81|8:82;1|1:78'
- ..'|3:4|5:115|6:116|7:81|8:82;1|1:78|3:4|5:117|6:118|7:81|8:82;1|1:78|3:4|5:119|6:120|10:95|7:81|8:82;1|1:78|3:4|5:121|6:122|10:123|7:81|8:82;1|1:78|3:4|5:124|6:125|10:95|7:81|8:82;1|1:78|3:4|5:126|6:127'
- ..'|7:81|8:82;1|1:78|3:4|5:128|6:129|7:81|8:82;1|1:78|3:4|5:130|6:131|10:95|7:81|8:82;1|1:78|3:4|5:132|6:133|10:95|7:81|8:82;1|1:78|3:4|5:134|6:47|10:95|7:135|8:82;p;2;n;1|1:78|3:4|5:136|6:80|7:81|8:82;1'
- ..'|1:78|3:4|5:137|6:84|7:81|8:82;1|1:78|3:4|5:138|6:86|7:81|9:82|8:82;1|1:78|3:4|5:139|6:88|7:81|8:82;1|1:78|3:4|5:140|6:90|7:81|8:82;1|1:78|3:4|5:141|6:92|7:81|8:82;1|1:78|3:4|5:142|6:94|10:95|7:81|8:8'
- ..'2;1|1:78|3:4|5:143|6:97|10:95|7:98|8:82;1|1:78|3:4|5:144|6:100|7:81|8:82;1|1:78|3:4|5:145|6:102|10:95|7:81|8:82;1|1:78|3:4|5:146|6:104|10:95|7:81|8:82;1|1:78|3:4|5:147|6:106|10:95|7:81|8:82;1|1:78|3:4'
- ..'|5:148|6:108|7:81|8:82;1|1:78|3:4|5:149|6:110|7:81|8:82;1|1:78|3:4|5:150|6:112|7:81|8:82;1|1:78|3:4|5:151|6:114|7:81|8:82;1|1:78|3:4|5:152|6:116|7:81|8:82;1|1:78|3:4|5:153|6:118|7:81|8:82;1|1:78|3:4|5'
- ..':154|6:120|10:95|7:81|8:82;1|1:78|3:4|5:155|6:122|10:123|7:81|8:82;1|1:78|3:4|5:156|6:125|10:95|7:81|8:82;1|1:78|3:4|5:157|6:127|7:81|8:82;1|1:78|3:4|5:158|6:129|7:81|8:82;1|1:78|3:4|5:159|6:131|10:95'
- ..'|7:81|8:82;1|1:78|3:4|5:160|6:133|10:95|7:81|8:82;1|1:78|3:4|5:161|6:47|10:95|7:135|8:82;p;p;2;n;1|1:3|3:4|4:5|5:162|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:163|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:164'
- ..'|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:165|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:166|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:167|6:40|7:16|8:9|4:5|4:5;p;2|1:2;n;1|1:3|3:4|4:5|5:168|6:169|7:8|8:9|4:5|4:5'
- ..';1|1:3|3:4|4:5|5:170|6:171|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:172|6:173|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:174|6:175|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:176|6:177|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:178|6:179|7:8'
- ..'|8:9|4:5|4:5;1|1:3|3:4|4:5|5:180|6:181|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:182|6:183|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:184|6:185|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:186|6:187|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:'
- ..'188|6:189|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:190|6:191|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:192|6:193|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:194|6:195|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:196|6:197|7:16|8:9|4:5|4:5;1|'
- ..'1:3|3:4|4:5|5:198|6:47|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:199|6:47|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:200|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:201|6:47|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:202|6:44|7:16|8:9|4:5|4'
- ..':5;1|1:3|3:4|4:5|5:203|6:47|7:41|8:9|4:5|4:5;p;1|3:4|4:204|5:205|6:206|7:207|4:204|4:204;2;n;1|1:3|3:4|4:5|5:208|6:40|7:76|8:9|4:5|4:5;1|1:3|3:4|4:5|5:209|6:40|7:76|8:9|4:5|4:5;p;2|1:210;n;1|1:211|3:4'
- ..'|4:212|5:213|6:214|7:215|11:216|8:9|4:212|4:212;n;3|1:217|12:218;4;p;2|1:219;n;1|3:4|4:220|5:221|6:222|10:223|7:224|13:82|14:9|8:9|4:220|4:220;n;5|15:82;6|16:225|17:226;p;7|3:4|4:227|5:228|10:229|7:23'
- ..'0|8:226|4:227|4:227;n;4;p;1|3:4|4:220|5:231|6:232|10:233|7:234|18:82|14:9|19:235|8:9|4:220|4:220;n;8|20:236|21:237;p;1|3:4|4:220|5:238|6:239|10:240|7:234|18:82|14:9|19:235|8:9|4:220|4:220;n;8|20:236|2'
- ..'1:241;p;1|3:4|4:220|5:242|6:243|10:244|7:245|14:9|4:220|4:220;n;5|15:82;9|24:246;6|16:225|17:226;p;1|3:4|4:220|5:247|6:248|10:249|7:234|18:82|14:9|19:235|8:9|4:220|4:220;n;8|20:236|21:237;p;1|1:250|3:'
- ..'4|4:220|5:251|10:252|7:253|13:82|9:82|25:82|19:82|4:220|4:220;n;4;10|26:254;11|1:255|10:256|27:257;9|24:258;12|20:259|21:260;13|20:261|21:262;13|20:263|21:262;12|20:264|21:265;13|20:266|21:262;12|20:2'
- ..'64|21:267;12|20:264|21:268;12|20:264|21:269;13|20:270|21:262;12|20:259|21:271;12|20:264|21:272;12|20:264|21:273;12|20:264|21:274;p;1|3:4|4:220|5:275|6:44|10:276|7:41|4:220|4:220;1|3:4|28:4|5:277|6:278'
- ..'|10:279|7:234|18:82|14:9|19:235|8:9;n;8|20:236|21:280;p;1|3:4|4:220|5:281|6:44|10:282|7:283|4:220|4:220;1|3:4|4:220|5:284|6:285|10:286|7:224|13:82|14:82|4:220|4:220;n;5|15:82;6|16:225|17:226;p;1|3:4|4'
- ..':220|5:287|6:44|10:288|7:289|25:82|4:220|4:220;1|1:290|3:4|4:227|5:291|6:44|10:292|7:215|8:9|4:227|4:227;n;3|1:217|12:218;4;13|20:293|21:294;p;1|3:4|4:220|5:295|6:44|10:296|7:283|4:220|4:220;1|3:4|4:2'
- ..'20|28:4|5:297|6:44|10:298|7:283|4:220|4:220;n;13|20:236|21:299;p;1|3:4|4:220|5:300|6:44|10:301|7:302|4:220|4:220;7|1:303|3:4|4:227|5:304|10:305|7:230|8:226|4:227|4:227;n;4;p;1|3:4|4:220|5:306|6:307|10'
- ..':308|7:245|14:9|4:220|4:220;n;5|15:82;9|24:246;6|16:225|17:226;p;1|3:4|4:220|5:309|6:44|10:310|7:41|4:220|4:220;1|3:4|4:220|5:311|6:44|10:312|7:302|19:235|4:220|4:220;n;8|20:236|21:313;p;1|3:4|28:4|5:'
- ..'314|6:315|10:316|7:234|18:82|14:9|19:235|8:9;n;8|20:236|21:317;p;1|3:4|4:220|5:318|6:319|10:320|7:234|18:82|14:9|19:235|8:9|4:220|4:220;n;8|20:236|21:321;p;1|3:4|4:220|5:322|6:323|10:324|7:234|18:82|1'
- ..'4:9|19:235|8:9|4:220|4:220;n;8|20:236|21:325;p;1|3:4|4:220|5:326|6:327|10:328|7:234|18:82|14:9|19:235|8:9|4:220|4:220;n;8|20:236|21:321;p;14|1:329;15|1:330|29:331;1|1:332|3:4|5:333|6:206|10:334|7:335|'
- ..'8:9;n;3|1:217|12:218;6|16:336|17:226;4;13|20:293|21:337;p;1|1:338|3:4|5:339|10:340|7:335|8:9;n;3|1:217|12:218;4;6|16:336|17:226;13|20:293|21:341;p;1|3:4|4:220|5:342|6:343|10:344|7:234|18:9|11:216|14:9'
- ..'|19:235|8:9|4:220|4:220;n;8|20:236|21:345;p;1|1:346|3:4|4:220|5:347|6:348|10:349|7:234|18:9|11:216|13:235|14:9|9:235|19:235|8:9|4:220|4:220;1|1:350|3:4|4:5|5:351|6:44|10:352|7:215|8:226|4:5|4:5;n;3|1:'
- ..'217|12:218;4;13|20:293|21:353;p;1|3:4|4:220|5:354|6:355|10:356|7:234|18:9|11:216|14:9|19:235|8:9|4:220|4:220;n;8|20:236|21:345;p;p;p;2|1:2;n;1|1:3|3:4|4:5|5:357|6:358|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:3'
- ..'59|6:360|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:361|6:362|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:363|6:364|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:365|6:366|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:367|6:368|7:8|8:9|4:5|4:5;1|1:3'
- ..'|3:4|4:5|5:369|6:370|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:371|6:372|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:373|6:374|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:375|6:376|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:377|6:378|7:16|8:9'
- ..'|4:5|4:5;1|1:3|3:4|4:5|5:379|6:380|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:381|6:382|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:383|6:384|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:385|6:386|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:387|'
- ..'6:44|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:388|6:44|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:389|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:390|6:44|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:391|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5'
- ..':392|6:44|7:41|8:9|4:5|4:5;p;2;n;1|1:3|3:4|4:5|5:393|6:44|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:394|6:44|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:395|6:396|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:397|6:396|7:53|8:9|4:5|4'
- ..':5;1|1:3|3:4|4:5|5:398|6:44|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:399|6:44|7:16|8:9|4:5|4:5;p;1|3:4|5:400|6:206|7:401;1|3:4|5:402|6:206|7:403;2;n;1|1:3|3:4|4:5|5:404|6:44|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:4'
- ..'05|6:44|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:406|6:396|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:407|6:396|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:408|6:44|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:409|6:44|7:16|8:9|4:5|4:5;p;1|3'
- ..':4|5:410|6:206|7:411;1|3:4|5:412|6:206|7:413;1|3:4|5:414|6:206|7:415;2;n;2;n;1|1:3|3:4|4:5|5:416|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:417|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:418|6:52|7:53|8:9|4:5|4'
- ..':5;1|1:3|3:4|4:5|5:419|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:420|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:421|6:40|7:16|8:9|4:5|4:5;p;2;n;1|1:3|3:4|4:5|5:422|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:423|6:4'
- ..'0|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:424|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:425|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:426|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:427|6:40|7:16|8:9|4:5|4:5;p;2;n;1|1:3|3'
- ..':4|4:5|5:428|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:429|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:430|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:431|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:432|6:40|7:16|8:9|4:5|4'
- ..':5;1|1:3|3:4|4:5|5:433|6:40|7:16|8:9|4:5|4:5;p;2;n;1|1:3|3:4|4:5|5:434|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:435|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:436|6:52|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:437|6:5'
- ..'2|7:53|8:9|4:5|4:5;1|1:3|3:4|4:5|5:438|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:439|6:40|7:16|8:9|4:5|4:5;p;p;2|1:2;n;1|1:3|3:4|4:5|5:440|6:441|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:442|6:443|7:8|8:9|4:5|4:5;1'
- ..'|1:3|3:4|4:5|5:444|6:445|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:446|6:447|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:448|6:449|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:450|6:451|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:452|6:453|7:16|'
- ..'8:9|4:5|4:5;1|1:3|3:4|4:5|5:454|6:455|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:456|6:457|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:458|6:459|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:460|6:461|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:4'
- ..'62|6:463|7:8|8:9|4:5|4:5;1|1:3|3:4|4:5|5:464|6:465|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:466|6:467|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:468|6:469|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:470|7:41|8:9|4:5|4:5;1|1:3|3:4'
- ..'|4:5|5:471|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:472|6:47|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:473|7:41|8:9|4:5|4:5;1|1:3|3:4|4:5|5:474|6:40|7:16|8:9|4:5|4:5;1|1:3|3:4|4:5|5:475|7:41|8:9|4:5|4:5;p;1|3:4|4:5|5:'
- ..'476|6:206|7:477|8:9|4:5|4:5;1|3:4|4:5|5:478|6:206|7:477|8:9|4:5|4:5;1|3:4|4:204|5:479|6:206|7:207|4:204|4:204;p;')
- for _,Object in pairs(Objects) do
- Object.Parent = script and script.Parent==workspace and script or workspace
- end
- for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement