diff --git a/CSMPFunctions.lua b/CSMPFunctions.lua
index 618555b..aa269c0 100644
--- a/CSMPFunctions.lua
+++ b/CSMPFunctions.lua
@@ -28,6 +28,11 @@ elseif (rbxlegacyversion == "gamma") then -- mid 2010
settings().Network.DataSendRate = 30;
settings().Network.PhysicsSendRate = 20;
settings().Network.ReceiveRate = 60;
+elseif (rbxlegacyversion == "delta-gamma") then -- october 2010
+ settings().Rendering.FrameRateManager = 2;
+ settings().Network.DataSendRate = 30;
+ settings().Network.PhysicsSendRate = 20;
+ settings().Network.ReceiveRate = 60;
elseif (rbxlegacyversion == "delta") then -- late 2010-early 2011.
settings().Rendering.FrameRateManager = 2;
@@ -191,6 +196,44 @@ function CSServer(Port,BodyColors)
game:GetService("RunService"):Run();
pcall(function() game.Close:connect(function() NetworkServer:Stop(); end) end);
NetworkServer.IncommingConnection:connect(IncommingConnection);
+ elseif (rbxlegacyversion == "delta-gamma") then
+ assert((type(Port)~="number" or tonumber(Port)~=nil or Port==nil),"CSRun Error: Port must be nil or a number.");
+ local NetworkServer=game:GetService("NetworkServer");
+ pcall(NetworkServer.Stop,NetworkServer);
+ NetworkServer:Start(Port);
+ game:GetService("Players").PlayerAdded:connect(function(Player)
+ print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' added");
+ Player:LoadCharacter();
+ Player.CharacterAdded:connect(function(char)
+ if (BodyColors == true) then
+ PlayerColorize();
+ else
+ PlayerNoobify();
+ end
+ char['Head'].BrickColor = HeadColor;
+ char['Torso'].BrickColor = TorsoColor;
+ char['Left Arm'].BrickColor = LArmColor;
+ char['Left Leg'].BrickColor = LLegColor;
+ char['Right Arm'].BrickColor = RArmColor;
+ char['Right Leg'].BrickColor = RLegColor;
+ end)
+ Player.Changed:connect(function(Property)
+ if (Property=="Character") and (Player.Character~=nil) then
+ local Character=Player.Character;
+ local Humanoid=Character:FindFirstChild("Humanoid");
+ if (Humanoid~=nil) then
+ Humanoid.Died:connect(function() delay(5,function() Player:LoadCharacter() end) end)
+ end
+ end
+ end)
+ end)
+ game:GetService("Players").PlayerRemoving:connect(function(Player)
+ print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' leaving")
+ end)
+ game:GetService("RunService"):Run();
+ game.Workspace:InsertContent("rbxasset://Fonts//Health2010.rbxm");
+ pcall(function() game.Close:connect(function() NetworkServer:Stop(); end) end);
+ NetworkServer.IncommingConnection:connect(IncommingConnection);
else
Server = game:GetService("NetworkServer")
RunService = game:GetService("RunService")
@@ -368,6 +411,118 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,OutfitID,ColorHash,Pant
pcall(function() Player.Name=PlayerName or ""; end);
pcall(function() Visit:SetUploadUrl(""); end);
game:GetService("Visit");
+ elseif (rbxlegacyversion == "delta-gamma") then
+ pcall(function() game:SetPlaceID(-1, false) end);
+ pcall(function() game:GetService("Players"):SetChatStyle(Enum.ChatStyle.ClassicAndBubble) end);
+
+ pcall(function()
+ game:GetService("GuiService").Changed:connect(function()
+ pcall(function() game:GetService("GuiService").ShowLegacyPlayerList=true; end);
+ pcall(function() game.CoreGui.RobloxGui.PlayerListScript:Remove(); end);
+ pcall(function() game.CoreGui.RobloxGui.PlayerListTopRightFrame:Remove(); end);
+ pcall(function() game.CoreGui.RobloxGui.BigPlayerListWindowImposter:Remove(); end);
+ pcall(function() game.CoreGui.RobloxGui.BigPlayerlist:Remove(); end);
+ end);
+ end)
+ game:GetService("RunService"):Run();
+ assert((ServerIP~=nil and ServerPort~=nil),"CSConnect Error: ServerIP and ServerPort must be defined.");
+ local function SetMessage(Message) game:SetMessage(Message); end
+ local Visit,NetworkClient,PlayerSuccess,Player,ConnectionFailedHook=game:GetService("Visit"),game:GetService("NetworkClient");
+
+ local function GetClassCount(Class,Parent)
+ local Objects=Parent:GetChildren();
+ local Number=0;
+ for Index,Object in pairs(Objects) do
+ if (Object.className==Class) then
+ Number=Number+1;
+ end
+ Number=Number+GetClassCount(Class,Object);
+ end
+ return Number;
+ end
+
+ local function RequestCharacter(Replicator)
+ local Connection;
+ Connection=Player.Changed:connect(function(Property)
+ if (Property=="Character") then
+ game:ClearMessage();
+ end
+ end)
+ SetMessage("Requesting character...");
+ Replicator:RequestCharacter();
+ SetMessage("Waiting for character...");
+ end
+
+ local function Disconnection(Peer,LostConnection)
+ SetMessage("You have lost connection to the game");
+ end
+
+ local function ConnectionAccepted(Peer,Replicator)
+ Replicator.Disconnection:connect(Disconnection);
+ local RequestingMarker=true;
+ game:SetMessageBrickCount();
+ local Marker=Replicator:SendMarker();
+ Marker.Received:connect(function()
+ RequestingMarker=false;
+ RequestCharacter(Replicator);
+ end)
+ while RequestingMarker do
+ Workspace:ZoomToExtents();
+ wait(0.5);
+ end
+ end
+
+ local function ConnectionFailed(Peer, Code, why)
+ SetMessage("Failed to connect to the Game. (ID="..Code.." ["..why.."])");
+ end
+
+ pcall(function() settings().Diagnostics:LegacyScriptMode(); end);
+ pcall(function() game:SetRemoteBuildMode(true); end);
+ SetMessage("Connecting to server...");
+ NetworkClient.ConnectionAccepted:connect(ConnectionAccepted);
+ ConnectionFailedHook=NetworkClient.ConnectionFailed:connect(ConnectionFailed);
+ NetworkClient.ConnectionRejected:connect(function()
+ pcall(function() ConnectionFailedHook:disconnect(); end);
+ SetMessage("Failed to connect to the Game. (Connection rejected)");
+ end)
+
+ pcall(function() NetworkClient.Ticket=Ticket or ""; end) -- 2008 client has no ticket :O
+ PlayerSuccess,Player=pcall(function() return NetworkClient:PlayerConnect(UserID,ServerIP,ServerPort) end);
+
+ if (not PlayerSuccess) then
+ SetMessage("Failed to connect to the Game. (Invalid IP Address)");
+ NetworkClient:Disconnect();
+ end
+
+ if (not PlayerSuccess) then
+ local Error,Message=pcall(function()
+ Player=game:GetService("Players"):CreateLocalPlayer(UserID);
+ NetworkClient:Connect(ServerIP,ServerPort);
+ end);
+ if (not Error) then
+ SetMessage("Failed to connect to the Game.");
+ end
+ end
+ pcall(function() Player:SetUnder13(false) end);
+ pcall(function() Player:SetMembershipType(Enum.MembershipType.BuildersClub) end);
+ pcall(function() Player:SetAccountAge(365) end);
+ Player:SetSuperSafeChat(false);
+ if (OutfitID and OutfitID ~= 0) then
+ Player.CharacterAppearance="http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..OutfitID;
+ elseif (ColorHash and ColorHash ~= "") then
+ local aid = "http://www.roblox.com/asset?id="
+ local bcid = "http://assetgame.roblox.com/Asset/BodyColors.ashx?avatarHash="
+ local charapp = bcid..ColorHash..";"..aid..PantsID..";"..aid..ShirtID..";"..aid..TShirtID..";"..aid..Hat1ID.."&version="..Hat1Version..";"..aid..Hat2ID.."&version="..Hat2Version..";"..aid..Hat3ID.."&version="..Hat3Version..";"
+ Player.CharacterAppearance = charapp
+ else
+ Player.CharacterAppearance=0;
+ end
+ pcall(function() Player.Name=PlayerName or ""; end);
+ pcall(function() Visit:SetUploadUrl(""); end);
+ game:GetService("Visit");
+ game.GuiRoot.MainMenu.Tools:Remove()
+ game.GuiRoot.MainMenu.Insert:Remove()
+ game.GuiRoot.RightPalette.ReportAbuse:Remove()
else
pcall(function() game:SetPlaceID(-1, false) end);
pcall(function() game:GetService("Players"):SetChatStyle(Enum.ChatStyle.ClassicAndBubble) end);
@@ -457,6 +612,7 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,OutfitID,ColorHash,Pant
game.GuiRoot.MainMenu["Tools"]:Remove()
game.GuiRoot.MainMenu["Insert"]:Remove()
end
+ game.GuiRoot.RightPalette.ReportAbuse:Remove()
end)
if not suc then
@@ -580,6 +736,119 @@ function CSConnect2(UserID,ServerIP,ServerPort,PlayerName,OutfitID,Hat1ID,Hat2ID
pcall(function() Player.Name=PlayerName or ""; end);
pcall(function() Visit:SetUploadUrl(""); end);
game:GetService("Visit");
+ elseif (rbxlegacyversion == "delta-gamma") then
+ pcall(function() game:SetPlaceID(-1, false) end);
+ pcall(function() game:GetService("Players"):SetChatStyle(Enum.ChatStyle.ClassicAndBubble) end);
+
+ pcall(function()
+ game:GetService("GuiService").Changed:connect(function()
+ pcall(function() game:GetService("GuiService").ShowLegacyPlayerList=true; end);
+ pcall(function() game.CoreGui.RobloxGui.PlayerListScript:Remove(); end);
+ pcall(function() game.CoreGui.RobloxGui.PlayerListTopRightFrame:Remove(); end);
+ pcall(function() game.CoreGui.RobloxGui.BigPlayerListWindowImposter:Remove(); end);
+ pcall(function() game.CoreGui.RobloxGui.BigPlayerlist:Remove(); end);
+ end);
+ end)
+ game:GetService("RunService"):Run();
+ assert((ServerIP~=nil and ServerPort~=nil),"CSConnect Error: ServerIP and ServerPort must be defined.");
+ local function SetMessage(Message) game:SetMessage(Message); end
+ local Visit,NetworkClient,PlayerSuccess,Player,ConnectionFailedHook=game:GetService("Visit"),game:GetService("NetworkClient");
+
+ local function GetClassCount(Class,Parent)
+ local Objects=Parent:GetChildren();
+ local Number=0;
+ for Index,Object in pairs(Objects) do
+ if (Object.className==Class) then
+ Number=Number+1;
+ end
+ Number=Number+GetClassCount(Class,Object);
+ end
+ return Number;
+ end
+
+ local function RequestCharacter(Replicator)
+ local Connection;
+ Connection=Player.Changed:connect(function(Property)
+ if (Property=="Character") then
+ game:ClearMessage();
+ end
+ end)
+ SetMessage("Requesting character...");
+ Replicator:RequestCharacter();
+ SetMessage("Waiting for character...");
+ end
+
+ local function Disconnection(Peer,LostConnection)
+ SetMessage("You have lost connection to the game");
+ end
+
+ local function ConnectionAccepted(Peer,Replicator)
+ Replicator.Disconnection:connect(Disconnection);
+ local RequestingMarker=true;
+ game:SetMessageBrickCount();
+ local Marker=Replicator:SendMarker();
+ Marker.Received:connect(function()
+ RequestingMarker=false;
+ RequestCharacter(Replicator);
+ end)
+ while RequestingMarker do
+ Workspace:ZoomToExtents();
+ wait(0.5);
+ end
+ end
+
+ local function ConnectionFailed(Peer, Code, why)
+ SetMessage("Failed to connect to the Game. (ID="..Code.." ["..why.."])");
+ end
+
+ pcall(function() settings().Diagnostics:LegacyScriptMode(); end);
+ pcall(function() game:SetRemoteBuildMode(true); end);
+ SetMessage("Connecting to server...");
+ NetworkClient.ConnectionAccepted:connect(ConnectionAccepted);
+ ConnectionFailedHook=NetworkClient.ConnectionFailed:connect(ConnectionFailed);
+ NetworkClient.ConnectionRejected:connect(function()
+ pcall(function() ConnectionFailedHook:disconnect(); end);
+ SetMessage("Failed to connect to the Game. (Connection rejected)");
+ end)
+
+ pcall(function() NetworkClient.Ticket=Ticket or ""; end) -- 2008 client has no ticket :O
+ PlayerSuccess,Player=pcall(function() return NetworkClient:PlayerConnect(UserID,ServerIP,ServerPort) end);
+
+ if (not PlayerSuccess) then
+ SetMessage("Failed to connect to the Game. (Invalid IP Address)");
+ NetworkClient:Disconnect();
+ end
+
+ if (not PlayerSuccess) then
+ local Error,Message=pcall(function()
+ Player=game:GetService("Players"):CreateLocalPlayer(UserID);
+ NetworkClient:Connect(ServerIP,ServerPort);
+ end);
+ if (not Error) then
+ SetMessage("Failed to connect to the Game.");
+ end
+ end
+ pcall(function() Player:SetUnder13(false) end);
+ pcall(function() Player:SetMembershipType(Enum.MembershipType.BuildersClub) end);
+ pcall(function() Player:SetAccountAge(365) end);
+ Player:SetSuperSafeChat(false);
+ if (OutfitID and OutfitID ~= 0) then
+ Player.CharacterAppearance="http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..OutfitID;
+ elseif (Hat1ID and Hat1ID ~= 0) then
+ Hat1 = "rbxasset://charcustom/hats/"..Hat1ID
+ Hat2 = "rbxasset://charcustom/hats/"..Hat2ID
+ Hat3 = "rbxasset://charcustom/hats/"..Hat3ID
+ local charapp = "rbxasset://charcustom/CharacterColors.rbxm;"..Hat1..";"..Hat2..";"..Hat3
+ player.CharacterAppearance = charapp
+ else
+ Player.CharacterAppearance=0;
+ end
+ pcall(function() Player.Name=PlayerName or ""; end);
+ pcall(function() Visit:SetUploadUrl(""); end);
+ game:GetService("Visit");
+ game.GuiRoot.MainMenu.Tools:Remove()
+ game.GuiRoot.MainMenu.Insert:Remove()
+ game.GuiRoot.RightPalette.ReportAbuse:Remove()
else
pcall(function() game:SetPlaceID(-1, false) end);
pcall(function() game:GetService("Players"):SetChatStyle(Enum.ChatStyle.ClassicAndBubble) end);
@@ -670,6 +939,7 @@ function CSConnect2(UserID,ServerIP,ServerPort,PlayerName,OutfitID,Hat1ID,Hat2ID
game.GuiRoot.MainMenu["Tools"]:Remove()
game.GuiRoot.MainMenu["Insert"]:Remove()
end
+ game.GuiRoot.RightPalette.ReportAbuse:Remove()
end)
if not suc then
diff --git a/Health2010.rbxm b/Health2010.rbxm
new file mode 100644
index 0000000..7e3e817
--- /dev/null
+++ b/Health2010.rbxm
@@ -0,0 +1,164 @@
+
+ null
+ nil
+ -
+
+ false
+
+ GUI_Copy
+ script.HealthGUI:clone().Parent = game.StarterGui;
+script:remove();
+ true
+
+
-
+
+ HealthGUI
+ true
+
+
-
+
+ false
+ 4294901760
+ 0
+ 4279970357
+ 0
+ Background
+
+ 1
+ -50
+ 0.5
+ -75
+
+
+ 0
+ 8
+ 0
+ 150
+
+ 0
+ true
+ 1
+ true
+
+
-
+
+ false
+ 4278255360
+ 0
+ 4279970357
+ 0
+ HealthBar
+
+ 0
+ 0
+ 0
+ 0
+
+
+ 0
+ 8
+ 0
+ 150
+
+ 0
+ true
+ 1
+ true
+
+
-
+
+ false
+
+ Script
+ h = script.Parent.Parent.Parent.Parent.Parent.Character.Humanoid
+
+h.Changed:connect(function()
+ script.Parent.Size = UDim2.new(0,8,0,(h.Health*1.5))
+ script.Parent.Position = UDim2.new(0,0,0,((100-h.Health)*1.5))
+end)
+
+ true
+
+
+ -
+
+ false
+
+ Resize
+ local tray = script.Parent.tray
+local screen = script.Parent
+
+function makeYRelative()
+ tray.SizeConstraint = 2
+end
+
+function makeXRelative()
+ tray.SizeConstraint = 1
+end
+
+
+if screen.AbsoluteSize.x > screen.AbsoluteSize.y then
+ makeYRelative()
+ else
+ makeXRelative()
+end
+
+function recenter()
+ tray.Position = UDim2.new(0,screen.AbsoluteSize.X/2 - tray.AbsoluteSize.X/2,tray.Position.Y.Scale,tray.Position.Y.Offset)
+end
+
+recenter()
+screen.Changed:connect(function(property)
+
+ if property == "AbsoluteSize" then
+ if screen.AbsoluteSize.x > screen.AbsoluteSize.y then
+ makeYRelative()
+ else
+ makeXRelative()
+ end
+ recenter()
+ end
+
+end)
+
+
+ true
+
+
+
+ -
+
+ false
+ 4279069106
+ 0
+ 4279970357
+ 1
+ Label
+
+ 0
+ 3
+ 1
+ 10
+
+
+ 0
+ 0
+ 0
+ 0
+
+ 0
+ Health
+ 4278190335
+ 0
+ false
+ 2
+ 1
+ true
+ 1
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Play Solo.lua b/Play Solo.lua
deleted file mode 100644
index 0ddba4d..0000000
--- a/Play Solo.lua
+++ /dev/null
@@ -1,9 +0,0 @@
-game:getService("Players"):CreateLocalPlayer(0);
-game:service("RunService"):run();
-game.Players.Player:LoadCharacter();
-game.Players.Player:SetSuperSafeChat(false);
-function onDied(humanoid)
- wait(5);
- game.Players.Player:LoadCharacter(0);
-end
-game.Players.Player.Character.Humanoid.Died:connect(onDied);
\ No newline at end of file
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs b/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs
index 8f4b81e..10dda35 100644
--- a/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs
@@ -19,7 +19,7 @@
public static bool UseAppearanceID = false;
public static bool UseCustomAppearanceID = false;
//client shit
- public static string SelectedClient = "Mid-2008";
+ public static string SelectedClient = "";
public static bool UsesPlayerName = false;
public static bool UsesID = true;
public static bool SupportsLocalPlay = true;
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs
index 7a5d5f8..4ea45d9 100644
--- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs
@@ -109,30 +109,8 @@ namespace RBXLegacyLauncher
void Button3Click(object sender, EventArgs e)
{
- string textboxdir = "";
- textboxdir = GlobalVars.ScriptsDir;
- textboxdir = textboxdir.Replace(@"\\",@"\");
- MessageBox.Show("If you want to test out your place, you will have to save your place, then go to Tools->Execute Script in ROBLOX Studio, and then load 'Play Solo.lua' from '"+ textboxdir + "'. " + "To edit your place again, you must restart ROBLOX Studio and load your place again to edit it.","RBXLegacy Launcher - Launch ROBLOX Studio", MessageBoxButtons.OK, MessageBoxIcon.Information);
- string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe";
- string mapfile = GlobalVars.MapsDir + @"\\" + GlobalVars.Map;
- string quote = "\"";
- string args = "";
- if (GlobalVars.ModernClient == true)
- {
- args = quote + mapfile + "\" -script \"" + @"loadstring('\108\111\99\97\108\32\67\111\114\101\71\117\105\32\61\32\103\97\109\101\58\71\101\116\83\101\114\118\105\99\101\40\34\67\111\114\101\71\117\105\34\41\59\10\119\104\105\108\101\32\110\111\116\32\67\111\114\101\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\82\111\98\108\111\120\71\117\105\34\41\32\100\111\10\9\67\111\114\101\71\117\105\46\67\104\105\108\100\65\100\100\101\100\58\119\97\105\116\40\41\59\10\101\110\100\10\108\111\99\97\108\32\82\111\98\108\111\120\71\117\105\32\61\32\67\111\114\101\71\117\105\46\82\111\98\108\111\120\71\117\105\59\10\108\111\99\97\108\32\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\84\111\112\76\101\102\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\66\117\105\108\100\84\111\111\108\115\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\117\105\108\100\84\111\111\108\115\34\41\10\102\117\110\99\116\105\111\110\32\109\97\107\101\89\82\101\108\97\116\105\118\101\40\41\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\10\105\102\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\116\104\101\110\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\32\101\110\100\10\105\102\32\66\117\105\108\100\84\111\111\108\115\32\116\104\101\110\32\66\117\105\108\100\84\111\111\108\115\46\70\114\97\109\101\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\32\101\110\100\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\48\44\48\44\49\44\45\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\88\44\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\101\110\100\10\102\117\110\99\116\105\111\110\32\109\97\107\101\88\82\101\108\97\116\105\118\101\40\41\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\10\105\102\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\116\104\101\110\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\32\101\110\100\10\105\102\32\66\117\105\108\100\84\111\111\108\115\32\116\104\101\110\32\66\117\105\108\100\84\111\111\108\115\46\70\114\97\109\101\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\32\101\110\100\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\48\44\48\44\49\44\45\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\88\44\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\101\110\100\10\108\111\99\97\108\32\102\117\110\99\116\105\111\110\32\114\101\115\105\122\101\40\41\10\105\102\32\82\111\98\108\111\120\71\117\105\46\65\98\115\111\108\117\116\101\83\105\122\101\46\120\32\62\32\82\111\98\108\111\120\71\117\105\46\65\98\115\111\108\117\116\101\83\105\122\101\46\121\32\116\104\101\110\10\109\97\107\101\89\82\101\108\97\116\105\118\101\40\41\10\101\108\115\101\10\109\97\107\101\88\82\101\108\97\116\105\118\101\40\41\10\101\110\100\10\101\110\100\10\82\111\98\108\111\120\71\117\105\46\67\104\97\110\103\101\100\58\99\111\110\110\101\99\116\40\102\117\110\99\116\105\111\110\40\112\114\111\112\101\114\116\121\41\10\105\102\32\112\114\111\112\101\114\116\121\32\61\61\32\34\65\98\115\111\108\117\116\101\83\105\122\101\34\32\116\104\101\110\10\119\97\105\116\40\41\10\114\101\115\105\122\101\40\41\10\101\110\100\10\101\110\100\41\10\119\97\105\116\40\41\10\114\101\115\105\122\101\40\41\10')()";
- }
- else if (GlobalVars.ModernClient == false)
- {
- args = quote + mapfile + quote;
- }
- try
- {
- Process.Start(rbxexe, args);
- }
- catch (Exception ex)
- {
- DialogResult result2 = MessageBox.Show("Failed to launch RBXLegacy. (Error: " + ex.Message + ")","RBXLegacy Launcher - Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
+ MessageBox.Show("If you want to test out your place, you will have to save your place in RBXLegacy's map folder, then launch your place in Play Solo.","RBXLegacy Launcher - Launch ROBLOX Studio", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ StartStudio();
if (GlobalVars.CloseOnLaunch == true)
{
this.Close();
@@ -141,6 +119,9 @@ namespace RBXLegacyLauncher
void MainFormLoad(object sender, EventArgs e)
{
+ string[] defaultclient = File.ReadAllLines("info.txt");
+ string defcl = defaultclient[1];
+ GlobalVars.SelectedClient = defcl;
if (!File.Exists("config.txt"))
{
WriteConfigValues();
@@ -163,7 +144,7 @@ namespace RBXLegacyLauncher
label8.Text = Application.ProductVersion;
GlobalVars.IP = "localhost";
GlobalVars.Map = "Baseplate.rbxl";
- string[] lines = File.ReadAllLines("version.txt"); //File is in System.IO
+ string[] lines = File.ReadAllLines("info.txt"); //File is in System.IO
string version = lines[0];
label11.Text = version;
ReadConfigValues();
@@ -924,17 +905,7 @@ namespace RBXLegacyLauncher
if (result == DialogResult.Cancel)
return;
- StartServerNo3D();
- if (Process.GetProcessesByName("RobloxApp").Length > 0)
- {
- System.Threading.Timer timer = null;
- timer = new System.Threading.Timer((obj) =>
- {
- StartClientSolo();
- timer.Dispose();
- },
- null, timerset, System.Threading.Timeout.Infinite);
- }
+ PlaySolo(timerset);
if (GlobalVars.CloseOnLaunch == true)
{
@@ -945,7 +916,7 @@ namespace RBXLegacyLauncher
void StartClient()
{
string luafile = "rbxasset://scripts\\\\CSMPFunctions.lua";
- string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe";
+ string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp_Client.exe";
string quote = "\"";
string args = "";
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true && IsUsingCharacterOutfitIDs() && !IsUsingCustomOutfits())
@@ -1034,7 +1005,7 @@ namespace RBXLegacyLauncher
void StartClientSolo()
{
string luafile = "rbxasset://scripts\\\\CSMPFunctions.lua";
- string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe";
+ string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp_Client.exe";
string quote = "\"";
string args = "";
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true && IsUsingCharacterOutfitIDs() && !IsUsingCustomOutfits())
@@ -1124,7 +1095,7 @@ namespace RBXLegacyLauncher
{
string luafile = "rbxasset://scripts\\\\CSMPFunctions.lua";
string mapfile = GlobalVars.MapsDir + @"\\" + GlobalVars.Map;
- string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe";
+ string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp_Server.exe";
string quote = "\"";
string args = "";
@@ -1150,7 +1121,7 @@ namespace RBXLegacyLauncher
{
string luafile = "rbxasset://scripts\\\\CSMPFunctions.lua";
string mapfile = GlobalVars.MapsDir + @"\\" + GlobalVars.Map;
- string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe";
+ string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp_Server.exe";
string quote = "\"";
string args = "";
if (GlobalVars.BodyColors == true)
@@ -1170,5 +1141,44 @@ namespace RBXLegacyLauncher
DialogResult result2 = MessageBox.Show("Failed to launch RBXLegacy. (Error: " + ex.Message + ")","RBXLegacy Launcher - Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
+
+ void StartStudio()
+ {
+ string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp_Studio.exe";
+ string mapfile = GlobalVars.MapsDir + @"\\" + GlobalVars.Map;
+ string quote = "\"";
+ string args = "";
+ if (GlobalVars.ModernClient == true)
+ {
+ args = quote + mapfile + "\" -script \"" + @"loadstring('\108\111\99\97\108\32\67\111\114\101\71\117\105\32\61\32\103\97\109\101\58\71\101\116\83\101\114\118\105\99\101\40\34\67\111\114\101\71\117\105\34\41\59\10\119\104\105\108\101\32\110\111\116\32\67\111\114\101\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\82\111\98\108\111\120\71\117\105\34\41\32\100\111\10\9\67\111\114\101\71\117\105\46\67\104\105\108\100\65\100\100\101\100\58\119\97\105\116\40\41\59\10\101\110\100\10\108\111\99\97\108\32\82\111\98\108\111\120\71\117\105\32\61\32\67\111\114\101\71\117\105\46\82\111\98\108\111\120\71\117\105\59\10\108\111\99\97\108\32\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\84\111\112\76\101\102\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\66\117\105\108\100\84\111\111\108\115\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\117\105\108\100\84\111\111\108\115\34\41\10\102\117\110\99\116\105\111\110\32\109\97\107\101\89\82\101\108\97\116\105\118\101\40\41\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\10\105\102\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\116\104\101\110\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\32\101\110\100\10\105\102\32\66\117\105\108\100\84\111\111\108\115\32\116\104\101\110\32\66\117\105\108\100\84\111\111\108\115\46\70\114\97\109\101\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\32\101\110\100\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\48\44\48\44\49\44\45\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\88\44\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\101\110\100\10\102\117\110\99\116\105\111\110\32\109\97\107\101\88\82\101\108\97\116\105\118\101\40\41\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\10\105\102\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\116\104\101\110\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\32\101\110\100\10\105\102\32\66\117\105\108\100\84\111\111\108\115\32\116\104\101\110\32\66\117\105\108\100\84\111\111\108\115\46\70\114\97\109\101\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\32\101\110\100\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\48\44\48\44\49\44\45\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\88\44\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\101\110\100\10\108\111\99\97\108\32\102\117\110\99\116\105\111\110\32\114\101\115\105\122\101\40\41\10\105\102\32\82\111\98\108\111\120\71\117\105\46\65\98\115\111\108\117\116\101\83\105\122\101\46\120\32\62\32\82\111\98\108\111\120\71\117\105\46\65\98\115\111\108\117\116\101\83\105\122\101\46\121\32\116\104\101\110\10\109\97\107\101\89\82\101\108\97\116\105\118\101\40\41\10\101\108\115\101\10\109\97\107\101\88\82\101\108\97\116\105\118\101\40\41\10\101\110\100\10\101\110\100\10\82\111\98\108\111\120\71\117\105\46\67\104\97\110\103\101\100\58\99\111\110\110\101\99\116\40\102\117\110\99\116\105\111\110\40\112\114\111\112\101\114\116\121\41\10\105\102\32\112\114\111\112\101\114\116\121\32\61\61\32\34\65\98\115\111\108\117\116\101\83\105\122\101\34\32\116\104\101\110\10\119\97\105\116\40\41\10\114\101\115\105\122\101\40\41\10\101\110\100\10\101\110\100\41\10\119\97\105\116\40\41\10\114\101\115\105\122\101\40\41\10')()";
+ }
+ else if (GlobalVars.ModernClient == false)
+ {
+ args = quote + mapfile + quote;
+ }
+ try
+ {
+ Process.Start(rbxexe, args);
+ }
+ catch (Exception ex)
+ {
+ DialogResult result2 = MessageBox.Show("Failed to launch RBXLegacy. (Error: " + ex.Message + ")","RBXLegacy Launcher - Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+
+ void PlaySolo(int timerset)
+ {
+ StartServerNo3D();
+ if (Process.GetProcessesByName("RobloxApp_Server").Length > 0)
+ {
+ System.Threading.Timer timer = null;
+ timer = new System.Threading.Timer((obj) =>
+ {
+ StartClientSolo();
+ timer.Dispose();
+ },
+ null, timerset, System.Threading.Timeout.Infinite);
+ }
+ }
}
}
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterColors.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterColors.resources
deleted file mode 100644
index 254ebd3..0000000
Binary files a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterColors.resources and /dev/null differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization.resources
deleted file mode 100644
index f7eea8d..0000000
Binary files a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization.resources and /dev/null differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources
deleted file mode 100644
index 254ebd3..0000000
Binary files a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources and /dev/null differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources
deleted file mode 100644
index db521e9..0000000
Binary files a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources and /dev/null differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt
deleted file mode 100644
index 67ed26b..0000000
--- a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\bin\Release\RBXLegacyLauncher.exe.config
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\bin\Release\RBXLegacyLauncher.exe
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csprojResolveAssemblyReference.cache
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.CharacterColors.resources
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.CharacterCustomization.resources
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.ClientinfoEditor.resources
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.MainForm.resources
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csproj.GenerateResource.Cache
-C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.exe
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache
deleted file mode 100644
index f24d96b..0000000
Binary files a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache and /dev/null differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache
deleted file mode 100644
index 0ee1d1c..0000000
Binary files a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache and /dev/null differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.exe b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.exe
deleted file mode 100644
index 9d8c0bd..0000000
Binary files a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.exe and /dev/null differ
diff --git a/RBXLegacySetup.iss b/RBXLegacySetup.iss
index 5c315e2..b045761 100644
--- a/RBXLegacySetup.iss
+++ b/RBXLegacySetup.iss
@@ -1,7 +1,7 @@
; Script generated by the Inno Script Studio Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
-#define AppVer "1.12.4"
+#define AppVer "1.13"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
@@ -32,11 +32,10 @@ Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescrip
Source: "RBXLegacy\RBXLegacyLauncher.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "RBXLegacy\RBXLegacyLauncher.exe.config"; DestDir: "{app}"; Flags: ignoreversion
Source: "RBXLegacy\README.TXT"; DestDir: "{app}"; Flags: ignoreversion isreadme
-Source: "RBXLegacy\version.txt"; DestDir: "{app}"; Flags: ignoreversion
+Source: "RBXLegacy\info.txt"; DestDir: "{app}"; Flags: ignoreversion
Source: "RBXLegacy\clients\*"; DestDir: "{app}\clients"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "RBXLegacy\maps\*"; DestDir: "{app}\maps"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "RBXLegacy\models\*"; DestDir: "{app}\models"; Flags: ignoreversion recursesubdirs createallsubdirs
-Source: "RBXLegacy\scripts\*"; DestDir: "{app}\scripts"; Flags: ignoreversion recursesubdirs createallsubdirs
[Icons]
Name: "{group}\RBXLegacy"; Filename: "{app}\RBXLegacyLauncher.exe"
diff --git a/charcustom/CharacterColors.rbxm b/charcustom/CharacterColors.rbxm
new file mode 100644
index 0000000..0b24b2e
--- /dev/null
+++ b/charcustom/CharacterColors.rbxm
@@ -0,0 +1,17 @@
+
+
+ null
+ nil
+ -
+
+ 24
+ 24
+ 119
+ Body Colors
+ 24
+ 119
+ 23
+ true
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/2007RobloxVisor.rbxm b/charcustom/hats/2007RobloxVisor.rbxm
new file mode 100644
index 0000000..777d8b0
--- /dev/null
+++ b/charcustom/hats/2007RobloxVisor.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.0900000036
+ 0.180000007
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ RobloxVisor
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -54.5893402
+ 1.7905935
+ 10.173811
+ 0.990246177
+ -6.40412909e-005
+ -0.139328629
+ 5.6671106e-005
+ 1
+ -5.68651376e-005
+ 0.139328644
+ 4.84145821e-005
+ 0.990246177
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.400000006
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/visor.mesh
+ 5
+ Mesh
+
+ 1.01999998
+ 1.01999998
+ 1.01999998
+
+ rbxasset://charcustom/hats/textures/ROBLOXVisor.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/2008RobloxVisor.rbxm b/charcustom/hats/2008RobloxVisor.rbxm
new file mode 100644
index 0000000..d02b1f1
--- /dev/null
+++ b/charcustom/hats/2008RobloxVisor.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.0900000036
+ 0.180000007
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ BlueROBLOXVisor
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -55.5893402
+ 3.39059353
+ -2.82618904
+ 0.990246177
+ -6.40412909e-005
+ -0.139328629
+ 5.6671106e-005
+ 1
+ -5.68651376e-005
+ 0.139328644
+ 4.84145821e-005
+ 0.990246177
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.400000006
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/visor.mesh
+ 5
+ Mesh
+
+ 1.01999998
+ 1.01999998
+ 1.01999998
+
+ rbxasset://charcustom/hats/textures/BlueROBLOXVisor.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/2009RobloxVisor.rbxm b/charcustom/hats/2009RobloxVisor.rbxm
new file mode 100644
index 0000000..2aa8f57
--- /dev/null
+++ b/charcustom/hats/2009RobloxVisor.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.0900000036
+ 0.180000007
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ YellowROBLOXVisor
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -55.5893402
+ 3.39059353
+ -2.82618904
+ 0.990246177
+ -6.40412909e-005
+ -0.139328629
+ 5.6671106e-005
+ 1
+ -5.68651376e-005
+ 0.139328644
+ 4.84145821e-005
+ 0.990246177
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.400000006
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/visor.mesh
+ 5
+ Mesh
+
+ 1.01999998
+ 1.01999998
+ 1.01999998
+
+ rbxasset://charcustom/hats/textures/YellowROBLOXVisor.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/BCHardHat.rbxm b/charcustom/hats/BCHardHat.rbxm
new file mode 100644
index 0000000..e1ea402
--- /dev/null
+++ b/charcustom/hats/BCHardHat.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.349999994
+ 0.150000006
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 4
+ HardHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -3.60424042
+ 5.74905539
+ -29.0172787
+ -0.916252911
+ -2.77620595e-021
+ -0.400600582
+ -3.90117441e-021
+ 1
+ 1.99264861e-021
+ 0.400600582
+ 3.38858254e-021
+ -0.916252911
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ -2.42862883e-023
+ 3.62439101e-022
+ -1.39473558e-023
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 3.65625818e-020
+ 0.0075033661
+ 3.64011588e-020
+
+ true
+ 1
+
+ 1
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/hardhat.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/hardhat_bc.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/BlueBaseballCap.rbxm b/charcustom/hats/BlueBaseballCap.rbxm
new file mode 100644
index 0000000..eb3530a
--- /dev/null
+++ b/charcustom/hats/BlueBaseballCap.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.200000003
+ 0.150000006
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ BlueBaseballCap
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -9.5
+ 0.600000024
+ 16.5
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.400000006
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/BaseballCap.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/BlueBaseballCap.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/BlueSteelBatHelm.rbxm b/charcustom/hats/BlueSteelBatHelm.rbxm
new file mode 100644
index 0000000..5aad8af
--- /dev/null
+++ b/charcustom/hats/BlueSteelBatHelm.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.280000001
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ BlueSteelBatHelm
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -91
+ 5.79844189
+ 41.5
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 2
+ 1.20000005
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/BlueSteelBatHelm.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/BlueSteelBatHelm.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/Darkseed.rbxm b/charcustom/hats/Darkseed.rbxm
new file mode 100644
index 0000000..95590e0
--- /dev/null
+++ b/charcustom/hats/Darkseed.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.100000001
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ Darkseed
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -98
+ 9.39844799
+ -4
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 0
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 0
+
+ 2
+ 2
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/pumpkin.mesh
+ 5
+ Mesh
+
+ 0.5
+ 0.5
+ 0.5
+
+ rbxasset://charcustom/hats/textures/Darkseed.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/DominoCrown.rbxm b/charcustom/hats/DominoCrown.rbxm
new file mode 100644
index 0000000..8b90a07
--- /dev/null
+++ b/charcustom/hats/DominoCrown.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.449999988
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ DominoCrown
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -12.5
+ 1.59906554
+ 38.5
+ 1
+ -2.3695262e-017
+ 2.34151298e-018
+ 2.3695262e-017
+ 1
+ -1.97234252e-017
+ -2.34151298e-018
+ 1.97234252e-017
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/DominoCrown.mesh
+ 5
+ Mesh
+
+ 1.10000002
+ 1.10000002
+ 1.10000002
+
+ rbxasset://charcustom/hats/textures/DominoCrown.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/EeriePumpkinHead.rbxm b/charcustom/hats/EeriePumpkinHead.rbxm
new file mode 100644
index 0000000..3e165e7
--- /dev/null
+++ b/charcustom/hats/EeriePumpkinHead.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.100000001
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ GreenPumpkinHead
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -91
+ 1.79844737
+ -4
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 0
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 0
+
+ 2
+ 2
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/pumpkin.mesh
+ 5
+ Mesh
+
+ 0.5
+ 0.5
+ 0.5
+
+ rbxasset://charcustom/hats/textures/GreenPumpkinHead.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/GreenTopHat.rbxm b/charcustom/hats/GreenTopHat.rbxm
new file mode 100644
index 0000000..642e44f
--- /dev/null
+++ b/charcustom/hats/GreenTopHat.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.25
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ GreenTopHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -23
+ 1.598441
+ 12
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 2
+ 0.800000012
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/tophat.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/GreenTopHat.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/NinjaMaskOfAwesomeness.rbxm b/charcustom/hats/NinjaMaskOfAwesomeness.rbxm
new file mode 100644
index 0000000..9c53a80
--- /dev/null
+++ b/charcustom/hats/NinjaMaskOfAwesomeness.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.400000006
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ NinjaMaskOfAwesomeness
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -42.5
+ 13.1984425
+ 23.5
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/NinjaMask.mesh
+ 5
+ Mesh
+
+ 1.10000002
+ 1.10000002
+ 1.10000002
+
+ rbxasset://charcustom/hats/textures/NinjaMaskOfAwesomeness.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/NinjaMaskOfLight.rbxm b/charcustom/hats/NinjaMaskOfLight.rbxm
new file mode 100644
index 0000000..0516057
--- /dev/null
+++ b/charcustom/hats/NinjaMaskOfLight.rbxm
@@ -0,0 +1,117 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.400000006
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ NinjaMaskOfLight
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -38.5
+ 16.798439
+ -14.5
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/NinjaMask.mesh
+ 5
+ Mesh
+
+ 1.10000002
+ 1.10000002
+ 1.10000002
+
+ rbxasset://charcustom/hats/textures/NinjaMaskOfLight.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/NoHat.rbxm b/charcustom/hats/NoHat.rbxm
new file mode 100644
index 0000000..e6195e8
--- /dev/null
+++ b/charcustom/hats/NoHat.rbxm
@@ -0,0 +1,99 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.25
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ NoHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 1
+
+ -23
+ 1.20000005
+ 17
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ false
+ false
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 1
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 0.1
+ 0.1
+ 0.1
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/OBCHardHat.rbxm b/charcustom/hats/OBCHardHat.rbxm
new file mode 100644
index 0000000..cb9c845
--- /dev/null
+++ b/charcustom/hats/OBCHardHat.rbxm
@@ -0,0 +1,121 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.25
+ 0.150000006
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ BCHardHatGolden
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ 0.395759583
+ 5.8490572
+ -12.0172787
+ -0.916252911
+ -2.77620595e-021
+ -0.400600582
+ -3.90117441e-021
+ 1
+ 1.99264861e-021
+ 0.400600582
+ 3.38858254e-021
+ -0.916252911
+
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ 256
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.800000012
+ 1
+
+
+
-
+
+ 2
+ 2
+ rbxasset://charcustom/hats/fonts/hardhat.mesh
+ 5
+ Mesh
+
+ 0
+ 0
+ 0
+
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/hardhat_obc.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/PirateHat.rbxm b/charcustom/hats/PirateHat.rbxm
new file mode 100644
index 0000000..534bef2
--- /dev/null
+++ b/charcustom/hats/PirateHat.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.349999994
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ PirateHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -28
+ 1.19713736
+ 22.5
+ 1
+ -1.80803587e-018
+ 5.86063461e-019
+ 1.80803587e-018
+ 1
+ -5.0792372e-018
+ -5.86063461e-019
+ 5.0792372e-018
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 2
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/PirateHat.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/pirate.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/PoliceCap.rbxm b/charcustom/hats/PoliceCap.rbxm
new file mode 100644
index 0000000..4455fcf
--- /dev/null
+++ b/charcustom/hats/PoliceCap.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.150000006
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ PoliceCap
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -12.5
+ 1.20000005
+ 25.5
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/PoliceCap.mesh
+ 5
+ Mesh
+
+ 1.10000002
+ 1.10000002
+ 1.10000002
+
+ rbxasset://charcustom/hats/textures/PoliceCap.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/PumpkinHead.rbxm b/charcustom/hats/PumpkinHead.rbxm
new file mode 100644
index 0000000..15c993f
--- /dev/null
+++ b/charcustom/hats/PumpkinHead.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.100000001
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ PumpkinHead
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -85
+ 1.99844325
+ -4
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 0
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 0
+
+ 2
+ 2
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/pumpkin.mesh
+ 5
+ Mesh
+
+ 0.5
+ 0.5
+ 0.5
+
+ rbxasset://charcustom/hats/textures/PumpkinHead.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/PurpleTopHat.rbxm b/charcustom/hats/PurpleTopHat.rbxm
new file mode 100644
index 0000000..3f6a7ca
--- /dev/null
+++ b/charcustom/hats/PurpleTopHat.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.25
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ PurpleTopHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -23
+ 1.20000005
+ 17
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 2
+ 0.800000012
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/tophat.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/TopHatPurple.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/RedBaseballCap.rbxm b/charcustom/hats/RedBaseballCap.rbxm
new file mode 100644
index 0000000..6ddc224
--- /dev/null
+++ b/charcustom/hats/RedBaseballCap.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.200000003
+ 0.150000006
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ RedBaseballCap
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -17.5
+ 0.600000024
+ 15.5
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.400000006
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/BaseballCap.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/BaseballCapRed.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/RedTopHat.rbxm b/charcustom/hats/RedTopHat.rbxm
new file mode 100644
index 0000000..30e8c26
--- /dev/null
+++ b/charcustom/hats/RedTopHat.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.25
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ RedTopHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -23
+ 2.39844131
+ 7
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 2
+ 0.800000012
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/tophat.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/RedTopHat.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/ShadowNinjaMask.rbxm b/charcustom/hats/ShadowNinjaMask.rbxm
new file mode 100644
index 0000000..dcef3be
--- /dev/null
+++ b/charcustom/hats/ShadowNinjaMask.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.400000006
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ NinjaMaskOfShadows
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -42.5
+ 15.9984398
+ -14.5
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/NinjaMask.mesh
+ 5
+ Mesh
+
+ 1.10000002
+ 1.10000002
+ 1.10000002
+
+ rbxasset://charcustom/hats/textures/ShadowNinjaMask.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/Sombrero.rbxm b/charcustom/hats/Sombrero.rbxm
new file mode 100644
index 0000000..0241c14
--- /dev/null
+++ b/charcustom/hats/Sombrero.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.150000006
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ Sombrero
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -2
+ 1.20000005
+ 25
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 2
+ 0.800000012
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/Sombrero.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/Sombrero.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/SparkleTimeFedora.rbxm b/charcustom/hats/SparkleTimeFedora.rbxm
new file mode 100644
index 0000000..9d3108b
--- /dev/null
+++ b/charcustom/hats/SparkleTimeFedora.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.100000001
+ 0.0500000007
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ SparkleTimeFedora
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -86.5
+ 8.99435711
+ 32.5
+ 1
+ -1.16600587e-017
+ 6.05396395e-022
+ 1.16600587e-017
+ 1
+ -1.16603532e-017
+ -6.05396395e-022
+ 1.16603532e-017
+ 1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.400000006
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/fedora.mesh
+ 5
+ Mesh
+
+ 1.10000002
+ 1.10000002
+ 1.10000002
+
+ rbxasset://charcustom/hats/textures/SparkleTimeFedora.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/StrawHat.rbxm b/charcustom/hats/StrawHat.rbxm
new file mode 100644
index 0000000..872473b
--- /dev/null
+++ b/charcustom/hats/StrawHat.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.349999994
+ 0
+ 1
+ 0
+ 0
+ -0
+ 0.980390251
+ 0.1970658
+ 0
+ -0.197065771
+ 0.98039037
+
+ 2
+ StrawHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ 46.3998489
+ 0.799179196
+ 39.3222809
+ 0.0497253612
+ 0.00195141044
+ -0.998760939
+ -0.00180361001
+ 0.999996662
+ 0.00186402828
+ 0.998761237
+ 0.001708686
+ 0.0497287102
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 2
+ 0.800000012
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/StrawHat.mesh
+ 5
+ Mesh
+
+ 1.60000002
+ 1.29999995
+ 1.60000002
+
+ rbxasset://charcustom/hats/textures/StrawHat.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/TBCHardHat.rbxm b/charcustom/hats/TBCHardHat.rbxm
new file mode 100644
index 0000000..be7439a
--- /dev/null
+++ b/charcustom/hats/TBCHardHat.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.25
+ 0.150000006
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ TBCHardHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -24.6042404
+ 1.64905727
+ -0.0172786713
+ -0.916252911
+ -2.77620595e-021
+ -0.400600582
+ -3.90117441e-021
+ 1
+ 1.99264861e-021
+ 0.400600582
+ 3.38858254e-021
+ -0.916252911
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/hardhat.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/hardhat_tbc.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
diff --git a/charcustom/hats/TheDusekkar.rbxm b/charcustom/hats/TheDusekkar.rbxm
new file mode 100644
index 0000000..05f00b8
--- /dev/null
+++ b/charcustom/hats/TheDusekkar.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.100000001
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ TheDusekkar
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -106
+ 11.7984476
+ -4
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 0
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 0
+
+ 2
+ 2
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/TheDusekkar.mesh
+ 5
+ Mesh
+
+ 0.5
+ 0.5
+ 0.5
+
+ rbxasset://charcustom/hats/textures/TheDusekkar.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/VikingHelm.rbxm b/charcustom/hats/VikingHelm.rbxm
new file mode 100644
index 0000000..ebe9b2e
--- /dev/null
+++ b/charcustom/hats/VikingHelm.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.349999994
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ VikingHelmet
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -18
+ 1.20000005
+ 22.5
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 2
+ 0.800000012
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/VikingHelm.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/viking.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/VoidStar.rbxm b/charcustom/hats/VoidStar.rbxm
new file mode 100644
index 0000000..a88137e
--- /dev/null
+++ b/charcustom/hats/VoidStar.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.0500000007
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ VoidStar
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -35.5
+ 1.39844096
+ 25.5
+ 1
+ -1.28136491e-018
+ 2.70646879e-019
+ 1.28136491e-018
+ 1
+ -1.67646949e-018
+ -2.70646879e-019
+ 1.67646949e-018
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.400000006
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/VoidStar.mesh
+ 5
+ Mesh
+
+ 0.649999976
+ 0.649999976
+ 0.649999976
+
+ rbxasset://charcustom/hats/textures/VoidStar.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/WhiteTopHat.rbxm b/charcustom/hats/WhiteTopHat.rbxm
new file mode 100644
index 0000000..a1e58d8
--- /dev/null
+++ b/charcustom/hats/WhiteTopHat.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.25
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 4
+ WhiteTopHat
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ -3.66433048
+ 5.64905548
+ -29.1547165
+ -0.916252911
+ -2.77620595e-021
+ -0.400600582
+ -3.90117441e-021
+ 1
+ 1.99264861e-021
+ 0.400600582
+ 3.38858254e-021
+ -0.916252911
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ -2.42862883e-023
+ 3.62439101e-022
+ -1.39473558e-023
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 3.65113742e-020
+ 0.0075033661
+ 3.64253668e-020
+
+ true
+ 1
+
+ 2
+ 0.800000012
+ 2
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/tophat.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/WhiteTopHat.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/fedora.rbxm b/charcustom/hats/fedora.rbxm
new file mode 100644
index 0000000..9523a88
--- /dev/null
+++ b/charcustom/hats/fedora.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ -0.100000001
+ 0.0500000007
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ Fedora
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ 16.5
+ 1.3943578
+ 16.5
+ 1
+ -1.16600587e-017
+ 6.05396395e-022
+ 1.16600587e-017
+ 1
+ -1.16603532e-017
+ -6.05396395e-022
+ 1.16603532e-017
+ 1
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 0.400000006
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/fedora.mesh
+ 5
+ Mesh
+
+ 1.10000002
+ 1.10000002
+ 1.10000002
+
+ rbxasset://charcustom/hats/textures/fedora.png
+
+ 0.180000007
+ 0.180000007
+ 0.180000007
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/fonts/BaseballCap.mesh b/charcustom/hats/fonts/BaseballCap.mesh
new file mode 100644
index 0000000..ebbf847
--- /dev/null
+++ b/charcustom/hats/fonts/BaseballCap.mesh
@@ -0,0 +1,3 @@
+version 1.00
+476
+[-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.491253,0.294174,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.491253,0.294174,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.619917,0.281985,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.262563,0.293114,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.13465,0.364238,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.13465,0.364238,0][-1.21854,-0.714076,-1.02762][-0.850935,0.0292215,-0.524457][0.252704,0.29658,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.262563,0.293114,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.053182,0.475381,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.053182,0.475381,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.13465,0.364238,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.0206597,0.614181,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.0206597,0.614181,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.053182,0.475381,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.0422074,0.755102,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.0422074,0.755102,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.0206597,0.614181,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.114717,0.872287,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.114717,0.872287,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.0422074,0.755102,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][1.23291,-0.481649,-0.99135][0.823377,0.312027,-0.474015][0.236665,0.953214,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.226251,0.970824,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.226251,0.970824,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.114717,0.872287,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.592049,0.992306,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.592049,0.992306,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.456716,0.977722,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.729023,0.970604,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.729023,0.970604,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.592049,0.992306,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.847266,0.898135,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.847266,0.898135,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.729023,0.970604,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.928776,0.785933,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.928776,0.785933,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.847266,0.898135,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.961143,0.65108,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.961143,0.65108,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.928776,0.785933,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.939441,0.514105,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.939441,0.514105,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.961143,0.65108,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.866972,0.395862,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.866972,0.395862,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.939441,0.514105,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.754771,0.314353,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.754771,0.314353,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.866972,0.395862,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.619917,0.281985,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.619917,0.281985,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.754771,0.314353,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.861771,0.28339,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.861771,0.28339,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.84193,0.0248005,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.84193,0.0248005,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.892164,0.030846,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.84193,0.0248005,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.892164,0.030846,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.93626,0.0556551,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.892164,0.030846,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.93626,0.0556551,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.967507,0.0954508,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.93626,0.0556551,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.967507,0.0954508,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.981145,0.144175,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.967507,0.0954508,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.981145,0.144175,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.975099,0.194409,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.981145,0.144175,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.975099,0.194409,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.950291,0.238505,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.975099,0.194409,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.950291,0.238505,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.910495,0.269751,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.950291,0.238505,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.910495,0.269751,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.861771,0.28339,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.910495,0.269751,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.262563,0.293114,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.23291,-0.481649,-0.99135][0.823377,0.312027,-0.474015][0.236665,0.953214,0][1.23291,-0.481649,-0.99135][0.823377,0.312027,-0.474015][0.236665,0.953214,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.456716,0.977722,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.226251,0.970824,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.226251,0.970824,0][1.23291,-0.481649,-0.99135][0.823377,0.312027,-0.474015][0.236665,0.953214,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.66954,0.0750627,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.66954,0.0750627,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.70886,0.037618,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.644701,0.118774,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.644701,0.118774,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.66954,0.0750627,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.638766,0.170445,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.638766,0.170445,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.644701,0.118774,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.652514,0.220605,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.652514,0.220605,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.638766,0.170445,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.683731,0.260016,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.683731,0.260016,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.652514,0.220605,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0][-1.21854,-0.714076,-1.02762][-0.850935,0.0292215,-0.524457][0.727693,0.283074,0][-1.21854,-0.714076,-1.02762][-0.850935,0.0292215,-0.524457][0.727693,0.283074,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.683731,0.260016,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.491253,0.294174,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.262563,0.293114,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.731335,0.284203,0][-1.21854,-0.714076,-1.02762][-0.850935,0.0292215,-0.524457][0.727693,0.283074,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/BlueSteelBatHelm.mesh b/charcustom/hats/fonts/BlueSteelBatHelm.mesh
new file mode 100644
index 0000000..d5119f5
--- /dev/null
+++ b/charcustom/hats/fonts/BlueSteelBatHelm.mesh
@@ -0,0 +1,3 @@
+version 1.00
+744
+[0.00678763,0.925086,-1.31209][-0.444023,0.152563,-3.08825][0.0664683,0.714795,0][0.00678763,0.210332,-1.31209][-0.172432,0,-1.19929][0.01,0.714795,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.021192,0.7443,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][0.00678763,0.210332,-1.31209][-0.172432,0,-1.19929][0.01,0.714795,0][-0.36668,0.925086,-1.2584][0,0,0][0.0664683,0.7443,0][0.00678761,1.81092,-1.22396][-0.0570781,0.0394964,-0.396988][0.136453,0.714795,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][0.00678763,0.925086,-1.31209][-0.444023,0.152563,-3.08825][0.0664683,0.714795,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][0.00678761,1.81092,-1.22396][-0.0570781,0.0394964,-0.396988][0.136453,0.714795,0][0.00678763,0.310982,-1.16759][0,0,0][0.148107,0.196623,0][0.00678763,0.310982,-1.16759][0.132289,-0.0786685,1.15303][0.148107,0.196623,0][-0.325967,0.452645,-1.11974][0,0,0][0.159299,0.192844,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.159299,0.192844,0][-0.325967,0.452645,-1.11974][0,0,0][0.159299,0.192844,0][0.00678763,0.310982,-1.16759][0.132289,-0.0786685,1.15303][0.148107,0.196623,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.0473247,0.823435,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.01,0.823435,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.01,0.85055,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.01,0.823435,0][-0.480269,-0.577191,-1.22205][-1.04801,-0.128238,-1.90829][0.0779377,0.832409,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.0473247,0.823435,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.0473247,0.823435,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.021192,0.7443,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.0664683,0.771415,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.0291436,0.771415,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.0664683,0.771415,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.021192,0.7443,0][-0.709891,0.925086,-1.10166][0,0,0][0.977617,0.844355,0][-0.36668,0.925086,-1.2584][0,0,0][0.99,0.844355,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.977617,0.844355,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.99,0.844355,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.977617,0.844355,0][-0.36668,0.925086,-1.2584][0,0,0][0.99,0.844355,0][-0.631765,0.452645,-0.980089][0,0,0][0.159299,0.181811,0][-0.325967,0.452645,-1.11974][0,0,0][0.159299,0.192844,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.159299,0.192844,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.325967,0.452645,-1.11974][0,0,0][0.159299,0.192844,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.812235,0.64996,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.842848,0.640986,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.84956,0.625801,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.842848,0.640986,0][-0.325967,-1.43712,-1.11974][0.652532,0,1.42885][0.77491,0.64996,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.812235,0.64996,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.77491,0.625801,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.77491,0.625801,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.812235,0.64996,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.473931,0.440618,0][-0.325967,-1.43712,-1.11974][0.652532,0,1.42885][0.485248,0.442126,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.482033,0.411931,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.492466,0.416566,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.482033,0.411931,0][-0.325967,-1.43712,-1.11974][0.652532,0,1.42885][0.485248,0.442126,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.01,0.85055,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.0473247,0.873078,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.01,0.873078,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.0473247,0.873078,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.01,0.85055,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.0846494,0.873078,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.0473247,0.873078,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.0846494,0.873078,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.789983,-0.0197962,-1.05452][-1.56669,-0.128818,-1.37085][0.121974,0.856878,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.129302,0.871302,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.0846494,0.873078,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.129302,0.871302,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.0664683,0.771415,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.0291436,0.771415,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.0664683,0.793943,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.024914,0.790581,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.0664683,0.793943,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.0291436,0.771415,0][-0.995041,0.925086,-0.854572][0,0,0][0.958096,0.844355,0][-0.709891,0.925086,-1.10166][0,0,0][0.977617,0.844355,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.958096,0.844355,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.977617,0.844355,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.958096,0.844355,0][-0.709891,0.925086,-1.10166][0,0,0][0.977617,0.844355,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.155069,0.164418,0][-0.631765,0.452645,-0.980089][0,0,0][0.159299,0.181811,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-0.631765,0.452645,-0.980089][0,0,0][0.159299,0.181811,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.84956,0.625801,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.886885,0.619473,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.84956,0.605729,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.894213,0.608374,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.84956,0.605729,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.886885,0.619473,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.84956,0.625801,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.812235,0.605729,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.84956,0.605729,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.812235,0.605729,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.84956,0.625801,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.77491,0.625801,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.77491,0.605729,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.812235,0.605729,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.77491,0.605729,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.482033,0.411931,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.492466,0.416566,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.497888,0.386689,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.506593,0.394076,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.497888,0.386689,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.492466,0.416566,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.321736,0.01,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.284412,0.01,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.284412,0.0350768,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.284412,0.01,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.359061,0.01,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.321736,0.01,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.321736,0.01,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.403714,0.01,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.359061,0.01,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.359061,0.01,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.429481,0.01,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.403714,0.01,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.403714,0.01,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.471035,0.01,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.429481,0.01,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.471035,0.0350768,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.471035,0.0350768,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.429481,0.01,0][-1.19903,0.925086,-0.537161][0,0,0][0.93302,0.844355,0][-0.995041,0.925086,-0.854572][0,0,0][0.958096,0.844355,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.93302,0.844355,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.958096,0.844355,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.93302,0.844355,0][-0.995041,0.925086,-0.854572][0,0,0][0.958096,0.844355,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.155069,0.164418,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.129302,0.164418,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.155069,0.164418,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.155069,0.164418,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.0846494,0.164418,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.129302,0.164418,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.129302,0.164418,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.0473247,0.164418,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.0846494,0.164418,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.0846494,0.164418,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.01,0.164418,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.0473247,0.164418,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.01,0.142075,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.01,0.142075,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.0473247,0.164418,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.497888,0.386689,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.506593,0.394076,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.520213,0.366936,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.526484,0.376476,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.520213,0.366936,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.506593,0.394076,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.284412,0.0350768,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.321736,0.0636781,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.284412,0.0636781,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.321736,0.0636781,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.284412,0.0350768,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.359061,0.0636781,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.321736,0.0636781,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.359061,0.0636781,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.396386,0.0636781,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.359061,0.0636781,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.396386,0.0636781,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.396386,0.0636781,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.471035,0.0350768,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.471035,0.0636781,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.471035,0.0636781,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.30533,0.925086,-0.175137][0,0,0][0.904418,0.844355,0][-1.19903,0.925086,-0.537161][0,0,0][0.93302,0.844355,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.904418,0.844355,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.93302,0.844355,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.904418,0.844355,0][-1.19903,0.925086,-0.537161][0,0,0][0.93302,0.844355,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.01,0.142075,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.01,0.116591,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.01,0.116591,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.520213,0.366936,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.526484,0.376476,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.547198,0.354273,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.550528,0.365193,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.547198,0.354273,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.526484,0.376476,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.321736,0.0636781,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.284412,0.0636781,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.284412,0.0934869,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.284412,0.0636781,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.251735,0.196623,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.244605,0.167946,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.221926,0.196623,0][-1.769,-0.85523,0.111925][-1.81447,-2.73231e-007,1.09901e-006][0.229056,0.167946,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.221926,0.196623,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.244605,0.167946,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.836465,0.888862,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.843595,0.916032,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.866274,0.888862,0][-2.23267,-0.363707,0.111926][-1.82742,-5.80898e-007,2.2137e-006][0.859144,0.916032,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.866274,0.888862,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.843595,0.916032,0][-3.12779,1.05679,-0.175136][-1.43125,-0.237181,0][0.810712,0.48471,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.752392,0.49184,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.810712,0.514519,0][-3.00546,0.318591,0.111926][-1.66807,-0.276427,2.02067e-006][0.752392,0.507389,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.810712,0.514519,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.752392,0.49184,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.471035,0.0636781,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.471035,0.0934869,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.433711,0.0934869,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.471035,0.0934869,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.30533,0.925086,0.202171][0,0,0][0.874609,0.844355,0][-1.30533,0.925086,-0.175137][0,0,0][0.904418,0.844355,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.874609,0.844355,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.904418,0.844355,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.874609,0.844355,0][-1.30533,0.925086,-0.175137][0,0,0][0.904418,0.844355,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.01,0.116591,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.01,0.0900321,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.01,0.0900321,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.547198,0.354273,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.550528,0.365193,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.576658,0.349725,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.576776,0.361141,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.576658,0.349725,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.550528,0.365193,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.284412,0.0934869,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.284412,0.122088,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.284412,0.0934869,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.359061,0.0934869,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.396386,0.0934869,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.359061,0.0934869,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.359061,0.0934869,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.433711,0.0934869,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.396386,0.0934869,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.396386,0.0934869,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.471035,0.0934869,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.433711,0.0934869,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.471035,0.122088,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.471035,0.122088,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.433711,0.0934869,0][-1.19903,0.925086,0.564196][0,0,0][0.846008,0.844355,0][-1.30533,0.925086,0.202171][0,0,0][0.874609,0.844355,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.846008,0.844355,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.874609,0.844355,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.846008,0.844355,0][-1.30533,0.925086,0.202171][0,0,0][0.874609,0.844355,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.01,0.0900321,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.01,0.0645486,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.01,0.0645486,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.576658,0.349725,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.576776,0.361141,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.606205,0.353662,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.603103,0.364648,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.606205,0.353662,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.576776,0.361141,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.284412,0.122088,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.321736,0.147165,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.284412,0.147165,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.321736,0.147165,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.284412,0.122088,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.359061,0.147165,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.321736,0.147165,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.359061,0.147165,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.396386,0.147165,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.359061,0.147165,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.396386,0.147165,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.433711,0.147165,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.396386,0.147165,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.433711,0.147165,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.471035,0.122088,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.471035,0.147165,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.433711,0.147165,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.471035,0.147165,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-0.995041,0.925086,0.881607][0,0,0][0.820931,0.844355,0][-1.19903,0.925086,0.564196][0,0,0][0.846008,0.844355,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.820931,0.844355,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.846008,0.844355,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.820931,0.844355,0][-1.19903,0.925086,0.564196][0,0,0][0.846008,0.844355,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.159299,0.0422055,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.121974,0.0422055,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.159299,0.0422055,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.121974,0.0422055,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.0846494,0.0422055,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.121974,0.0422055,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.0846494,0.0422055,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.0473247,0.0422055,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.0846494,0.0422055,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.0473247,0.0422055,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.01,0.0645486,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.01,0.0422055,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.0473247,0.0422055,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.01,0.0422055,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.606205,0.353662,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.603103,0.364648,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.633447,0.365763,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.627375,0.375431,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.633447,0.365763,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.603103,0.364648,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.509364,0.472575,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.47204,0.472575,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.47204,0.495102,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.47204,0.472575,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.546689,0.472575,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.509364,0.472575,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.509364,0.472575,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.584014,0.472575,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.546689,0.472575,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.546689,0.472575,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.621339,0.472575,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.584014,0.472575,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.584014,0.472575,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.658663,0.472575,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.621339,0.472575,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.658663,0.495102,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.658663,0.495102,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.621339,0.472575,0][-0.709891,0.925086,1.12869][0,0,0][0.801411,0.844355,0][-0.995041,0.925086,0.881607][0,0,0][0.820931,0.844355,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.801411,0.844355,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.820931,0.844355,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.801411,0.844355,0][-0.995041,0.925086,0.881607][0,0,0][0.820931,0.844355,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.159299,0.0248129,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.159299,0.0422055,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.159299,0.0248129,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.159299,0.0248129,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.159299,0.0422055,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.565423,0.676249,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.602748,0.676249,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.602748,0.656177,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.602748,0.676249,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.528098,0.676249,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.565423,0.676249,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.565423,0.676249,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.490773,0.676249,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.528098,0.676249,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.528098,0.676249,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.453449,0.676249,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.490773,0.676249,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.453449,0.656177,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.453449,0.656177,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.490773,0.676249,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.633447,0.365763,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.627375,0.375431,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.656176,0.385049,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.647626,0.392615,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.656176,0.385049,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.627375,0.375431,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.47204,0.495102,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.47204,0.522218,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.47204,0.495102,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.658663,0.495102,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.658663,0.522218,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.658663,0.522218,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.366679,0.925086,1.28543][0,0,0][0.789028,0.844355,0][-0.709891,0.925086,1.12869][0,0,0][0.801411,0.844355,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.789028,0.844355,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.801411,0.844355,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.789028,0.844355,0][-0.709891,0.925086,1.12869][0,0,0][0.801411,0.844355,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.159299,0.0137798,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.159299,0.0248129,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.159299,0.0137798,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.159299,0.0248129,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.159299,0.0137798,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.159299,0.0248129,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.602748,0.656177,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.602748,0.632018,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.602748,0.656177,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.453449,0.656177,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.453449,0.632018,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.453449,0.632018,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.656176,0.385049,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.647626,0.392615,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.672551,0.409958,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.662216,0.414808,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.672551,0.409958,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.647626,0.392615,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.47204,0.522218,0][0.00678738,-0.964678,1.33913][-0.142314,0,0.989821][0.509364,0.551723,0][0.00678738,-1.43712,1.33913][-0.223547,0,1.55481][0.47204,0.551723,0][0.00678738,-0.964678,1.33913][-0.142314,0,0.989821][0.509364,0.551723,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.47204,0.522218,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][0.00678738,-0.492237,1.33913][-0.142314,-1.24879e-007,0.989821][0.546689,0.551723,0][0.00678738,-0.964678,1.33913][-0.142314,0,0.989821][0.509364,0.551723,0][0.00678738,-0.492237,1.33913][-0.142314,-1.24879e-007,0.989821][0.546689,0.551723,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][0.00678738,-0.0197963,1.33913][-0.142315,0,0.989821][0.584014,0.551723,0][0.00678738,-0.492237,1.33913][-0.142314,-1.24879e-007,0.989821][0.546689,0.551723,0][0.00678738,-0.0197963,1.33913][-0.142315,0,0.989821][0.584014,0.551723,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][0.00678738,0.452645,1.33913][-0.142315,0,0.989821][0.621339,0.551723,0][0.00678738,-0.0197963,1.33913][-0.142315,0,0.989821][0.584014,0.551723,0][0.00678738,0.452645,1.33913][-0.142315,0,0.989821][0.621339,0.551723,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.658663,0.522218,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][0.00678738,0.925086,1.33913][-0.223547,0,1.55481][0.658663,0.551723,0][0.00678738,0.452645,1.33913][-0.142315,0,0.989821][0.621339,0.551723,0][0.00678738,0.925086,1.33913][-0.223547,0,1.55481][0.658663,0.551723,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][0.00678738,0.925086,1.33913][0,0,0][0.784786,0.844355,0][-0.366679,0.925086,1.28543][0,0,0][0.789028,0.844355,0][0.00678738,0.925086,1.33913][-0.223547,0,1.55481][0.784786,0.844355,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.789028,0.844355,0][0.00678738,0.925086,1.33913][-0.223547,0,1.55481][0.784786,0.844355,0][-0.366679,0.925086,1.28543][0,0,0][0.789028,0.844355,0][0.00678741,0.452645,1.19462][0.142315,0,-0.989821][0.159299,0.01,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.159299,0.0137798,0][0.00678741,0.452645,1.19462][0.135937,-0.296016,-0.945461][0.159299,0.01,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.159299,0.0137798,0][0.00678741,0.452645,1.19462][0.135937,-0.296016,-0.945461][0.159299,0.01,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.159299,0.0137798,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.602748,0.632018,0][0.00678741,-0.0197963,1.19462][0.142315,1.24879e-007,-0.989821][0.565423,0.605729,0][0.00678741,0.452645,1.19462][0.142315,0,-0.989821][0.602748,0.605729,0][0.00678741,-0.0197963,1.19462][0.142315,1.24879e-007,-0.989821][0.565423,0.605729,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.602748,0.632018,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][0.00678741,-0.492237,1.19462][0.142314,0,-0.989821][0.528098,0.605729,0][0.00678741,-0.0197963,1.19462][0.142315,1.24879e-007,-0.989821][0.565423,0.605729,0][0.00678741,-0.492237,1.19462][0.142314,0,-0.989821][0.528098,0.605729,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][0.00678741,-0.964678,1.19462][0.142314,0,-0.989821][0.490773,0.605729,0][0.00678741,-0.492237,1.19462][0.142314,0,-0.989821][0.528098,0.605729,0][0.00678741,-0.964678,1.19462][0.142314,0,-0.989821][0.490773,0.605729,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.453449,0.632018,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][0.00678741,-1.43712,1.19462][0.223547,0,-1.55481][0.453449,0.605729,0][0.00678741,-0.964678,1.19462][0.142314,0,-0.989821][0.490773,0.605729,0][0.00678741,-1.43712,1.19462][0.223547,0,-1.55481][0.453449,0.605729,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.672551,0.409958,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.662216,0.414808,0][0.00678738,-1.43712,1.33913][-0.223547,0,1.55481][0.681245,0.438471,0][0.00678741,-1.43712,1.19462][0.223547,0,-1.55481][0.669962,0.440212,0][0.00678738,-1.43712,1.33913][-0.223547,0,1.55481][0.681245,0.438471,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.662216,0.414808,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.846975,0.148534,0][-0.325967,-1.43712,-1.11974][0.652532,0,1.42885][0.80965,0.148534,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.80965,0.159488,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.80965,0.159488,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.846975,0.159488,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.846975,0.148534,0][-0.480269,-0.577191,-1.22205][-1.04801,-0.128238,-1.90829][0.877588,0.156617,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.877588,0.144806,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.846975,0.159488,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.846975,0.148534,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.846975,0.159488,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.877588,0.144806,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.950449,0.361568,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.956621,0.371173,0][-0.480269,-0.577191,-1.22205][-1.04801,-0.128238,-1.90829][0.96859,0.352057,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.971806,0.363867,0][-0.480269,-0.577191,-1.22205][-1.04801,-0.128238,-1.90829][0.96859,0.352057,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.956621,0.371173,0][-0.789983,-0.0197962,-1.05452][-1.56669,-0.128818,-1.37085][0.502948,0.431973,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.501841,0.44149,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.540453,0.432586,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.539343,0.442126,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.540453,0.432586,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.501841,0.44149,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.922456,0.543095,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.929932,0.533598,0][-0.789983,-0.0197962,-1.05452][-1.56669,-0.128818,-1.37085][0.906659,0.52867,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.91624,0.522498,0][-0.789983,-0.0197962,-1.05452][-1.56669,-0.128818,-1.37085][0.906659,0.52867,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.929932,0.533598,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.883063,0.649748,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.883502,0.638344,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.857249,0.64996,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.857731,0.637886,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.857249,0.64996,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.883502,0.638344,0][0.00678763,0.210332,-1.31209][-0.172432,0,-1.19929][0.894406,0.798325,0][0.00678763,0.310982,-1.16759][0,0,0][0.889343,0.788092,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.86608,0.807608,0][-0.325967,0.452645,-1.11974][0,0,0][0.864105,0.796363,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.86608,0.807608,0][0.00678763,0.310982,-1.16759][0,0,0][0.889343,0.788092,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.86608,0.807608,0][-0.325967,0.452645,-1.11974][0,0,0][0.864105,0.796363,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.836285,0.808534,0][-0.631765,0.452645,-0.980089][0,0,0][0.837558,0.797188,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.836285,0.808534,0][-0.325967,0.452645,-1.11974][0,0,0][0.864105,0.796363,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.836285,0.808534,0][-0.631765,0.452645,-0.980089][0,0,0][0.837558,0.797188,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.81045,0.799537,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.814868,0.78901,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.81045,0.799537,0][-0.631765,0.452645,-0.980089][0,0,0][0.837558,0.797188,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.426243,0.271901,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.45109,0.244049,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.417998,0.226115,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.45109,0.244049,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.401396,0.299754,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.426243,0.271901,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.426243,0.271901,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.376549,0.327606,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.401396,0.299754,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.349214,0.303221,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.349214,0.303221,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.401396,0.299754,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.158794,0.823435,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.158794,0.853244,0][-1.769,0.452645,0.202171][0,1.5708,0][0.195426,0.823435,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.195426,0.853244,0][-1.769,0.452645,0.202171][0,1.5708,0][0.195426,0.823435,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.158794,0.853244,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.524949,0.299941,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.550819,0.326846,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-1.769,0.452645,0.202171][0,1.5708,0][0.577225,0.301456,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.550819,0.326846,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.499079,0.273036,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.524949,0.299941,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.525485,0.247646,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.525485,0.247646,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.524949,0.299941,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.473209,0.246131,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.499079,0.273036,0][-1.769,-0.85523,0.111925][-1.81447,-2.73231e-007,1.09901e-006][0.505608,0.226974,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.525485,0.247646,0][-1.769,-0.85523,0.111925][-1.81447,-2.73231e-007,1.09901e-006][0.505608,0.226974,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.499079,0.273036,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.755101,0.948163,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.755101,0.977971,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.791732,0.955292,0][-1.769,-0.85523,0.111925][-1.81447,-2.73231e-007,1.09901e-006][0.791732,0.970842,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.791732,0.955292,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.755101,0.977971,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.946548,0.226115,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.946548,0.255924,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.98318,0.233245,0][-2.23267,-0.363707,0.111926][-1.82742,-5.80898e-007,2.2137e-006][0.98318,0.248794,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.98318,0.233245,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.946548,0.255924,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.364812,0.230707,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.349214,0.303221,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.297429,0.306241,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.297429,0.306241,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.769,0.452645,0.202171][0,1.5708,0][0.661358,0.932186,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.661358,0.961995,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.713231,0.932186,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.713231,0.961995,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.713231,0.932186,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.661358,0.961995,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-1.769,0.452645,0.202171][0,1.5708,0][0.577225,0.301456,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.57776,0.249161,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.629086,0.30254,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.57776,0.249161,0][-1.769,0.452645,0.202171][0,1.5708,0][0.577225,0.301456,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.525485,0.247646,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-2.23267,-0.363707,0.111926][-1.82742,-5.80898e-007,2.2137e-006][0.558928,0.229576,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.57776,0.249161,0][-2.23267,-0.363707,0.111926][-1.82742,-5.80898e-007,2.2137e-006][0.558928,0.229576,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.923705,0.605729,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.923704,0.635538,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.984758,0.612859,0][-3.00546,0.318591,0.111926][-1.66807,-0.276427,2.02067e-006][0.984758,0.628408,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.984758,0.612859,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.923704,0.635538,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.297429,0.306241,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-3.12779,1.05679,-0.175136][-1.43125,-0.237181,0][0.237333,0.267375,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.283369,0.230289,0][-3.12779,1.05679,-0.175136][-1.43125,-0.237181,0][0.237333,0.267375,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.139448,0.90257,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.139448,0.932379,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.210166,0.90257,0][-3.12779,1.05679,-0.175136][-1.43125,-0.237181,0][0.210166,0.932379,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.210166,0.90257,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.139448,0.932379,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.57776,0.249161,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.629086,0.30254,0][-3.00546,0.318591,0.111926][-1.66807,-0.276427,2.02067e-006][0.640299,0.226115,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.687688,0.261456,0][-3.00546,0.318591,0.111926][-1.66807,-0.276427,2.02067e-006][0.640299,0.226115,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.629086,0.30254,0][-0.36668,0.925086,-1.2584][0,0,0][0.551425,0.788092,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.569795,0.814863,0][0.00678761,1.81092,-1.22396][-0.0570781,0.0394964,-0.396988][0.621462,0.788197,0][0.0067878,2.19029,-1.03936][-0.562134,0.116578,-0.239581][0.651958,0.801651,0][0.00678761,1.81092,-1.22396][-0.0570781,0.0394964,-0.396988][0.621462,0.788197,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.569795,0.814863,0][0.00678763,0.310982,-1.16759][0.132289,-0.0786685,1.15303][0.736403,0.193602,0][0.0067878,2.19029,-1.03936][-0.562134,0.116578,-0.239581][0.884876,0.193602,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.747595,0.167314,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.802276,0.172154,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.747595,0.167314,0][0.0067878,2.19029,-1.03936][-0.562134,0.116578,-0.239581][0.884876,0.193602,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.264772,0.494023,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.264772,0.494023,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.249716,0.529195,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.249716,0.529195,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.264772,0.494023,0][-0.709891,0.925086,-1.10166][0,0,0][0.249716,0.529195,0][-0.709891,0.925086,-1.10166][0,0,0][0.249716,0.529195,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.264772,0.494023,0][-0.36668,0.925086,-1.2584][0,0,0][0.237333,0.50208,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.747595,0.143154,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.747595,0.143154,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.802276,0.172154,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.802276,0.172154,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.747595,0.143154,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.802276,0.172154,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.802276,0.172154,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.747595,0.143154,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.747595,0.167314,0][-0.995041,0.925086,-0.854572][0,0,0][0.269237,0.551723,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-0.709891,0.925086,-1.10166][0,0,0][0.249716,0.529195,0][-0.709891,0.925086,-1.10166][0,0,0][0.249716,0.529195,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.249716,0.529195,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.249716,0.529195,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-0.724265,1.14764,-0.61881][0,0,0][0.287863,0.530331,0][-0.724265,1.14764,-0.61881][0,0,0][0.214206,0.153268,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.159299,0.181811,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.159299,0.181811,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-0.724265,1.14764,-0.61881][0,0,0][0.287863,0.530331,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.294314,0.567839,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.294314,0.567839,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-1.19903,0.925086,-0.537161][0,0,0][0.294314,0.567839,0][-1.19903,0.925086,-0.537161][0,0,0][0.294314,0.567839,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-0.995041,0.925086,-0.854572][0,0,0][0.269237,0.551723,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-0.724265,1.14764,-0.61881][0,0,0][0.214206,0.153268,0][-0.724265,1.14764,-0.61881][0,0,0][0.214206,0.153268,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-1.30533,0.925086,-0.175137][0,0,0][0.322915,0.576237,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.19903,0.925086,-0.537161][0,0,0][0.294314,0.567839,0][-1.19903,0.925086,-0.537161][0,0,0][0.294314,0.567839,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.294314,0.567839,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.294314,0.567839,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-0.94705,1.14478,-0.123624][0.446768,-0.512427,0][0.326985,0.547931,0][-0.94705,1.14478,-0.123624][0.446768,-0.512427,0][0.21398,0.114146,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.326985,0.547931,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.352724,0.576237,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.352724,0.576237,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.30533,0.925086,0.202171][0,0,0][0.352724,0.576237,0][-1.30533,0.925086,0.202171][0,0,0][0.352724,0.576237,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.30533,0.925086,-0.175137][0,0,0][0.322915,0.576237,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.21398,0.114146,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.21398,0.114146,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-1.19903,0.925086,0.564196][0,0,0][0.381325,0.567839,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-1.30533,0.925086,0.202171][0,0,0][0.352724,0.576237,0][-1.30533,0.925086,0.202171][0,0,0][0.352724,0.576237,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.352724,0.576237,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.352724,0.576237,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-0.869776,1.14478,0.413831][0,0,0][0.369446,0.541826,0][-0.869776,1.14478,0.413831][0,0,0][0.21398,0.0716854,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-0.869776,1.14478,0.413831][0,0,0][0.369446,0.541826,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.406402,0.551723,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.406402,0.551723,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-0.995041,0.925086,0.881607][0,0,0][0.406402,0.551723,0][-0.995041,0.925086,0.881607][0,0,0][0.406402,0.551723,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-1.19903,0.925086,0.564196][0,0,0][0.381325,0.567839,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.159299,0.0422055,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-0.869776,1.14478,0.413831][0,0,0][0.21398,0.0716854,0][-0.869776,1.14478,0.413831][0,0,0][0.21398,0.0716854,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-0.709891,0.925086,1.12869][0,0,0][0.425923,0.529195,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.995041,0.925086,0.881607][0,0,0][0.406402,0.551723,0][-0.995041,0.925086,0.881607][0,0,0][0.406402,0.551723,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.406402,0.551723,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.406402,0.551723,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.514199,1.14478,0.824188][0,0,0][0.401866,0.513734,0][-0.514199,1.14478,0.824188][0,0,0][0.898781,0.513734,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.8441,0.543095,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.8441,0.543095,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.8441,0.543095,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.8441,0.543095,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.8441,0.523023,0][-0.514199,1.14478,0.824188][0,0,0][0.401866,0.513734,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.438306,0.50208,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.438306,0.50208,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.366679,0.925086,1.28543][0,0,0][0.438306,0.50208,0][-0.366679,0.925086,1.28543][0,0,0][0.438306,0.50208,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.709891,0.925086,1.12869][0,0,0][0.425923,0.529195,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][-0.514199,1.14478,0.824188][0,0,0][0.898781,0.513734,0][-0.514199,1.14478,0.824188][0,0,0][0.898781,0.513734,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.8441,0.523023,0][0.00678738,0.925086,1.33913][0,0,0][0.442548,0.472575,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.414039,0.472575,0][-0.366679,0.925086,1.28543][0,0,0][0.438306,0.50208,0][-0.366679,0.925086,1.28543][0,0,0][0.438306,0.50208,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.414039,0.472575,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.438306,0.50208,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.438306,0.50208,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.414039,0.472575,0][0.0067875,1.14366,0.978267][0,0,0][0.414039,0.472575,0][0.0067875,1.14366,0.978267][0,0,0][0.898693,0.472575,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.898693,0.472575,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.898693,0.472575,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.898693,0.472575,0][0.00678741,0.452645,1.19462][0.135937,-0.296016,-0.945461][0.8441,0.472575,0][-0.32647,1.66193,-0.514023][0.017655,0.294157,-0.380369][0.416124,0.84422,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.452374,0.881142,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.492593,0.869003,0][-0.32647,1.66193,-0.514023][0.017655,0.294157,-0.380369][0.700219,0.734911,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.805378,0.737498,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.747709,0.714369,0][-0.32647,1.66193,-0.514023][0.017655,0.294157,-0.380369][0.265365,0.815368,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.237333,0.890707,0][-0.724265,1.14764,-0.61881][0,0,0][0.272007,0.866972,0][-0.32647,1.66193,-0.514023][0.017655,0.294157,-0.380369][0.108521,0.0336665,0][-0.724265,1.14764,-0.61881][0,0,0][0.0618006,0.0123174,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.01,0.0319369,0][-0.56433,1.66298,-0.241371][-0.195718,0.298447,-0.324552][0.417693,0.821803,0][-0.724265,1.14764,-0.61881][0,0,0][0.46438,0.844685,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.495773,0.822881,0][-0.56433,1.66298,-0.241371][-0.195718,0.298447,-0.324552][0.25492,0.123449,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-0.724265,1.14764,-0.61881][0,0,0][0.214206,0.153268,0][-0.56433,1.66298,-0.241371][-0.195718,0.298447,-0.324552][0.292734,0.819769,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.293893,0.899807,0][-0.94705,1.14478,-0.123624][0.446768,-0.512427,0][0.314894,0.866074,0][-0.56433,1.66298,-0.241371][-0.195718,0.298447,-0.324552][0.25492,0.123449,0][-0.94705,1.14478,-0.123624][0.446768,-0.512427,0][0.21398,0.114146,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-0.605237,1.65757,0.101513][-0.336953,0.298822,-0.169046][0.318737,0.814381,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.314894,0.866074,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.350525,0.888262,0][-0.605237,1.65757,0.101513][-0.336953,0.298822,-0.169046][0.254493,0.0963597,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.21398,0.114146,0][-0.605237,1.65757,0.101513][-0.336953,0.298822,-0.169046][0.445253,0.71519,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.416124,0.790175,0][-0.869776,1.14478,0.413831][0,0,0][0.450971,0.766709,0][-0.605237,1.65757,0.101513][-0.336953,0.298822,-0.169046][0.254493,0.0963597,0][-0.869776,1.14478,0.413831][0,0,0][0.21398,0.0716854,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-0.460506,1.65757,0.41843][-0.374856,0.298822,0.0399602][0.984989,0.810439,0][-0.869776,1.14478,0.413831][0,0,0][0.951195,0.788092,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.916525,0.809657,0][-0.460506,1.65757,0.41843][-0.374856,0.298822,0.0399602][0.416124,0.931924,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.521178,0.933451,0][-0.869776,1.14478,0.413831][0,0,0][0.463385,0.910634,0][-0.460506,1.65757,0.41843][-0.374856,0.298822,0.0399602][0.471546,0.719626,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.472493,0.799684,0][-0.514199,1.14478,0.824188][0,0,0][0.493846,0.766082,0][-0.460506,1.65757,0.41843][-0.374856,0.298822,0.0399602][0.934413,0.732717,0][-0.514199,1.14478,0.824188][0,0,0][0.88612,0.714369,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.83487,0.733661,0][-0.16563,1.65744,0.60711][-0.293444,0.299706,0.236604][0.498159,0.714369,0][-0.514199,1.14478,0.824188][0,0,0][0.493846,0.766082,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.529306,0.78852,0][-0.16563,1.65744,0.60711][-0.293444,0.299706,0.236604][0.939283,0.486196,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][-0.514199,1.14478,0.824188][0,0,0][0.898781,0.513734,0][-0.16563,1.65744,0.60711][-0.293444,0.299706,0.236604][0.496543,0.965099,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.416124,0.962943,0][0.0067875,1.14366,0.978267][0,0,0][0.449881,0.987806,0][-0.16563,1.65744,0.60711][-0.293444,0.299706,0.236604][0.939283,0.486196,0][0.0067875,1.14366,0.978267][0,0,0][0.898693,0.472575,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][0.00678806,0.925086,-1.31209][0.444024,0.152563,-3.08825][0.744624,0.551723,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.00678805,0.210332,-1.31209][0.172432,0,-1.19929][0.688155,0.551723,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.699347,0.522218,0][0.00678805,0.210332,-1.31209][0.172432,0,-1.19929][0.688155,0.551723,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.380255,0.925086,-1.2584][0,0,0][0.744624,0.522218,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.00678805,1.81092,-1.22396][0.0570783,0.0394964,-0.396988][0.814608,0.551723,0][0.00678806,0.925086,-1.31209][0.444024,0.152563,-3.08825][0.744624,0.551723,0][0.00678805,1.81092,-1.22396][0.0570783,0.0394964,-0.396988][0.814608,0.551723,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.00678801,0.310982,-1.16759][0,0,0][0.471035,0.187849,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.00678801,0.310982,-1.16759][0,0,0][0.471035,0.187849,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.00678801,0.310982,-1.16759][0,0,0][0.471035,0.187849,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.274658,0.971569,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.237333,0.971569,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.237333,0.944454,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.237333,0.971569,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][0.493845,-0.577191,-1.22205][1.04801,-0.128238,-1.90829][0.305271,0.962595,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.274658,0.971569,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.274658,0.971569,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.744624,0.495102,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.699347,0.522218,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.707299,0.495102,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.699347,0.522218,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.744624,0.495102,0][0.723467,0.925086,-1.10166][0,0,0][0.202831,0.226115,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.202831,0.226115,0][0.380255,0.925086,-1.2584][0,0,0][0.215214,0.226115,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.215214,0.226115,0][0.380255,0.925086,-1.2584][0,0,0][0.215214,0.226115,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.202831,0.226115,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.58875,0.714369,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.619363,0.723343,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.626075,0.738528,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.619363,0.723343,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.339543,-1.43712,-1.11974][-0.652533,-3.60535e-007,1.42885][0.551425,0.714369,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.551425,0.738528,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.58875,0.714369,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.58875,0.714369,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.551425,0.738528,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.709807,0.233033,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.718974,0.261397,0][0.339543,-1.43712,-1.11974][-0.652533,-3.60535e-007,1.42885][0.721059,0.231104,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.729227,0.256376,0][0.339543,-1.43712,-1.11974][-0.652533,-3.60535e-007,1.42885][0.721059,0.231104,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.718974,0.261397,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.274658,0.921926,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.237333,0.944454,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.237333,0.921926,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.237333,0.944454,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.274658,0.921926,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.311983,0.921926,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.274658,0.921926,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.311983,0.921926,0][0.803559,-0.0197962,-1.05452][1.56669,-0.128817,-1.37085][0.349308,0.938127,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.356636,0.923702,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.311983,0.921926,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.356636,0.923702,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.744624,0.495102,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.744624,0.472574,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.707299,0.495102,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.703069,0.475937,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.707299,0.495102,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.744624,0.472574,0][1.00862,0.925086,-0.854572][0,0,0][0.183311,0.226115,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.183311,0.226115,0][0.723467,0.925086,-1.10166][0,0,0][0.202831,0.226115,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.202831,0.226115,0][0.723467,0.925086,-1.10166][0,0,0][0.202831,0.226115,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.183311,0.226115,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.626075,0.738528,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.626075,0.7586,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.663399,0.744856,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.670727,0.755956,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.663399,0.744856,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.626075,0.7586,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.58875,0.7586,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.626075,0.738528,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.626075,0.7586,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.626075,0.738528,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.58875,0.7586,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.551425,0.738528,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.551425,0.7586,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.58875,0.7586,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.551425,0.7586,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.718974,0.261397,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.735761,0.286029,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.729227,0.256376,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.744185,0.278323,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.729227,0.256376,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.735761,0.286029,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.183311,0.375414,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.183311,0.412739,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.158234,0.412739,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.183311,0.412739,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.183311,0.338089,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.183311,0.375414,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.183311,0.375414,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.183311,0.293437,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.183311,0.338089,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.183311,0.338089,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.183311,0.26767,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.183311,0.293437,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.183311,0.293437,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.183311,0.226115,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.183311,0.26767,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.183311,0.26767,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][1.2126,0.925086,-0.53716][0,0,0][0.158234,0.226115,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][1.00862,0.925086,-0.854572][0,0,0][0.183311,0.226115,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.183311,0.226115,0][1.00862,0.925086,-0.854572][0,0,0][0.183311,0.226115,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.129302,0.434866,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][0.856848,0.399108,-0.75994][0,0,0][0.155069,0.434866,0][1.08116,0.452645,-0.47713][0,0,0][0.159299,0.457209,0][0.856848,0.399108,-0.75994][0,0,0][0.155069,0.434866,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.0846494,0.434866,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.129302,0.434866,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.129302,0.434866,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.0473247,0.434866,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.0846494,0.434866,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.0846494,0.434866,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.01,0.434866,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.01,0.457209,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.0473247,0.434866,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.0473247,0.434866,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.01,0.457209,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.735761,0.286029,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.758808,0.304935,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.744185,0.278323,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.764719,0.295167,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.744185,0.278323,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.758808,0.304935,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.129633,0.375414,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.158234,0.412739,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.129633,0.412739,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.158234,0.412739,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.129633,0.375414,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.129633,0.338089,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.129633,0.375414,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.129633,0.338089,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.129633,0.300765,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.129633,0.338089,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.129633,0.300765,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.129633,0.300765,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.3189,0.925086,-0.175136][0,0,0][0.129633,0.226115,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.2126,0.925086,-0.53716][0,0,0][0.158234,0.226115,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][1.2126,0.925086,-0.53716][0,0,0][0.158234,0.226115,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.08116,0.452645,-0.47713][0,0,0][0.159299,0.457209,0][1.17587,0.452645,-0.154571][0,0,0][0.159299,0.482692,0][1.08116,0.452645,-0.47713][0,0,0][0.159299,0.457209,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.01,0.457209,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.01,0.482692,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.01,0.482692,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.758808,0.304935,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.786248,0.316581,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.764719,0.295167,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.789167,0.305544,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.764719,0.295167,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.786248,0.316581,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.129633,0.375414,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.129633,0.412739,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.0998239,0.412739,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.129633,0.412739,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.208798,0.58657,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.17899,0.58657,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.201669,0.615248,0][1.78258,-0.85523,0.111926][1.81447,-2.7323e-007,1.09901e-006][0.186119,0.615248,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.201669,0.615248,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.17899,0.58657,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.708301,0.13361,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.678492,0.13361,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.701171,0.16078,0][2.24625,-0.363707,0.111926][1.82742,-5.80898e-007,2.2137e-006][0.685622,0.16078,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.701171,0.16078,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.678492,0.13361,0][3.14137,1.05679,-0.175135][1.43125,-0.237182,1.8088e-006][0.132557,0.793943,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.132557,0.764134,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.0742364,0.786813,0][3.01903,0.318591,0.111927][1.66807,-0.276427,2.02067e-006][0.0742364,0.771264,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.0742364,0.786813,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.132557,0.764134,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.0998239,0.26344,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.3189,0.925086,0.202172][0,0,0][0.0998239,0.226115,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.3189,0.925086,-0.175136][0,0,0][0.129633,0.226115,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.3189,0.925086,-0.175136][0,0,0][0.129633,0.226115,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.17587,0.452645,-0.154571][0,0,0][0.159299,0.482692,0][1.17587,0.452645,0.181606][0,0,0][0.159299,0.509252,0][1.17587,0.452645,-0.154571][0,0,0][0.159299,0.482692,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.01,0.482692,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.01,0.509252,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.01,0.509252,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.786248,0.316581,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.815857,0.320025,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.789167,0.305544,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.815549,0.308612,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.789167,0.305544,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.815857,0.320025,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.0998239,0.412739,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.0712226,0.412739,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.0998239,0.412739,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.0998239,0.338089,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.0998239,0.300765,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.0998239,0.338089,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.0998239,0.338089,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.0998239,0.26344,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.0998239,0.300765,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.0998239,0.300765,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.0998239,0.26344,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.0998239,0.26344,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.2126,0.925086,0.564196][0,0,0][0.0712226,0.226115,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.3189,0.925086,0.202172][0,0,0][0.0998239,0.226115,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.3189,0.925086,0.202172][0,0,0][0.0998239,0.226115,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][1.17587,0.452645,0.181606][0,0,0][0.159299,0.509252,0][1.08116,0.452645,0.504165][0,0,0][0.159299,0.534735,0][1.17587,0.452645,0.181606][0,0,0][0.159299,0.509252,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.01,0.509252,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.01,0.534735,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.01,0.534735,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.815857,0.320025,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.845237,0.314987,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.815549,0.308612,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.841726,0.304124,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.815549,0.308612,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.845237,0.314987,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.0461458,0.375414,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.0712226,0.412739,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.0461458,0.412739,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.0712226,0.412739,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.0461458,0.375414,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.0461458,0.338089,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.0461458,0.375414,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.0461458,0.338089,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.0461458,0.300765,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.0461458,0.338089,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.0461458,0.300765,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.0461458,0.26344,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.0461458,0.300765,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.0461458,0.26344,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.0461458,0.26344,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][1.00862,0.925086,0.881607][0,0,0][0.0461458,0.226115,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][1.2126,0.925086,0.564196][0,0,0][0.0712226,0.226115,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.2126,0.925086,0.564196][0,0,0][0.0712226,0.226115,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.121974,0.557078,0][1.08116,0.452645,0.504165][0,0,0][0.159299,0.534735,0][0.899405,0.452645,0.786975][0,0,0][0.159299,0.557078,0][1.08116,0.452645,0.504165][0,0,0][0.159299,0.534735,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.121974,0.557078,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.0846494,0.557078,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.121974,0.557078,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.0846494,0.557078,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.0473247,0.557078,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.0846494,0.557078,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.0473247,0.557078,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.01,0.534735,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.01,0.557078,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.0473247,0.557078,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.01,0.557078,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.845237,0.314987,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.872008,0.301877,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.841726,0.304124,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.865579,0.292443,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.841726,0.304124,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.872008,0.301877,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.274658,0.684877,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.237333,0.684877,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.237333,0.662349,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.237333,0.684877,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.311983,0.684877,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.274658,0.684877,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.274658,0.684877,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.349307,0.684877,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.311983,0.684877,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.311983,0.684877,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.386632,0.684877,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.349307,0.684877,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.349307,0.684877,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.423957,0.684877,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.423957,0.662349,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.386632,0.684877,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.386632,0.684877,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.423957,0.662349,0][0.723466,0.925086,1.12869][0,0,0][0.0266252,0.226115,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.0266252,0.226115,0][1.00862,0.925086,0.881607][0,0,0][0.0461458,0.226115,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][1.00862,0.925086,0.881607][0,0,0][0.0461458,0.226115,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.0266252,0.226115,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.349308,0.714369,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.899405,0.452645,0.786975][0,0,0][0.386632,0.714369,0][0.645339,0.452645,1.00712][0,0,0][0.386632,0.734441,0][0.899405,0.452645,0.786975][0,0,0][0.386632,0.714369,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.311983,0.714369,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.349308,0.714369,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.349308,0.714369,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.274658,0.714369,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.311983,0.714369,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.311983,0.714369,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.237333,0.714369,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.237333,0.734441,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.274658,0.714369,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.274658,0.714369,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.237333,0.734441,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.872008,0.301877,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.894001,0.281755,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.865579,0.292443,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.885174,0.274514,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.865579,0.292443,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.894001,0.281755,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.237333,0.662349,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.237333,0.635234,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.237333,0.662349,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.423957,0.662349,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.423957,0.635234,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.423957,0.635234,0][0.380254,0.925086,1.28543][0,0,0][0.0142422,0.226115,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.0142422,0.226115,0][0.723466,0.925086,1.12869][0,0,0][0.0266252,0.226115,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.0266252,0.226115,0][0.723466,0.925086,1.12869][0,0,0][0.0266252,0.226115,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.0142422,0.226115,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.645339,0.452645,1.00712][0,0,0][0.386632,0.734441,0][0.339542,0.452645,1.14678][0,0,0][0.386632,0.758601,0][0.645339,0.452645,1.00712][0,0,0][0.386632,0.734441,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.237333,0.734441,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.237333,0.758601,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.237333,0.758601,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.894001,0.281755,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.909433,0.256252,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.885174,0.274514,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.898924,0.251792,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.885174,0.274514,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.909433,0.256252,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.0067875,-0.964678,1.33913][0.142314,0,0.989822][0.274658,0.605729,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.237333,0.635234,0][0.0067875,-1.43712,1.33913][0.223547,0,1.55481][0.237333,0.605729,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.237333,0.635234,0][0.0067875,-0.964678,1.33913][0.142314,0,0.989822][0.274658,0.605729,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.0067875,-0.492237,1.33913][0.142314,-1.24879e-007,0.989822][0.311983,0.605729,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.0067875,-0.964678,1.33913][0.142314,0,0.989822][0.274658,0.605729,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.0067875,-0.492237,1.33913][0.142314,-1.24879e-007,0.989822][0.311983,0.605729,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.0067875,-0.0197963,1.33913][0.142314,0,0.989821][0.349307,0.605729,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.0067875,-0.492237,1.33913][0.142314,-1.24879e-007,0.989822][0.311983,0.605729,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.0067875,-0.0197963,1.33913][0.142314,0,0.989821][0.349307,0.605729,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.0067875,0.452645,1.33913][0.142314,0,0.989821][0.386632,0.605729,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.0067875,-0.0197963,1.33913][0.142314,0,0.989821][0.349307,0.605729,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.0067875,0.452645,1.33913][0.142314,0,0.989821][0.386632,0.605729,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.423957,0.635234,0][0.0067875,0.925086,1.33913][0.142314,0,0.989821][0.423957,0.605729,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.0067875,0.452645,1.33913][0.142314,0,0.989821][0.386632,0.605729,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.0067875,0.925086,1.33913][0.142314,0,0.989821][0.423957,0.605729,0][0.0067875,0.925086,1.33913][0,0,0][0.01,0.226115,0][0.0067875,0.925086,1.33913][0.142314,0,0.989821][0.01,0.226115,0][0.380254,0.925086,1.28543][0,0,0][0.0142422,0.226115,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.0142422,0.226115,0][0.380254,0.925086,1.28543][0,0,0][0.0142422,0.226115,0][0.0067875,0.925086,1.33913][0.142314,0,0.989821][0.01,0.226115,0][0.00678752,0.452645,1.19462][0,0,0][0.284412,0.176657,0][0.00678752,0.452645,1.19462][0,0,0][0.284412,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.00678752,0.452645,1.19462][0,0,0][0.284412,0.176657,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.00678752,-0.0197963,1.19462][-0.142314,1.24879e-007,-0.989821][0.349308,0.78489,0][0.339542,0.452645,1.14678][0,0,0][0.386632,0.758601,0][0.00678752,0.452645,1.19462][0,0,0][0.386632,0.78489,0][0.339542,0.452645,1.14678][0,0,0][0.386632,0.758601,0][0.00678752,-0.0197963,1.19462][-0.142314,1.24879e-007,-0.989821][0.349308,0.78489,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.00678752,-0.492237,1.19462][-0.142314,0,-0.989822][0.311983,0.78489,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.00678752,-0.0197963,1.19462][-0.142314,1.24879e-007,-0.989821][0.349308,0.78489,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.00678752,-0.492237,1.19462][-0.142314,0,-0.989822][0.311983,0.78489,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.00678752,-0.964678,1.19462][-0.142314,0,-0.989822][0.274658,0.78489,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.00678752,-0.492237,1.19462][-0.142314,0,-0.989822][0.311983,0.78489,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.00678752,-0.964678,1.19462][-0.142314,0,-0.989822][0.274658,0.78489,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.237333,0.758601,0][0.00678752,-1.43712,1.19462][-0.223547,2.37856e-007,-1.55481][0.237333,0.78489,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.00678752,-0.964678,1.19462][-0.142314,0,-0.989822][0.274658,0.78489,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.00678752,-1.43712,1.19462][-0.223547,2.37856e-007,-1.55481][0.237333,0.78489,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.909433,0.256252,0][0.0067875,-1.43712,1.33913][0.223547,0,1.55481][0.917056,0.227434,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.898924,0.251792,0][0.00678752,-1.43712,1.19462][-0.223547,2.37856e-007,-1.55481][0.905716,0.226115,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.898924,0.251792,0][0.0067875,-1.43712,1.33913][0.223547,0,1.55481][0.917056,0.227434,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.573775,0.169376,0][0.339543,-1.43712,-1.11974][-0.652533,-3.60535e-007,1.42885][0.573775,0.18033,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.611099,0.18033,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.611099,0.18033,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.611099,0.169376,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.573775,0.169376,0][0.493845,-0.577191,-1.22205][1.04801,-0.128238,-1.90829][0.641712,0.172247,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.611099,0.169376,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.641712,0.184058,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.611099,0.18033,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.641712,0.184058,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.611099,0.169376,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.0923388,0.842379,0][0.493845,-0.577191,-1.22205][1.04801,-0.128238,-1.90829][0.112817,0.84286,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.0936117,0.831034,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.110462,0.830847,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.0936117,0.831034,0][0.493845,-0.577191,-1.22205][1.04801,-0.128238,-1.90829][0.112817,0.84286,0][0.803559,-0.0197962,-1.05452][1.56669,-0.128817,-1.37085][0.552308,0.406207,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.589814,0.405664,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.551218,0.396688,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.588722,0.396122,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.551218,0.396688,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.589814,0.405664,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.319672,0.971569,0][0.803559,-0.0197962,-1.05452][1.56669,-0.128817,-1.37085][0.341062,0.971321,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.320415,0.959506,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.338021,0.960337,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.320415,0.959506,0][0.803559,-0.0197962,-1.05452][1.56669,-0.128817,-1.37085][0.341062,0.971321,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.659577,0.718919,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.633764,0.718659,0][0.856848,0.399108,-0.75994][0,0,0][0.659996,0.730325,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.634223,0.730734,0][0.856848,0.399108,-0.75994][0,0,0][0.659996,0.730325,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.633764,0.718659,0][0.00678805,0.210332,-1.31209][0.172432,0,-1.19929][0.678724,0.856635,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.707377,0.864853,0][0.00678801,0.310982,-1.16759][0,0,0][0.683401,0.84622,0][0.339543,0.452645,-1.11974][0,0,0][0.708931,0.853542,0][0.00678801,0.310982,-1.16759][0,0,0][0.683401,0.84622,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.707377,0.864853,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.707377,0.864853,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.737186,0.864665,0][0.339543,0.452645,-1.11974][0,0,0][0.708931,0.853542,0][0.64534,0.452645,-0.980089][0,0,0][0.73549,0.853375,0][0.339543,0.452645,-1.11974][0,0,0][0.708931,0.853542,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.737186,0.864665,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.737186,0.864665,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.762667,0.85471,0][0.64534,0.452645,-0.980089][0,0,0][0.73549,0.853375,0][0.856848,0.399108,-0.75994][0,0,0][0.757859,0.844355,0][0.64534,0.452645,-0.980089][0,0,0][0.73549,0.853375,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.762667,0.85471,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.263203,0.396646,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.237333,0.369741,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.269732,0.350584,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.237333,0.369741,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.289073,0.423551,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.263203,0.396646,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.263203,0.396646,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.314943,0.450456,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.341349,0.425066,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.289073,0.423551,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.289073,0.423551,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.341349,0.425066,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.202577,0.714795,0][1.78258,0.452645,0.202172][0,1.5708,0][0.165945,0.714795,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.202577,0.744603,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.165945,0.744603,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.202577,0.744603,0][1.78258,0.452645,0.202172][0,1.5708,0][0.165945,0.714795,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.66459,0.0836383,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.639743,0.111491,0][1.78258,0.452645,0.202172][0,1.5708,0][0.612408,0.0871052,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.639743,0.111491,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.689437,0.0557858,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.662101,0.0314001,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.66459,0.0836383,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.66459,0.0836383,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.662101,0.0314001,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.714284,0.0279332,0][1.78258,-0.85523,0.111926][1.81447,-2.7323e-007,1.09901e-006][0.681192,0.01,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.689437,0.0557858,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.662101,0.0314001,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.689437,0.0557858,0][1.78258,-0.85523,0.111926][1.81447,-2.7323e-007,1.09901e-006][0.681192,0.01,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.960336,0.657657,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.923704,0.664786,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.960336,0.687465,0][1.78258,-0.85523,0.111926][1.81447,-2.7323e-007,1.09901e-006][0.923705,0.680336,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.960336,0.687465,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.923704,0.664786,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.251735,0.0627659,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.244605,0.026134,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.221926,0.0627659,0][2.24625,-0.363707,0.111926][1.82742,-5.80898e-007,2.2137e-006][0.229056,0.026134,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.221926,0.0627659,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.244605,0.026134,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.323053,0.353186,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.341349,0.425066,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.39321,0.42615,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.39321,0.42615,0][1.78258,0.452645,0.202172][0,1.5708,0][0.755101,0.918671,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.806973,0.918671,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.755101,0.888862,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.806973,0.888862,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.755101,0.888862,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.806973,0.918671,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.609919,0.0348669,0][1.78258,0.452645,0.202172][0,1.5708,0][0.612408,0.0871052,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.560623,0.090126,0][1.78258,0.452645,0.202172][0,1.5708,0][0.612408,0.0871052,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.609919,0.0348669,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.662101,0.0314001,0][2.24625,-0.363707,0.111926][1.82742,-5.80898e-007,2.2137e-006][0.628006,0.0145918,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.609919,0.0348669,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][2.24625,-0.363707,0.111926][1.82742,-5.80898e-007,2.2137e-006][0.628006,0.0145918,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.198229,0.9595,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.137176,0.96663,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.198229,0.989309,0][3.01903,0.318591,0.111927][1.66807,-0.276427,2.02067e-006][0.137176,0.982179,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.198229,0.989309,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.137176,0.96663,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.39321,0.42615,0][3.14137,1.05679,-0.175135][1.43125,-0.237182,1.8088e-006][0.451812,0.385066,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.404423,0.349725,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][3.14137,1.05679,-0.175135][1.43125,-0.237182,1.8088e-006][0.451812,0.385066,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.985085,0.143154,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.914367,0.143154,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.985085,0.172963,0][3.14137,1.05679,-0.175135][1.43125,-0.237182,1.8088e-006][0.914367,0.172963,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.985085,0.172963,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.914367,0.143154,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.609919,0.0348669,0][3.01903,0.318591,0.111927][1.66807,-0.276427,2.02067e-006][0.546563,0.0141735,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.560623,0.090126,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.500527,0.05126,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.560623,0.090126,0][3.01903,0.318591,0.111927][1.66807,-0.276427,2.02067e-006][0.546563,0.0141735,0][0.380255,0.925086,-1.2584][0,0,0][0.01,0.930008,0][0.00678805,1.81092,-1.22396][0.0570783,0.0394964,-0.396988][0.0799844,0.927288,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.0273566,0.90257,0][0.0067878,2.19029,-1.03936][0.562134,0.116578,-0.239581][0.109956,0.912704,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.0273566,0.90257,0][0.00678805,1.81092,-1.22396][0.0570783,0.0394964,-0.396988][0.0799844,0.927288,0][0.00678801,0.310982,-1.16759][0,0,0][0.500527,0.13361,0][0.339543,0.452645,-1.11974][0,0,0][0.511719,0.159899,0][0.0067878,2.19029,-1.03936][0.562134,0.116578,-0.239581][0.649,0.13361,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.5664,0.155059,0][0.0067878,2.19029,-1.03936][0.562134,0.116578,-0.239581][0.649,0.13361,0][0.339543,0.452645,-1.11974][0,0,0][0.511719,0.159899,0][0.380255,0.925086,-1.2584][0,0,0][0.736403,0.084157,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.763841,0.0922135,0][0.723467,0.925086,-1.10166][0,0,0][0.748786,0.0570419,0][0.723467,0.925086,-1.10166][0,0,0][0.748786,0.0570419,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.763841,0.0922135,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.748786,0.0570419,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.748786,0.0570419,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.763841,0.0922135,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.763841,0.0922135,0][0.339543,0.452645,-1.11974][0,0,0][0.511719,0.159899,0][0.64534,0.452645,-0.980089][0,0,0][0.511719,0.184058,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.5664,0.155059,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.5664,0.155059,0][0.64534,0.452645,-0.980089][0,0,0][0.511719,0.184058,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.5664,0.155059,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.5664,0.155059,0][0.64534,0.452645,-0.980089][0,0,0][0.511719,0.184058,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.511719,0.184058,0][1.00862,0.925086,-0.854572][0,0,0][0.768307,0.034514,0][0.723467,0.925086,-1.10166][0,0,0][0.748786,0.0570419,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][0.73784,1.14764,-0.618809][0,0,0][0.786933,0.0559064,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.748786,0.0570419,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][0.723467,0.925086,-1.10166][0,0,0][0.748786,0.0570419,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.748786,0.0570419,0][0.856848,0.399108,-0.75994][0,0,0][0.0272135,0.684738,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][0.64534,0.452645,-0.980089][0,0,0][0.01,0.67983,0][0.64534,0.452645,-0.980089][0,0,0][0.01,0.67983,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.01,0.67983,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.01,0.67983,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][0.73784,1.14764,-0.618809][0,0,0][0.0406732,0.626083,0][1.00862,0.925086,-0.854572][0,0,0][0.768307,0.034514,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][1.2126,0.925086,-0.53716][0,0,0][0.793383,0.0183981,0][1.2126,0.925086,-0.53716][0,0,0][0.793383,0.0183981,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.793383,0.0183981,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.793383,0.0183981,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][0.73784,1.14764,-0.618809][0,0,0][0.786933,0.0559064,0][0.856848,0.399108,-0.75994][0,0,0][0.0272135,0.684738,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][0.73784,1.14764,-0.618809][0,0,0][0.0406732,0.626083,0][0.73784,1.14764,-0.618809][0,0,0][0.0406732,0.626083,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][1.3189,0.925086,-0.175136][0,0,0][0.821985,0.01,0][1.2126,0.925086,-0.53716][0,0,0][0.793383,0.0183981,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][0.960626,1.14478,-0.123624][-0.446768,-0.512427,0][0.826054,0.0383054,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.793383,0.0183981,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][1.2126,0.925086,-0.53716][0,0,0][0.793383,0.0183981,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.793383,0.0183981,0][1.17587,0.452645,-0.154571][0,0,0][0.0751691,0.682386,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][0.960626,1.14478,-0.123624][-0.446768,-0.512427,0][0.0797558,0.627843,0][1.3189,0.925086,-0.175136][0,0,0][0.821985,0.01,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][1.3189,0.925086,0.202172][0,0,0][0.851793,0.01,0][1.3189,0.925086,0.202172][0,0,0][0.851793,0.01,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.851793,0.01,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.851793,0.01,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.826054,0.0383054,0][1.17587,0.452645,-0.154571][0,0,0][0.0751691,0.682386,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.0797558,0.627843,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.0797558,0.627843,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][1.2126,0.925086,0.564196][0,0,0][0.880395,0.0183981,0][1.3189,0.925086,0.202172][0,0,0][0.851793,0.01,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][0.883351,1.14478,0.413831][0,0,0][0.868515,0.0444104,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.851793,0.01,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][1.3189,0.925086,0.202172][0,0,0][0.851793,0.01,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.851793,0.01,0][1.08116,0.452645,0.504165][0,0,0][0.127172,0.684427,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][0.883351,1.14478,0.413831][0,0,0][0.122184,0.629508,0][1.2126,0.925086,0.564196][0,0,0][0.880395,0.0183981,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][1.00862,0.925086,0.881607][0,0,0][0.905472,0.034514,0][1.00862,0.925086,0.881607][0,0,0][0.905472,0.034514,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.905472,0.034514,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.905472,0.034514,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][0.883351,1.14478,0.413831][0,0,0][0.868515,0.0444104,0][1.08116,0.452645,0.504165][0,0,0][0.127172,0.684427,0][0.899405,0.452645,0.786975][0,0,0][0.149498,0.685303,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][0.899405,0.452645,0.786975][0,0,0][0.149498,0.685303,0][0.883351,1.14478,0.413831][0,0,0][0.122184,0.629508,0][0.883351,1.14478,0.413831][0,0,0][0.122184,0.629508,0][0.899405,0.452645,0.786975][0,0,0][0.149498,0.685303,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.149498,0.685303,0][0.723466,0.925086,1.12869][0,0,0][0.924992,0.057042,0][1.00862,0.925086,0.881607][0,0,0][0.905472,0.034514,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][0.527774,1.14478,0.824188][0,0,0][0.900935,0.0725024,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.905472,0.034514,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][1.00862,0.925086,0.881607][0,0,0][0.905472,0.034514,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.905472,0.034514,0][0.645339,0.452645,1.00712][0,0,0][0.88789,0.369797,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.899405,0.452645,0.786975][0,0,0][0.88789,0.349725,0][0.899405,0.452645,0.786975][0,0,0][0.88789,0.349725,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.88789,0.349725,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.88789,0.349725,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.527774,1.14478,0.824188][0,0,0][0.942571,0.379086,0][0.723466,0.925086,1.12869][0,0,0][0.924992,0.057042,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][0.380254,0.925086,1.28543][0,0,0][0.937375,0.084157,0][0.380254,0.925086,1.28543][0,0,0][0.937375,0.084157,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.937375,0.084157,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.937375,0.084157,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][0.527774,1.14478,0.824188][0,0,0][0.900935,0.0725024,0][0.645339,0.452645,1.00712][0,0,0][0.88789,0.369797,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.527774,1.14478,0.824188][0,0,0][0.942571,0.379086,0][0.527774,1.14478,0.824188][0,0,0][0.942571,0.379086,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.0067875,0.925086,1.33913][0,0,0][0.941617,0.113662,0][0.380254,0.925086,1.28543][0,0,0][0.937375,0.084157,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.913108,0.113662,0][0.0067875,1.14366,0.978267][0,0,0][0.913108,0.113662,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.913108,0.113662,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.937375,0.084157,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.913108,0.113662,0][0.380254,0.925086,1.28543][0,0,0][0.937375,0.084157,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.937375,0.084157,0][0.00678752,0.452645,1.19462][0,0,0][0.88789,0.420245,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.942483,0.420245,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.942483,0.420245,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.942483,0.420245,0][0.0067875,1.14366,0.978267][0,0,0][0.942483,0.420245,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.617035,0.966699,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.585881,0.942872,0][0.340046,1.66193,-0.514023][-0.0176549,0.294157,-0.380369][0.551425,0.965365,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.609957,0.844355,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.551425,0.865205,0][0.340046,1.66193,-0.514023][-0.0176549,0.294157,-0.380369][0.656605,0.866743,0][0.73784,1.14764,-0.618809][0,0,0][0.749278,0.386111,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.710737,0.369372,0][0.340046,1.66193,-0.514023][-0.0176549,0.294157,-0.380369][0.752529,0.438039,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.01,0.174988,0][0.73784,1.14764,-0.618809][0,0,0][0.0609916,0.196623,0][0.340046,1.66193,-0.514023][-0.0176549,0.294157,-0.380369][0.108513,0.177122,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.764549,0.349725,0][0.73784,1.14764,-0.618809][0,0,0][0.749278,0.386111,0][0.577905,1.66298,-0.241371][0.195718,0.298447,-0.324552][0.778568,0.428534,0][0.73784,1.14764,-0.618809][0,0,0][0.0406732,0.626083,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][0.577905,1.66298,-0.241371][0.195718,0.298447,-0.324552][0.0720655,0.58657,0][0.960626,1.14478,-0.123624][-0.446768,-0.512427,0][0.791559,0.378872,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.764549,0.349725,0][0.577905,1.66298,-0.241371][0.195718,0.298447,-0.324552][0.778568,0.428534,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][0.960626,1.14478,-0.123624][-0.446768,-0.512427,0][0.0797558,0.627843,0][0.577905,1.66298,-0.241371][0.195718,0.298447,-0.324552][0.0720655,0.58657,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.822344,0.350337,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.791559,0.378872,0][0.618812,1.65757,0.101513][0.336953,0.298822,-0.169046][0.805122,0.428901,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.0797558,0.627843,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][0.618812,1.65757,0.101513][0.336953,0.298822,-0.169046][0.0991171,0.588059,0][0.883351,1.14478,0.413831][0,0,0][0.710615,0.658156,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.745418,0.681687,0][0.618812,1.65757,0.101513][0.336953,0.298822,-0.169046][0.716428,0.606648,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][0.883351,1.14478,0.413831][0,0,0][0.122184,0.629508,0][0.618812,1.65757,0.101513][0.336953,0.298822,-0.169046][0.0991171,0.588059,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.865771,0.371012,0][0.883351,1.14478,0.413831][0,0,0][0.829903,0.386935,0][0.474082,1.65757,0.41843][0.374856,0.298822,0.0399603][0.825378,0.438544,0][0.883351,1.14478,0.413831][0,0,0][0.0678355,0.9595,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.01,0.982211,0][0.474082,1.65757,0.41843][0.374856,0.298822,0.0399603][0.115057,0.980878,0][0.527774,1.14478,0.824188][0,0,0][0.696138,0.910067,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.732982,0.890397,0][0.474082,1.65757,0.41843][0.374856,0.298822,0.0399603][0.661358,0.888862,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.68145,0.790867,0][0.527774,1.14478,0.824188][0,0,0][0.733384,0.808231,0][0.474082,1.65757,0.41843][0.374856,0.298822,0.0399603][0.780958,0.788092,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.632239,0.679822,0][0.527774,1.14478,0.824188][0,0,0][0.667741,0.65745,0][0.179205,1.65744,0.607111][0.293444,0.299707,0.236604][0.663524,0.605729,0][0.527774,1.14478,0.824188][0,0,0][0.942571,0.379086,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.179205,1.65744,0.607111][0.293444,0.299707,0.236604][0.983073,0.406624,0][0.0067875,1.14366,0.978267][0,0,0][0.597161,0.91338,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.631866,0.88986,0][0.179205,1.65744,0.607111][0.293444,0.299707,0.236604][0.551425,0.888862,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.0067875,1.14366,0.978267][0,0,0][0.942483,0.420245,0][0.179205,1.65744,0.607111][0.293444,0.299707,0.236604][0.983073,0.406624,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/DominoCrown.mesh b/charcustom/hats/fonts/DominoCrown.mesh
new file mode 100644
index 0000000..88e0ae1
--- /dev/null
+++ b/charcustom/hats/fonts/DominoCrown.mesh
@@ -0,0 +1,3 @@
+version 1.00
+164
+[-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.106193,0.9303,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.2048,0.9303,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.2048,0.9303,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.212386,0.950739,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-0.437624,0.941274,-1.2095][0,1,0][0.784085,0.914096,0][-0.370297,0.941274,-1.02452][0,1,0][0.792079,0.89189,0][0.370297,0.941274,-1.02452][0,1,0][0.88087,0.891576,0][0.370297,0.941274,-1.02452][0,1,0][0.88087,0.891576,0][0.437624,0.941274,-1.2095][0,1,0][0.889021,0.913725,0][-0.437624,0.941274,-1.2095][0,1,0][0.784085,0.914096,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.460144,0.662413,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.456108,0.63916,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.5449,0.63916,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.5449,0.63916,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.540864,0.662413,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.460144,0.662413,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.151076,0.023601,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.151076,0,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.249683,0.0358902,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.249683,0.0358902,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.234513,0.0539696,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.151076,0.023601,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.106193,0.971178,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.212386,0.950739,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.212386,0.950739,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.2048,0.971178,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.106193,0.971178,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.913237,0.226709,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.9092,0.249962,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.804264,0.249962,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.804264,0.249962,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.800228,0.226709,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.913237,0.226709,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.19717,0.889166,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.181617,0.906917,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.0988478,0.874772,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.0988478,0.874772,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.0993522,0.851176,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.19717,0.889166,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.795423,0.656136,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.787016,0.678188,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.707785,0.662756,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.707785,0.662756,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.708269,0.63916,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.795423,0.656136,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.540864,0.662413,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.5449,0.63916,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.612919,0.666377,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.612919,0.666377,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.602699,0.687156,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.540864,0.662413,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.234513,0.0539696,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.249683,0.0358902,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.302151,0.126767,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.302151,0.126767,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.278909,0.130866,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.234513,0.0539696,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.786909,0.353109,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.790945,0.376363,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.677937,0.376363,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.677937,0.376363,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.681973,0.353109,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.786909,0.353109,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.800228,0.226709,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.804264,0.249962,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.723879,0.282128,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.723879,0.282128,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.713659,0.261349,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.800228,0.226709,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.0993522,0.851176,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.0988478,0.874772,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.0147805,0.90335,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.0147805,0.90335,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0,0.884951,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.0993522,0.851176,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.708269,0.63916,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.707785,0.662756,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.64236,0.67522,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.64236,0.67522,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.636302,0.65287,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.708269,0.63916,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.539681,0.785298,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.547217,0.807664,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.459464,0.82121,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.459464,0.82121,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.459906,0.797613,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.539681,0.785298,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.278909,0.130866,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.302151,0.126767,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.283929,0.230109,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.283929,0.230109,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.26349,0.218309,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.278909,0.130866,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.681973,0.353109,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.677937,0.376363,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.591368,0.341723,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.591368,0.341723,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.601587,0.320944,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.681973,0.353109,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.503295,0.973295,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.507331,0.950042,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.612267,0.950042,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.612267,0.950042,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.616303,0.973295,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.503295,0.973295,0][1.26009,0.941274,0.215049][0,1,0][0.530111,0.221131,0][1.06623,0.941274,0.180866][0,1,0][0.55055,0.20933,0][0.695931,0.941274,0.82224][0,1,0][0.618568,0.266405,0][0.695931,0.941274,0.82224][0,1,0][0.618568,0.266405,0][0.822464,0.941274,0.973036][0,1,0][0.610496,0.288582,0][1.26009,0.941274,0.215049][0,1,0][0.530111,0.221131,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.459906,0.797613,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.459464,0.82121,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.38809,0.804688,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.38809,0.804688,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.39502,0.782593,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.459906,0.797613,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.26349,0.218309,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.283929,0.230109,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.203544,0.297561,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.203544,0.297561,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.195472,0.275383,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.26349,0.218309,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.953234,0.844593,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.95727,0.867846,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.844262,0.867846,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.844262,0.867846,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.848298,0.844593,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.953234,0.844593,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.333561,0.871615,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.329525,0.892054,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.224589,0.892054,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.224589,0.892054,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.220553,0.871615,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.333561,0.871615,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.788582,0.435287,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.773475,0.453419,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.689931,0.423346,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.689931,0.423346,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.689848,0.399745,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.788582,0.435287,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.973449,0.337919,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.965042,0.359972,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.885811,0.34454,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.885811,0.34454,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.886295,0.320944,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.973449,0.337919,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.780017,0.713243,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.787553,0.735609,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.6998,0.749155,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.6998,0.749155,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.700241,0.725558,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.780017,0.713243,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.195472,0.275383,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.203544,0.297561,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.0986076,0.297561,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.0986076,0.297561,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.10668,0.275383,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.195472,0.275383,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.329525,0.851176,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.333561,0.871615,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.220553,0.871615,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.220553,0.871615,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.224589,0.851176,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.329525,0.851176,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.820879,0.844593,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.816843,0.867846,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][0.711907,0.867846,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][0.711907,0.867846,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.707871,0.844593,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.820879,0.844593,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.689848,0.399745,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.689931,0.423346,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.606602,0.454009,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.606602,0.454009,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][0.591368,0.435984,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.689848,0.399745,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.886295,0.320944,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.885811,0.34454,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.820386,0.357004,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.820386,0.357004,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.814327,0.334654,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.886295,0.320944,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.700241,0.725558,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.6998,0.749155,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.628426,0.732633,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.628426,0.732633,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.635355,0.710538,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.700241,0.725558,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.10668,0.275383,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.0986076,0.297561,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.018222,0.230109,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.018222,0.230109,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.0386609,0.218309,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.10668,0.275383,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.756666,0.891576,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.760702,0.914829,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.647695,0.914829,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.647695,0.914829,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.65173,0.891576,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.756666,0.891576,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.38809,0.730977,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][0.39399,0.710538,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.497332,0.710538,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.497332,0.710538,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.38809,0.730977,0][-0.822465,0.941274,0.973036][0,1,0][0.647695,0.960212,0][-0.695932,0.941274,0.82224][0,1,0][0.656239,0.938212,0][-1.06623,0.941274,0.180866][0,1,0][0.74501,0.94011,0][-1.06623,0.941274,0.180866][0,1,0][0.74501,0.94011,0][-1.26009,0.941274,0.215048][0,1,0][0.752607,0.962455,0][-0.822465,0.941274,0.973036][0,1,0][0.647695,0.960212,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.39399,0.479376,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.38809,0.458937,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.475533,0.458937,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.475533,0.458937,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.473484,0.479376,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.39399,0.479376,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.0386609,0.218309,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.018222,0.230109,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0,0.126767,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0,0.126767,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.0232424,0.130866,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.0386609,0.218309,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.39399,0.751416,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.38809,0.730977,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0.497332,0.751416,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.39399,0.751416,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.497332,0.710538,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.588209,0.710538,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.588209,0.710538,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0.597249,0.730977,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.789874,0.569108,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.774543,0.587051,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.69138,0.55594,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.69138,0.55594,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.69159,0.53234,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.789874,0.569108,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.475533,0.499815,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.473484,0.479376,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.543389,0.479376,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.543389,0.479376,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.552429,0.499815,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.475533,0.499815,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.473484,0.479376,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.475533,0.458937,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.552429,0.458937,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.552429,0.458937,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.543389,0.479376,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.473484,0.479376,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.0232424,0.130866,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0,0.126767,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.052468,0.0358902,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.052468,0.0358902,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.0676384,0.0539696,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.0232424,0.130866,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0.497332,0.751416,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0.597249,0.730977,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0.597249,0.730977,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.588209,0.751416,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0.497332,0.751416,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0,0.950739,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.00758519,0.9303,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.106193,0.9303,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.106193,0.9303,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0,0.950739,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.69159,0.53234,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.69138,0.55594,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.607675,0.585563,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.607675,0.585563,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.592666,0.567349,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.69159,0.53234,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.38809,0.95585,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.392126,0.932597,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.472846,0.932597,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.472846,0.932597,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.476882,0.95585,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.38809,0.95585,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.398309,0.687156,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.38809,0.666377,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.456108,0.63916,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.456108,0.63916,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.460144,0.662413,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.398309,0.687156,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.0676384,0.0539696,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.052468,0.0358902,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.151076,0,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.151076,0,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.151076,0.023601,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.0676384,0.0539696,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.00758519,0.971178,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0,0.950739,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.106193,0.971178,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.00758519,0.971178,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0,0.707824,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][6.45723e-007,0.53234,0][-0.437624,0.941274,-1.2095][0,1,0][0.356913,0.532341,0][-0.437624,0.941274,-1.2095][0,1,0][0.356913,0.532341,0][0.437624,0.941274,-1.2095][0,1,0][0.356912,0.707825,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0,0.707824,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.684489,0.844593,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.684489,0.868193,0][-0.370297,0.941274,-1.02452][0,1,0][0.503295,0.868193,0][-0.370297,0.941274,-1.02452][0,1,0][0.503295,0.868193,0][-0.437624,0.941274,-1.2095][0,1,0][0.503295,0.844593,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.684489,0.844593,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.569284,0.53234,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.569284,0.615777,0][0.370297,0.941274,-1.02452][0,1,0][0.38809,0.615777,0][0.370297,0.941274,-1.02452][0,1,0][0.38809,0.615777,0][-0.370297,0.941274,-1.02452][0,1,0][0.38809,0.53234,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.569284,0.53234,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.751794,0.782593,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.751794,0.806194,0][0.437624,0.941274,-1.2095][0,1,0][0.5706,0.806194,0][0.437624,0.941274,-1.2095][0,1,0][0.5706,0.806194,0][0.370297,0.941274,-1.02452][0,1,0][0.5706,0.782593,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.751794,0.782593,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.772562,0.477392,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.772562,0.500993,0][1.06623,0.941274,0.180866][0,1,0][0.591368,0.500993,0][1.06623,0.941274,0.180866][0,1,0][0.591368,0.500993,0][1.26009,0.941274,0.215049][0,1,0][0.591368,0.477392,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.772562,0.477392,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.181194,0.739002,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.181194,0.827794,0][0.695931,0.941274,0.82224][0,1,0][0,0.827794,0][0.695931,0.941274,0.82224][0,1,0][0,0.827794,0][1.06623,0.941274,0.180866][0,1,0][0,0.739002,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.181194,0.739002,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.99213,0.710538,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.99213,0.734139,0][0.822464,0.941274,0.973036][0,1,0][0.810936,0.734139,0][0.822464,0.941274,0.973036][0,1,0][0.810936,0.734139,0][0.695931,0.941274,0.82224][0,1,0][0.810936,0.710538,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.99213,0.710538,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.325534,0.178152,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.325534,0,0][1.26009,0.941274,0.215049][0,1,0][0.682482,1.34526e-006,0][1.26009,0.941274,0.215049][0,1,0][0.682482,1.34526e-006,0][0.822464,0.941274,0.973036][0,1,0][0.682482,0.178153,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.325534,0.178152,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][1,0.63916,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][1,0.66276,0][-0.695932,0.941274,0.82224][0,1,0][0.818806,0.66276,0][-0.695932,0.941274,0.82224][0,1,0][0.818806,0.66276,0][-0.822465,0.941274,0.973036][0,1,0][0.818806,0.63916,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][1,0.63916,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.506728,0.20933,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.506728,0.296773,0][-1.06623,0.941274,0.180866][0,1,0][0.325534,0.296773,0][-1.06623,0.941274,0.180866][0,1,0][0.325534,0.296773,0][-0.695932,0.941274,0.82224][0,1,0][0.325534,0.20933,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.506728,0.20933,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.956371,0.782593,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.956371,0.805836,0][-1.26009,0.941274,0.215048][0,1,0][0.775177,0.805836,0][-1.26009,0.941274,0.215048][0,1,0][0.775177,0.805836,0][-1.06623,0.941274,0.180866][0,1,0][0.775177,0.782593,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.956371,0.782593,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0,0.501162,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][7.53343e-007,0.320944,0][-0.822465,0.941274,0.973036][0,1,0][0.356913,0.320945,0][-0.822465,0.941274,0.973036][0,1,0][0.356913,0.320945,0][-1.26009,0.941274,0.215048][0,1,0][0.356912,0.501163,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0,0.501162,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.567985,0.333853,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.567985,0.422645,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.475333,0.422645,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.475333,0.422645,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.475333,0.333853,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.567985,0.333853,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.981105,0.938212,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.981399,0.961811,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.89304,0.962912,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.89304,0.962912,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.892746,0.939313,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.981105,0.938212,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.946046,0.134152,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.904446,0.203326,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.834656,0.161355,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.834656,0.161355,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.946046,0.134152,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.906171,0.53234,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.91521,0.552779,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.838683,0.596962,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.838683,0.596962,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.829644,0.576523,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.906171,0.53234,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.776761,0.964831,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.775989,0.941243,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.868591,0.938212,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.868591,0.938212,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.869363,0.9618,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.776761,0.964831,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.752766,0.20062,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.713659,0.130006,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.784902,0.090551,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.784902,0.090551,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.824009,0.161165,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.752766,0.20062,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.254946,0.995664,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.243562,0.97499,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.324723,0.9303,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.324723,0.9303,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.336107,0.950974,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.254946,0.995664,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.297228,0.739002,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.297228,0.827794,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.204577,0.827794,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.204577,0.827794,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.204577,0.739002,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.297228,0.739002,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.503295,0.914832,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.50339,0.891981,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.594867,0.896014,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.594867,0.896014,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.594772,0.918865,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.503295,0.914832,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.791843,0,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.87255,0.00143996,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.871097,0.0828653,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.871097,0.0828653,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.79039,0.0814254,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.791843,0,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.468291,0.844593,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.479912,0.865032,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.399711,0.909214,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.399711,0.909214,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.38809,0.888775,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.468291,0.844593,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.811964,0.488537,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.811964,0.399745,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.904616,0.399745,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.904616,0.399745,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.904616,0.488537,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.811964,0.488537,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.834656,0.161355,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.824009,0.161165,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.824009,0.161165,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.784902,0.090551,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.784902,0.090551,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.79039,0.0814254,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.79039,0.0814254,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.871097,0.0828653,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.829644,0.576523,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.838683,0.596962,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.813257,0.596962,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.813257,0.596962,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.819157,0.576522,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.829644,0.576523,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.455679,0.435555,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.38809,0.391159,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.38809,0.36534,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.475333,0.422645,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.455679,0.435555,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.38809,0.36534,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.475333,0.333853,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.475333,0.422645,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.38809,0.36534,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.475333,0.333853,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.38809,0.36534,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.455679,0.320944,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.594772,0.918865,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.594867,0.896014,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.603836,0.891576,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.603836,0.891576,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.616518,0.908105,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.594772,0.918865,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.977014,0.0223488,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.969429,0,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.995248,0,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.995248,0,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.987663,0.0223488,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.977014,0.0223488,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/NinjaMask.mesh b/charcustom/hats/fonts/NinjaMask.mesh
new file mode 100644
index 0000000..4cced64
--- /dev/null
+++ b/charcustom/hats/fonts/NinjaMask.mesh
@@ -0,0 +1,3 @@
+version 1.00
+892
+[0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.375,0,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.375,0,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,0,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.641618,-1.09854,-0.941235][0.0986083,0.176726,-0.979308][0.583333,0,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.625,0,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.898993,0.913461,-0.621904][-0.663467,0.559097,-0.497215][0.625,0.25,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-0.898993,0.913461,-0.621904][-0.663467,0.559097,-0.497215][0.625,0.25,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.375,0.291667,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.625,0.291667,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.898993,0.913461,-0.621904][-0.663467,0.559097,-0.497215][0.625,0.25,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.625,0.291667,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.375,0.333333,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.375,0.291667,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.375,0.291667,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.625,0.333333,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.625,0.291667,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.625,0.333333,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.375,0.375,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.375,0.333333,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.375,0.333333,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.625,0.375,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.625,0.333333,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.625,0.375,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.375,0.416667,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.375,0.375,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.375,0.375,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.625,0.416667,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.625,0.375,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.625,0.416667,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.375,0.458333,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.375,0.416667,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.375,0.416667,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.625,0.458333,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.625,0.416667,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.625,0.458333,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.898983,0.913431,0.614927][0.662476,0.55737,0.500463][0.375,0.5,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.375,0.458333,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.375,0.458333,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.625,0.5,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.625,0.458333,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.625,0.5,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.375,0.541667,0][0.898983,0.913431,0.614927][0.662476,0.55737,0.500463][0.375,0.5,0][0.898983,0.913431,0.614927][0.662476,0.55737,0.500463][0.375,0.5,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.625,0.541667,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.625,0.5,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.625,0.541667,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.375,0.583333,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.375,0.541667,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.375,0.541667,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.625,0.583333,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.625,0.541667,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.625,0.583333,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.375,0.625,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.375,0.583333,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.375,0.583333,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.625,0.625,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.625,0.583333,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.625,0.625,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.375,0.666667,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.375,0.625,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.375,0.625,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.625,0.666667,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.625,0.625,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.625,0.666667,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.375,0.708333,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.375,0.666667,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.375,0.666667,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.625,0.708333,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.625,0.666667,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.625,0.708333,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.375,0.75,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.375,0.708333,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.375,0.708333,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.804368,-1.26175,0.624658][-0.415183,-0.849539,0.325433][0.625,0.75,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.625,0.708333,0][-0.804368,-1.26175,0.624658][-0.415183,-0.849539,0.325433][0.625,0.75,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.375,0.791667,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.375,0.75,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.375,0.75,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.625,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.804368,-1.26175,0.624658][-0.415183,-0.849539,0.325433][0.625,0.75,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.625,0.791667,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.375,0.833333,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.375,0.791667,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.375,0.791667,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.625,0.833333,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.625,0.791667,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.625,0.833333,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.375,0.875,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.375,0.833333,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.375,0.833333,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.625,0.875,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.625,0.833333,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.625,0.875,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.375,0.916667,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.375,0.875,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.375,0.875,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.625,0.916667,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.625,0.875,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.625,0.916667,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.912121,-1.2618,-0.418544][0.488836,-0.85109,-0.191534][0.375,0.958333,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.375,0.916667,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.375,0.916667,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.625,0.958333,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.625,0.916667,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.625,0.958333,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,1,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,1,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,1,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,1,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,1,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,1,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,1,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,1,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,1,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,1,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,1,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,1,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.875,0.041667,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.833333,0,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.833333,0,0][-0.804368,-1.26175,0.624658][-0.415183,-0.849539,0.325433][0.875,0,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.875,0.041667,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.791667,0,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.791667,0,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.833333,0,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.75,0,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.75,0,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.791667,0,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.708333,0,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.708333,0,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.75,0,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.666667,0,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.666667,0,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.708333,0,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.625,0,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.625,0,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.666667,0,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.875,0.083333,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.875,0.041667,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.875,0.083333,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.875,0.125,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.875,0.083333,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.875,0.125,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.875,0.166667,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.875,0.125,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.875,0.166667,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.875,0.208333,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.875,0.166667,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.875,0.208333,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.875,0.25,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.833333,0.25,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.875,0.208333,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.875,0.25,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.833333,0.25,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.791667,0.25,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.833333,0.25,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.791667,0.25,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.75,0.25,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.791667,0.25,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.75,0.25,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.708333,0.25,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.75,0.25,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.708333,0.25,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.666667,0.25,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.708333,0.25,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.666667,0.25,0][-0.898993,0.913461,-0.621904][-0.663467,0.559097,-0.497215][0.625,0.25,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.666667,0.25,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.125,0.041667,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.125,0,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.125,0,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.166667,0,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.166667,0,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.166667,0,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.208333,0,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.208333,0,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.208333,0,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.25,0,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.25,0,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.25,0,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.291667,0,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.291667,0,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.291667,0,0][0.912121,-1.2618,-0.418544][0.488836,-0.85109,-0.191534][0.333333,0,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][0.912121,-1.2618,-0.418544][0.488836,-0.85109,-0.191534][0.333333,0,0][0.912121,-1.2618,-0.418544][0.488836,-0.85109,-0.191534][0.333333,0,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.375,0,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.125,0.083333,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.125,0.041667,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.125,0.041667,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.125,0.125,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.125,0.083333,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.125,0.083333,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.125,0.166667,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.125,0.125,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.125,0.125,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.125,0.208333,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.125,0.166667,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.125,0.166667,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.166667,0.25,0][0.898983,0.913431,0.614927][0.662476,0.55737,0.500463][0.125,0.25,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.125,0.208333,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.125,0.208333,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.166667,0.25,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.208333,0.25,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.166667,0.25,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.208333,0.25,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.25,0.25,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.208333,0.25,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.25,0.25,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.291667,0.25,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.25,0.25,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.291667,0.25,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.333333,0.25,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.291667,0.25,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.333333,0.25,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.333333,0.25,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,0,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,0,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,0,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,0,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,0,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,0,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,0,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,0,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.641618,-1.09854,-0.941235][0.0986083,0.176726,-0.979308][0.583333,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,0,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,0,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.641618,-1.09854,-0.941235][0.0986083,0.176726,-0.979308][0.583333,0,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.641618,-1.09854,-0.941235][0.0986083,0.176726,-0.979308][0.583333,0,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,0,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.375,0,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.375,0,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.641161,-1.09847,-0.927423][-0.133059,-0.226312,0.964924][0.583333,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.625,0,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.889634,0.905954,-0.615045][0.663021,-0.559606,0.497237][0.625,0.25,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.889634,0.905954,-0.615045][0.663021,-0.559606,0.497237][0.625,0.25,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.375,0.291667,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.625,0.291667,0][-0.889634,0.905954,-0.615045][0.663021,-0.559606,0.497237][0.625,0.25,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.625,0.291667,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.375,0.291667,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.375,0.291667,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.375,0.333333,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.625,0.333333,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.625,0.291667,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.625,0.333333,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.375,0.333333,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.375,0.333333,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.375,0.375,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.625,0.375,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.625,0.333333,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.625,0.375,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.375,0.375,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.375,0.375,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.375,0.416667,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.625,0.416667,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.625,0.375,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.625,0.416667,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.375,0.416667,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.375,0.416667,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.375,0.458333,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.625,0.458333,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.625,0.416667,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.625,0.458333,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.375,0.458333,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.375,0.458333,0][0.889634,0.905954,0.608024][-0.662035,-0.557836,-0.500528][0.375,0.5,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.625,0.5,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.625,0.458333,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.625,0.5,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.889634,0.905954,0.608024][-0.662035,-0.557836,-0.500528][0.375,0.5,0][0.889634,0.905954,0.608024][-0.662035,-0.557836,-0.500528][0.375,0.5,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.375,0.541667,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.625,0.541667,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.625,0.5,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.625,0.541667,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.375,0.541667,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.375,0.541667,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.375,0.583333,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.625,0.583333,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.625,0.541667,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.625,0.583333,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.375,0.583333,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.375,0.583333,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.375,0.625,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.625,0.625,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.625,0.583333,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.625,0.625,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.375,0.625,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.375,0.625,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.375,0.666667,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.625,0.666667,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.625,0.625,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.625,0.666667,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.375,0.666667,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.375,0.666667,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.375,0.708333,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.625,0.708333,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.625,0.666667,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.625,0.708333,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.375,0.708333,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.375,0.708333,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.375,0.75,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.798599,-1.25001,0.620226][0.414763,0.849821,-0.325233][0.625,0.75,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.625,0.708333,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.798599,-1.25001,0.620226][0.414763,0.849821,-0.325233][0.625,0.75,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.375,0.75,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.375,0.75,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.375,0.791667,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.625,0.791667,0][-0.798599,-1.25001,0.620226][0.414763,0.849821,-0.325233][0.625,0.75,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.625,0.791667,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.375,0.791667,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.375,0.791667,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.375,0.833333,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.625,0.833333,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.625,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.625,0.833333,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.375,0.833333,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.375,0.833333,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.375,0.875,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.625,0.875,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.625,0.833333,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.625,0.875,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.375,0.875,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.375,0.875,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.375,0.916667,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.625,0.916667,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.625,0.875,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.625,0.916667,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.375,0.916667,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.375,0.916667,0][0.905448,-1.25001,-0.415822][-0.485332,0.853775,0.18847][0.375,0.958333,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.625,0.958333,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.625,0.916667,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.625,0.958333,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,1,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,1,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,1,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,1,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,1,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,1,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,1,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,1,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,1,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,1,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,1,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,1,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.875,0.041667,0][-0.798599,-1.25001,0.620226][0.414763,0.849821,-0.325233][0.875,0,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.833333,0,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.833333,0,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.875,0.041667,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.833333,0,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.791667,0,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.791667,0,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.791667,0,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.75,0,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.75,0,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.75,0,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.708333,0,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.708333,0,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.708333,0,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.666667,0,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.666667,0,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.666667,0,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.625,0,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.625,0,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.875,0.083333,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.875,0.041667,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.875,0.083333,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.875,0.125,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.875,0.083333,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.875,0.125,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.875,0.166667,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.875,0.125,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.875,0.166667,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.875,0.208333,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.875,0.166667,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.875,0.208333,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.875,0.25,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.875,0.208333,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.833333,0.25,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.875,0.25,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.833333,0.25,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.791667,0.25,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.833333,0.25,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.791667,0.25,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.75,0.25,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.791667,0.25,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.75,0.25,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.708333,0.25,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.75,0.25,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.708333,0.25,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.666667,0.25,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.708333,0.25,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.666667,0.25,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-0.889634,0.905954,-0.615045][0.663021,-0.559606,0.497237][0.625,0.25,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.666667,0.25,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.166667,0,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.125,0,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.125,0,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.125,0.041667,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.208333,0,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.166667,0,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.166667,0,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.25,0,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.208333,0,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.208333,0,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.291667,0,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.25,0,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.25,0,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][0.905448,-1.25001,-0.415822][-0.485332,0.853775,0.18847][0.333333,0,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.291667,0,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.291667,0,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.375,0,0][0.905448,-1.25001,-0.415822][-0.485332,0.853775,0.18847][0.333333,0,0][0.905448,-1.25001,-0.415822][-0.485332,0.853775,0.18847][0.333333,0,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.125,0.041667,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.125,0.041667,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.125,0.083333,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.125,0.083333,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.125,0.083333,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.125,0.125,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.125,0.125,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.125,0.125,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.125,0.166667,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.125,0.166667,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.125,0.166667,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.125,0.208333,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.166667,0.25,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.125,0.208333,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.125,0.208333,0][0.889634,0.905954,0.608024][-0.662035,-0.557836,-0.500528][0.125,0.25,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.166667,0.25,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.208333,0.25,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.166667,0.25,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.208333,0.25,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.25,0.25,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.208333,0.25,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.25,0.25,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.291667,0.25,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.25,0.25,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.291667,0.25,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.333333,0.25,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.291667,0.25,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.333333,0.25,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.333333,0.25,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,0,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,0,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,0,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,0,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,0,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,0,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,0,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,0,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,0,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.641161,-1.09847,-0.927423][-0.133059,-0.226312,0.964924][0.583333,0,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,0,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.641161,-1.09847,-0.927423][-0.133059,-0.226312,0.964924][0.583333,0,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.641161,-1.09847,-0.927423][-0.133059,-0.226312,0.964924][0.583333,0,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/PirateHat.mesh b/charcustom/hats/fonts/PirateHat.mesh
new file mode 100644
index 0000000..5eae798
--- /dev/null
+++ b/charcustom/hats/fonts/PirateHat.mesh
@@ -0,0 +1,3 @@
+version 1.00
+592
+[-0.614146,0.399843,0.0480231][0.20986,0.187658,-1.49396][0.705664,0.008659,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-0.614146,0.399843,0.0480231][0.20986,0.187658,-1.49396][0.705664,0.008659,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.99834,1.77814,0.791996][-0.616125,0.942914,-0.975944][0.994587,0.811055,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.99834,1.77814,0.791996][-0.616125,0.942914,-0.975944][0.994587,0.811055,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.29442,2.06045,0.805931][-0.495095,1.21011,0.494925][0.704229,0.81046,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.99834,1.77814,0.791996][-0.616125,0.942914,-0.975944][0.994587,0.811055,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.29442,2.06045,0.805931][-0.495095,1.21011,0.494925][0.704229,0.81046,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.29442,2.06045,0.805931][-0.495095,1.21011,0.494925][0.704229,0.81046,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.31638,0.113027,0.046809][0.253597,-7.95572e-005,1.49895][0.996102,0.009363,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-1.31638,0.113027,0.046809][0.253597,-7.95572e-005,1.49895][0.996102,0.009363,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-0.614146,0.399843,0.0480231][0.20986,0.187658,-1.49396][0.705664,0.008659,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-1.31638,0.113027,0.046809][0.253597,-7.95572e-005,1.49895][0.996102,0.009363,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-1.31638,0.113027,0.046809][0.253597,-7.95572e-005,1.49895][0.996102,0.009363,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.99834,1.77814,0.791996][-0.616125,0.942914,-0.975944][0.994587,0.811055,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-0.614146,0.399843,0.0480231][0.20986,0.187658,-1.49396][0.705664,0.008659,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.29442,2.06045,0.805931][-0.495095,1.21011,0.494925][0.704229,0.81046,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.387965,0.983622,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.327168,0.983622,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.387965,0.983622,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.267897,0.983622,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.187687,0.983622,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.267897,0.983622,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.187687,0.983622,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.126725,0.983622,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.187687,0.983622,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.338418,0.671773,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.338418,0.671773,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.387965,0.671318,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.209218,0.773158,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.209218,0.773158,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.287311,0.673124,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.148992,0.828302,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.148992,0.828302,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.209218,0.773158,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.29063,0.254772,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.292932,0.221706,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.29063,0.254772,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.303175,0.187599,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.322775,0.135481,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.303175,0.187599,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.322775,0.135481,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.333874,0.095288,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.322775,0.135481,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][0,0.809567,0.000568196][0,1,0][0.380473,0.254772,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-0.62131,0.667182,0.000568096][-0.525983,0.850495,-5.98605e-007][0.380473,0.187599,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.265516,0.255248,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.260206,0.287784,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.260206,0.287784,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.181638,0.372276,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.181638,0.372276,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.141064,0.380911,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.297539,0.515954,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.30206,0.544559,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.281396,0.544559,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.208361,0.081341,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.208361,0.081341,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.225392,0.122025,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.151035,0.611307,0][-2.27429,-0.7918,0.000567783][-0.719064,-0.694944,2.79533e-006][0.137237,0.610384,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.151035,0.611307,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.179064,0.611307,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.159971,0.611307,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.179064,0.611307,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.175993,0.591042,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.175993,0.591042,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.175993,0.591042,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.172667,0.572643,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.137237,0.559936,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.137237,0.559936,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.14791,0.558009,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.172667,0.572643,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.156219,0.550525,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.172667,0.572643,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.156219,0.550525,0][-2.24803,-0.233367,-0.289566][-0.6385,0.599653,-0.482425][0.168605,0.550009,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.14791,0.558009,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.14791,0.558009,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.156219,0.550525,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.159971,0.611307,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.151035,0.611307,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.159971,0.611307,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.260206,0.287784,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.239608,0.331228,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.239608,0.331228,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.212407,0.335749,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-2.27429,-0.7918,0.000567783][-0.719064,-0.694944,2.79533e-006][0.140561,0.009798,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.154359,0.009252,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.154359,0.009252,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.154359,0.009252,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.154359,0.009252,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.163295,0.001992,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.208361,0.081341,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.163295,0.001992,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.208361,0.081341,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.163295,0.001992,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.182387,0.003716,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.126725,0.983622,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.01041,0.983622,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.01041,0.983622,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.011309,0.950163,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.011309,0.950163,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.011309,0.950163,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.014918,0.919786,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.148992,0.828302,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.014918,0.919786,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.148992,0.828302,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.014918,0.919786,0][-2.24803,-0.233367,-0.289566][-0.6385,0.599653,-0.482425][0.023778,0.882415,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.333874,0.095288,0][-2.24803,-0.233367,-0.289566][-0.6385,0.599653,-0.482425][0.349105,0.011724,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-2.24803,-0.233367,-0.289566][-0.6385,0.599653,-0.482425][0.349105,0.011724,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.361492,0.010442,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.361492,0.010442,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.361492,0.010442,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.369801,0.015022,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.369801,0.015022,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.369801,0.015022,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.380473,0.014305,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.140561,0.126827,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.140561,0.126827,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.167184,0.127823,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.208142,0.144132,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.167184,0.127823,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.208142,0.144132,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.208142,0.144132,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.225392,0.122025,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.225392,0.122025,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.26308,0.175554,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.26923,0.255684,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.262249,0.21511,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.275194,0.21511,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.26923,0.255684,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.275194,0.21511,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.279415,0.255684,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.212407,0.335749,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.181638,0.372276,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.212407,0.335749,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.181638,0.372276,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.212407,0.335749,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.217729,0.351892,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.275194,0.21511,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.262249,0.21511,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.275194,0.21511,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.26308,0.175554,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.327168,0.983622,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.267897,0.983622,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.267897,0.983622,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.338418,0.671773,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.338418,0.671773,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.287311,0.673124,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.292932,0.221706,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.303175,0.187599,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.303175,0.187599,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-0.62131,0.667182,0.000568096][-0.525983,0.850495,-5.98605e-007][0.380473,0.187599,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.37804,0.544559,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.37804,0.569616,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.351417,0.569616,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.37804,0.544559,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.351417,0.569616,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.345503,0.544559,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.30206,0.544559,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.345503,0.544559,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.351417,0.569616,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.30206,0.544559,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.351417,0.569616,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.310459,0.569616,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.281396,0.544559,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.30206,0.544559,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.310459,0.569616,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.281396,0.544559,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.310459,0.569616,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.271157,0.569616,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.537121,0.619857,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.537121,0.64454,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.50103,0.644914,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.537121,0.619857,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.50103,0.644914,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.497566,0.619857,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.577695,0.644735,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.537121,0.64454,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.537121,0.619857,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.577695,0.644735,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.537121,0.619857,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.577695,0.619857,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.68638,0.25396,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.68638,0.25396,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.68638,0.213387,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.68638,0.173831,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.68638,0.173831,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.68638,0.120301,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.68638,0.120301,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.68638,0.120301,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.68638,0.079617,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.489446,0.25396,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.493643,0.220894,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.493643,0.220894,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.506102,0.186787,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.558908,0.13467,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.558908,0.13467,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.558908,0.13467,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.592307,0.094477,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.592307,0.094477,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.470316,0.254772,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.470316,0.254772,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.468014,0.221706,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.457771,0.187599,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.457771,0.187599,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.438171,0.135481,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.438171,0.135481,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.438171,0.135481,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.427072,0.095288,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][0,0.809567,0.000568196][0,1,0][0.380473,0.254772,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-0.62131,0.667182,0.000568096][-0.525983,0.850495,-5.98605e-007][0.380473,0.187599,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.260206,0.222711,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.260206,0.222711,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.265516,0.255248,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.141064,0.129584,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.181638,0.138219,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.181638,0.138219,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.458541,0.515954,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.474684,0.544559,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.45402,0.544559,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.05573,0.122025,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.072761,0.081341,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.072761,0.081341,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.12344,0.611307,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.12344,0.611307,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.27429,-0.7918,0.000567783][-0.719064,-0.694944,2.79533e-006][0.137237,0.610384,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.095411,0.611307,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.098482,0.591042,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.095411,0.611307,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.114503,0.611307,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.098482,0.591042,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.101808,0.572643,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.098482,0.591042,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.126565,0.558009,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.137237,0.559936,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.137237,0.559936,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.101808,0.572643,0][-2.24803,-0.233367,0.290702][-0.638501,0.599654,0.482423][0.105869,0.550009,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.118256,0.550525,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.101808,0.572643,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.118256,0.550525,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.118256,0.550525,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.126565,0.558009,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.126565,0.558009,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.114503,0.611307,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.114503,0.611307,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.12344,0.611307,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.212407,0.174746,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.239608,0.179268,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.239608,0.179268,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.260206,0.222711,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.126764,0.009252,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.126764,0.009252,0][-2.27429,-0.7918,0.000567783][-0.719064,-0.694944,2.79533e-006][0.140561,0.009798,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.117827,0.001992,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.126764,0.009252,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.126764,0.009252,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.072761,0.081341,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.098735,0.003716,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.117827,0.001992,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.072761,0.081341,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.117827,0.001992,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.666115,0.002592,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.68638,0.001992,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.68638,0.001992,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.68638,0.079617,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.647716,0.005,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.666115,0.002592,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.666115,0.002592,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.592307,0.094477,0][-2.24803,-0.233367,0.290702][-0.638501,0.599654,0.482423][0.625082,0.010913,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.647716,0.005,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.592307,0.094477,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.647716,0.005,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.399454,0.010442,0][-2.24803,-0.233367,0.290702][-0.638501,0.599654,0.482423][0.411841,0.011724,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-2.24803,-0.233367,0.290702][-0.638501,0.599654,0.482423][0.411841,0.011724,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.427072,0.095288,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.391146,0.015022,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.399454,0.010442,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.399454,0.010442,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.380473,0.014305,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.391146,0.015022,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.391146,0.015022,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.140561,0.126827,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.113938,0.127823,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.140561,0.126827,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.07298,0.144132,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.07298,0.144132,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.113938,0.127823,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.018042,0.175554,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.05573,0.122025,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.05573,0.122025,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.07298,0.144132,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.011893,0.255684,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.001707,0.255684,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.005928,0.21511,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.011893,0.255684,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.005928,0.21511,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.018873,0.21511,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.212407,0.174746,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.181638,0.138219,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.217729,0.158604,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.212407,0.174746,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.181638,0.138219,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.212407,0.174746,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.005928,0.21511,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.018042,0.175554,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.005928,0.21511,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.018873,0.21511,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.68638,0.173831,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.68638,0.173831,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.68638,0.213387,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.493643,0.220894,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.506102,0.186787,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.493643,0.220894,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.457771,0.187599,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.457771,0.187599,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.468014,0.221706,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.62131,0.667182,0.000568096][-0.525983,0.850495,-5.98605e-007][0.380473,0.187599,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.37804,0.544559,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.410577,0.544559,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.404663,0.569616,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.37804,0.544559,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.404663,0.569616,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.37804,0.569616,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.45402,0.544559,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.445621,0.569617,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.404663,0.569616,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.45402,0.544559,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.404663,0.569616,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.410577,0.544559,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.474684,0.544559,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.484923,0.569617,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.445621,0.569617,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.474684,0.544559,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.445621,0.569617,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.45402,0.544559,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.533674,0.6146,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.494118,0.6146,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.497583,0.589543,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.533674,0.6146,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.497583,0.589543,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.533674,0.589917,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.574248,0.589723,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.574248,0.6146,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.533674,0.6146,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.574248,0.589723,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.533674,0.6146,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.533674,0.589917,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.387965,0.983622,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.387965,0.983622,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.448762,0.983622,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.508033,0.983622,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.508033,0.983622,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.588244,0.983622,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.588244,0.983622,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.588244,0.983622,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.649205,0.983622,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.387965,0.671318,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.437512,0.671773,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.437512,0.671773,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.488619,0.673124,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.566713,0.773158,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.566713,0.773158,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.566713,0.773158,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.626939,0.828302,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.626939,0.828302,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.29063,0.254772,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.29063,0.254772,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.292932,0.287838,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.303175,0.321945,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.303175,0.321945,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.322775,0.374062,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.322775,0.374062,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.322775,0.374062,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.333874,0.414256,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][0,0.809567,0.000568196][0,1,0][0.380473,0.254772,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][0.62131,0.667182,0.000568284][0.525982,0.850496,2.51562e-007][0.380473,0.321945,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.021922,0.287784,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.021922,0.287784,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.016612,0.255248,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.141064,0.380911,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.10049,0.372276,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.10049,0.372276,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.649038,0.673519,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.676239,0.644914,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.225392,0.389344,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.208361,0.430028,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.208361,0.430028,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.12344,0.677861,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.12344,0.677861,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.27428,-0.791801,0.00056847][0.71906,-0.694948,0][0.137237,0.676939,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.095411,0.677861,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.098482,0.657596,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.095411,0.677861,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.114503,0.677861,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.098482,0.657596,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.101808,0.639197,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.098482,0.657596,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.126565,0.624564,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.137237,0.62649,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.137237,0.62649,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.101808,0.639197,0][2.24803,-0.233367,-0.289566][0.6385,0.599653,-0.482425][0.105869,0.616563,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.118256,0.617079,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.101808,0.639197,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.118256,0.617079,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.118256,0.617079,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.126565,0.624564,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.126565,0.624564,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.114503,0.677861,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.114503,0.677861,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.12344,0.677861,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.069721,0.335749,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.042521,0.331228,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.042521,0.331228,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.021922,0.287784,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.154359,0.502117,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.154359,0.502117,0][2.27428,-0.791801,0.00056847][0.71906,-0.694948,0][0.140561,0.50157,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.163295,0.509376,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.154359,0.502117,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.154359,0.502117,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.208361,0.430028,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.182387,0.507653,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.163295,0.509376,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.208361,0.430028,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.163295,0.509376,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.764621,0.950164,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.76552,0.983623,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.76552,0.983623,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.649205,0.983622,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.761012,0.919786,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.764621,0.950164,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.764621,0.950164,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.626939,0.828302,0][2.24803,-0.233367,-0.289566][0.6385,0.599653,-0.482425][0.752153,0.882415,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.761012,0.919786,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.626939,0.828302,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.761012,0.919786,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.361492,0.499102,0][2.24803,-0.233367,-0.289566][0.6385,0.599653,-0.482425][0.349105,0.497819,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][2.24803,-0.233367,-0.289566][0.6385,0.599653,-0.482425][0.349105,0.497819,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.333874,0.414256,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.369801,0.494522,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.361492,0.499102,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.361492,0.499102,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.380473,0.495239,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.369801,0.494522,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.369801,0.494522,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.140561,0.384541,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.167184,0.383545,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.140561,0.384541,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.208142,0.367236,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.208142,0.367236,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.167184,0.383545,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.26308,0.335814,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.225392,0.389344,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.225392,0.389344,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.208142,0.367236,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.26923,0.255684,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.279415,0.255684,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.275194,0.296258,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.26923,0.255684,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.275194,0.296258,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.262249,0.296258,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.069721,0.335749,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.10049,0.372276,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.064399,0.351892,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.069721,0.335749,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.10049,0.372276,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.069721,0.335749,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.275194,0.296258,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.26308,0.335814,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.275194,0.296258,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.262249,0.296258,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.508033,0.983622,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.508033,0.983622,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.448762,0.983622,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.437512,0.671773,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.488619,0.673124,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.437512,0.671773,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.303175,0.321945,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.303175,0.321945,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.292932,0.287838,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.62131,0.667182,0.000568284][0.525982,0.850496,2.51562e-007][0.380473,0.321945,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.311101,0.611423,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.343638,0.611423,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.337724,0.636481,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.311101,0.611423,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.337724,0.636481,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.311101,0.636481,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.387081,0.611423,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.378682,0.636481,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.337724,0.636481,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.387081,0.611423,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.337724,0.636481,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.343638,0.611423,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.657825,0.619857,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.689247,0.619857,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.689247,0.619857,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.676239,0.644914,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.618269,0.619857,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.657825,0.619857,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.618269,0.619857,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.618269,0.64454,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.577695,0.644735,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.577695,0.619857,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.618269,0.619857,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.577695,0.644735,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.618269,0.619857,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.618269,0.64454,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.68638,0.25396,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.68638,0.294534,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.68638,0.25396,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.68638,0.33409,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.68638,0.38762,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.68638,0.33409,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.68638,0.38762,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.68638,0.428304,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.68638,0.38762,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.493643,0.287027,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.493643,0.287027,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.489446,0.25396,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.558909,0.373251,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.558909,0.373251,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.506102,0.321134,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.592307,0.413444,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.592307,0.413444,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.558909,0.373251,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.470316,0.254772,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.468014,0.287838,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.470316,0.254772,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.457771,0.321945,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.438171,0.374062,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.457771,0.321945,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.438171,0.374062,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.427072,0.414256,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.438171,0.374062,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0,0.809567,0.000568196][0,1,0][0.380473,0.254772,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][0.62131,0.667182,0.000568284][0.525982,0.850496,2.51562e-007][0.380473,0.321945,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.016612,0.255248,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.021922,0.222711,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.021922,0.222711,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.10049,0.138219,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.10049,0.138219,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.141064,0.129584,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.645591,0.560938,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.672792,0.589543,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.072761,0.430028,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.072761,0.430028,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.05573,0.389344,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.151035,0.677861,0][2.27428,-0.791801,0.00056847][0.71906,-0.694948,0][0.137237,0.676939,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.151035,0.677861,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.179064,0.677861,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.159972,0.677861,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.179064,0.677861,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.175993,0.657596,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.175993,0.657596,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.175993,0.657596,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.172667,0.639197,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.137237,0.62649,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.137237,0.62649,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.14791,0.624563,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.172667,0.639197,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.156219,0.617079,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.172667,0.639197,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.156219,0.617079,0][2.24803,-0.233367,0.290702][0.6385,0.599655,0.482423][0.168606,0.616563,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.14791,0.624563,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.14791,0.624563,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.156219,0.617079,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.159972,0.677861,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.151035,0.677861,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.159972,0.677861,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.021922,0.222711,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.042521,0.179268,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.042521,0.179268,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.069721,0.174746,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][2.27428,-0.791801,0.00056847][0.71906,-0.694948,0][0.140561,0.50157,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.126764,0.502117,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.126764,0.502117,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.126764,0.502117,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.126764,0.502117,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.117827,0.509376,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.072761,0.430028,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.117827,0.509376,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.072761,0.430028,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.117827,0.509376,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.098735,0.507653,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.68638,0.428304,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.68638,0.505929,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.68638,0.505929,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.666115,0.505329,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.666115,0.505329,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.666115,0.505329,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.647716,0.502921,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.592307,0.413444,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.647716,0.502921,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.592307,0.413444,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.647716,0.502921,0][2.24803,-0.233367,0.290702][0.6385,0.599655,0.482423][0.625082,0.497008,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.427072,0.414256,0][2.24803,-0.233367,0.290702][0.6385,0.599655,0.482423][0.411841,0.497819,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][2.24803,-0.233367,0.290702][0.6385,0.599655,0.482423][0.411841,0.497819,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.399454,0.499102,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.399454,0.499102,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.399454,0.499102,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.391146,0.494522,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.391146,0.494522,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.391146,0.494522,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.380473,0.495239,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.140561,0.384541,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.140561,0.384541,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.113938,0.383545,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.07298,0.367236,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.113938,0.383545,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.07298,0.367236,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.07298,0.367236,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.05573,0.389344,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.05573,0.389344,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.018042,0.335814,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.011893,0.255684,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.018873,0.296258,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.005928,0.296258,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.011893,0.255684,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.005928,0.296258,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.001707,0.255684,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.069721,0.174746,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.10049,0.138219,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.069721,0.174746,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.10049,0.138219,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.069721,0.174746,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.064399,0.158604,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.005928,0.296258,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.018873,0.296258,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.005928,0.296258,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.018042,0.335814,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.68638,0.294534,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.68638,0.33409,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.68638,0.33409,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.493643,0.287027,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.493643,0.287027,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.506102,0.321134,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.468014,0.287838,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.457771,0.321945,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.457771,0.321945,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][0.62131,0.667182,0.000568284][0.525982,0.850496,2.51562e-007][0.380473,0.321945,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.311101,0.611423,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.311101,0.636481,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.284479,0.63648,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.311101,0.611423,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.284479,0.63648,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.278565,0.611423,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.235121,0.611423,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.278565,0.611423,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.284479,0.63648,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.235121,0.611423,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.284479,0.63648,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.243521,0.636481,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.672792,0.589543,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.6858,0.6146,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.6858,0.6146,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.654378,0.6146,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.614822,0.6146,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.614822,0.589917,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.614822,0.6146,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.654378,0.6146,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.574248,0.589723,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.614822,0.589917,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.614822,0.6146,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.574248,0.589723,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.614822,0.6146,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.574248,0.6146,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/PoliceCap.mesh b/charcustom/hats/fonts/PoliceCap.mesh
new file mode 100644
index 0000000..cc8b2c1
--- /dev/null
+++ b/charcustom/hats/fonts/PoliceCap.mesh
@@ -0,0 +1,3 @@
+version 1.00
+426
+[-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.899109,0.145191,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.991902,0.144632,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.991902,0.144632,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.98853,0.254975,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.98853,0.254975,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.98853,0.254975,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.98767,0.405478,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.98767,0.405478,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.98767,0.405478,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.98853,0.55598,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.899561,0.666216,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.98853,0.55598,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.98853,0.55598,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.990879,0.666155,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.899561,0.666216,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.994047,0.89657,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.993516,0.984809,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.993516,0.984809,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.861645,0.987667,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.861645,0.987667,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.861645,0.987667,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.729774,0.990525,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.729774,0.990525,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.729774,0.990525,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.632752,0.992519,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.632752,0.992519,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.632752,0.992519,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.500365,0.993187,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.500365,0.993187,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.500365,0.993187,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.368464,0.992421,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.368464,0.992421,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.368464,0.992421,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.271719,0.990517,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.271719,0.990517,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.271719,0.990517,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.139661,0.987847,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.007259,0.89675,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.139661,0.987847,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.139661,0.987847,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.007789,0.984989,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.007259,0.89675,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.568904,0.109246,0][0.632319,-0.520342,-1.53195][0.406678,2.15031,-0.731006][0.779448,0.204574,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.613519,0.204574,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.613519,0.204574,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.463361,0.072408,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.568904,0.109246,0][0.632319,-0.520342,-1.53195][0.406678,2.15031,-0.731006][0.779448,0.204574,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.83441,0.385116,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.668481,0.385116,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.668481,0.385116,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.613519,0.204574,0][0.632319,-0.520342,-1.53195][0.406678,2.15031,-0.731006][0.779448,0.204574,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.83441,0.385116,0][-0.632348,-0.520342,-1.53195][-0.403386,2.14824,-0.741483][0.779448,0.565659,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.613519,0.565659,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.613519,0.565659,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.668481,0.385116,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.83441,0.385116,0][-0.632348,-0.520342,-1.53195][-0.403386,2.14824,-0.741483][0.779448,0.565659,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.568904,0.660987,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.463361,0.697825,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.463361,0.697825,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.613519,0.565659,0][-0.632348,-0.520342,-1.53195][-0.403386,2.14824,-0.741483][0.779448,0.565659,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.848401,0.150169,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.899109,0.145191,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.899109,0.145191,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.848212,0.660774,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.899561,0.666216,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.848212,0.660774,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.99878,0.848352,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.994047,0.89657,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.994047,0.89657,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.002525,0.848532,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.007259,0.89675,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.002525,0.848532,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.139772,0.819661,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.002525,0.848532,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.002525,0.848532,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.004527,0.83197,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.139772,0.819661,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.645294,0.394747,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.601862,0.550845,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.601862,0.550845,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.484386,0.664424,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.601862,0.550845,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.484386,0.664424,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.835228,0.248898,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.830984,0.148064,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.830984,0.148064,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.848401,0.150169,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.32423,0.706222,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.484386,0.664424,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.32423,0.706222,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.840784,0.405477,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.835228,0.248898,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.835228,0.248898,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.164073,0.664424,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.32423,0.706222,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.164073,0.664424,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.835228,0.562058,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.840784,0.405477,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.840784,0.405477,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.046597,0.550845,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.164073,0.664424,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.046597,0.550845,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.848212,0.660774,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.830795,0.662879,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.835228,0.562058,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.835228,0.562058,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.848212,0.660774,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.003165,0.394747,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.046597,0.550845,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.003165,0.394747,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.861534,0.819481,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.996779,0.83179,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.996779,0.83179,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.99878,0.848352,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.045537,0.216994,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.003165,0.394747,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.045537,0.216994,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.707526,0.785471,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.861534,0.819481,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.861534,0.819481,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.163446,0.118847,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.045537,0.216994,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.163446,0.118847,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.640171,0.791017,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.707526,0.785471,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.707526,0.785471,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.32423,0.04377,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.163446,0.118847,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.32423,0.04377,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.50034,0.740734,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.640171,0.791017,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.640171,0.791017,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.485013,0.118847,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.32423,0.04377,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.485013,0.118847,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.36106,0.790919,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.50034,0.740734,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.50034,0.740734,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.602922,0.216994,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.485013,0.118847,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.602922,0.216994,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.293764,0.785463,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.36106,0.790919,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.36106,0.790919,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.645294,0.394747,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.602922,0.216994,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.645294,0.394747,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.139772,0.819661,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.293764,0.785463,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.293764,0.785463,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.14847,-0.446047,0.293214][-0.0458425,-3.13207,-0.232624][0.709812,0.737591,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.735442,0.711659,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.781922,0.664208,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.735442,0.711659,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.781922,0.664208,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.735442,0.711659,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.766369,0.683651,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.766369,0.683651,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.766347,0.688782,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.781922,0.664208,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.766369,0.683651,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.139661,0.987847,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.271719,0.990517,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.568904,0.660987,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.632348,-0.520342,-1.53195][-0.403386,2.14824,-0.741483][0.759918,0.707815,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0.632319,-0.520342,-1.53195][0.406678,2.15031,-0.731006][0.759918,0.670417,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][-1.15835,-0.444166,0.230817][-0.390107,-3.12175,-0.0323301][0.708529,0.738838,0][-1.14847,-0.446047,0.293214][-0.0458425,-3.13207,-0.232624][0.709812,0.737591,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.70567,0.741629,0][-1.15835,-0.444166,0.230817][-0.390107,-3.12175,-0.0323301][0.708529,0.738838,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.715786,0.73441,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.70567,0.741629,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.715786,0.73441,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.743139,0.712824,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.715786,0.73441,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.689777,-0.456807,-0.870624][-0.00197212,-3.4463,0.134387][0.738112,0.709381,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.743139,0.712824,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.743533,0.699908,0][-0.689777,-0.456807,-0.870624][-0.00197212,-3.4463,0.134387][0.738112,0.709381,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.743533,0.699908,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.745453,0.689115,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.743533,0.699908,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.743533,0.678322,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.745453,0.689115,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.743533,0.678322,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.743533,0.678322,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.738208,0.668515,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.727181,0.656728,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.774837,0.745525,0][1.14848,-0.446042,0.293144][0.0458453,-3.13208,-0.232624][0.770846,0.743308,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.774837,0.745525,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.782089,0.751227,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.779514,0.735036,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.774837,0.745525,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.782089,0.751227,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.782089,0.751227,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.779298,0.714553,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.779514,0.735036,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.782089,0.751227,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.779298,0.714553,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.756212,0.712514,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.744436,0.671466,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.756212,0.712514,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.766462,0.73845,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.756212,0.712514,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.14848,-0.446042,0.293144][0.0458453,-3.13208,-0.232624][0.770846,0.743308,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.769526,0.741872,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.766462,0.73845,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.769526,0.741872,0][0.36498,-0.521951,1.21047][-1.7306e-006,-3.44483,-0.28506][0.781559,0.700222,0][0.416707,-0.51977,1.18412][2.59336e-007,-3.13109,-0.234528][0.781573,0.701497,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.781529,0.691225,0][0.36498,-0.521951,1.21047][-1.7306e-006,-3.44483,-0.28506][0.781559,0.700222,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.781529,0.691225,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.781484,0.691225,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.781559,0.682228,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.781529,0.691225,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.781484,0.691225,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.781559,0.682228,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.781484,0.691225,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.781559,0.682228,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.781573,0.680953,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.779043,0.704118,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][0.416707,-0.51977,1.18412][2.59336e-007,-3.13109,-0.234528][0.781573,0.701497,0][-0.571182,-0.517358,1.10541][2.1706e-006,-3.14012,-0.0962198][0.77991,0.675059,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.65179,-0.5161,1.06434][-0.273036,-3.12303,-0.0513762][0.779042,0.678085,0][-0.694235,-0.510572,1.04271][-0.428319,-3.42779,-0.0355182][0.773038,0.683112,0][-0.65179,-0.5161,1.06434][-0.273036,-3.12303,-0.0513762][0.779042,0.678085,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.766347,0.688782,0][-0.694235,-0.510572,1.04271][-0.428319,-3.42779,-0.0355182][0.773038,0.683112,0][0.694234,-0.510568,1.04271][0.428314,-3.4278,-0.035517][0.779434,0.709561,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.779298,0.714553,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.779043,0.704118,0][0.694234,-0.510568,1.04271][0.428314,-3.4278,-0.035517][0.779434,0.709561,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.781573,0.680953,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.571182,-0.517358,1.10541][2.1706e-006,-3.14012,-0.0962198][0.77991,0.675059,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.738208,0.668515,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][0.845284,-0.461505,-0.717302][0.020106,-3.14715,-0.0808097][0.741399,0.661685,0][0.845284,-0.461505,-0.717302][0.020106,-3.14715,-0.0808097][0.741399,0.661685,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.744436,0.671466,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.772871,0.731453,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.780226,0.717017,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.772871,0.731453,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.761414,0.74291,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.772871,0.731453,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.761414,0.74291,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.746978,0.750265,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.761414,0.74291,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.746978,0.750265,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.730975,0.7528,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.746978,0.750265,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.730975,0.7528,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.714973,0.750265,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.730975,0.7528,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.714973,0.750265,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.700537,0.74291,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.714973,0.750265,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.700537,0.74291,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.68908,0.731453,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.700537,0.74291,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.68908,0.731453,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.681724,0.717017,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.68908,0.731453,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.681724,0.717017,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.68908,0.670576,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.68908,0.670576,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.689358,0.669774,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.682099,0.684277,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.68908,0.670576,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.682099,0.684277,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.700537,0.659119,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.68908,0.670576,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.700537,0.659119,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.714973,0.651763,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.700537,0.659119,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.714973,0.651763,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.730975,0.649229,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.714973,0.651763,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.730975,0.649229,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.746978,0.651763,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.730975,0.649229,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.746978,0.651763,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.761414,0.659119,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.746978,0.651763,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.761414,0.659119,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772871,0.670576,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.761414,0.659119,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772871,0.670576,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.689547,0.7528,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.689547,0.748987,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.684368,0.751444,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.684368,0.751444,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.684368,0.7528,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.689547,0.7528,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.705083,0.7528,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.705083,0.745354,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.699904,0.745785,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.699904,0.745785,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.699904,0.7528,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.705083,0.7528,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.725797,0.7528,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.725797,0.751444,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.720618,0.748987,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.720618,0.748987,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.720618,0.7528,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.725797,0.7528,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.746511,0.7528,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.746651,0.751666,0][0.845284,-0.461505,-0.717302][0.020106,-3.14715,-0.0808097][0.743517,0.751236,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.746511,0.7528,0][0.845284,-0.461505,-0.717302][0.020106,-3.14715,-0.0808097][0.743517,0.751236,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.741886,0.751009,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.741332,0.7528,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.746511,0.7528,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.741886,0.751009,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.756868,0.7528,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.756868,0.750471,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.75169,0.750784,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.75169,0.750784,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.75169,0.7528,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.756868,0.7528,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772404,0.7528,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.77732,0.7528,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.772404,0.751297,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.767225,0.7528,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772404,0.7528,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.772404,0.751297,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.767225,0.7528,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.772404,0.751297,0][-0.689777,-0.456807,-0.870624][-0.00197212,-3.4463,0.134387][0.767225,0.751654,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.767225,0.7528,0][-0.689777,-0.456807,-0.870624][-0.00197212,-3.4463,0.134387][0.767225,0.751654,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.762047,0.750784,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.762047,0.7528,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.767225,0.7528,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.762047,0.750784,0][-1.14847,-0.446047,0.293214][-0.0458425,-3.13207,-0.232624][0.682113,0.75263,0][-1.15835,-0.444166,0.230817][-0.390107,-3.12175,-0.0323301][0.681228,0.7528,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.684368,0.7528,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.684368,0.7528,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.684368,0.751444,0][-1.14847,-0.446047,0.293214][-0.0458425,-3.13207,-0.232624][0.682113,0.75263,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.693782,0.747393,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.689547,0.748987,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.689547,0.7528,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.693782,0.747393,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.689547,0.7528,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.693782,0.747393,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.694235,-0.510572,1.04271][-0.428319,-3.42779,-0.0355182][0.694725,0.746811,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.75169,0.7528,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.75169,0.750784,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.746651,0.751666,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.746651,0.751666,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.746511,0.7528,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.75169,0.7528,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.762047,0.7528,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.762047,0.750784,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.756868,0.750471,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.756868,0.750471,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.756868,0.7528,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.762047,0.7528,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.716382,0.747392,0][0.694234,-0.510568,1.04271][0.428314,-3.4278,-0.035517][0.71544,0.746812,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.71544,0.7528,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.716382,0.747392,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.71544,0.7528,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.720618,0.7528,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.720618,0.748987,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.716382,0.747392,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.720618,0.7528,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.725797,0.7528,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.728936,0.7528,0][1.14848,-0.446042,0.293144][0.0458453,-3.13208,-0.232624][0.728053,0.752631,0][1.14848,-0.446042,0.293144][0.0458453,-3.13208,-0.232624][0.728053,0.752631,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.725797,0.751444,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.725797,0.7528,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.680188,0.707318,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.681724,0.717017,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.680188,0.707318,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.679219,0.701014,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.680188,0.707318,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.682099,0.684277,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.679219,0.701014,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.679219,0.701014,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][-0.65179,-0.5161,1.06434][-0.273036,-3.12303,-0.0513762][0.695393,0.746313,0][-0.694235,-0.510572,1.04271][-0.428319,-3.42779,-0.0355182][0.694725,0.746811,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.571182,-0.517358,1.10541][2.1706e-006,-3.14012,-0.0962198][0.696661,0.746199,0][-0.65179,-0.5161,1.06434][-0.273036,-3.12303,-0.0513762][0.695393,0.746313,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.69909,0.745982,0][-0.571182,-0.517358,1.10541][2.1706e-006,-3.14012,-0.0962198][0.696661,0.746199,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.69909,0.745982,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.699904,0.7528,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.699904,0.745785,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.69909,0.745982,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.699904,0.7528,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.36498,-0.521951,1.21047][-1.7306e-006,-3.44483,-0.28506][0.710261,0.745785,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.705083,0.745354,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.705083,0.745354,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.705083,0.7528,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.416707,-0.51977,1.18412][2.59336e-007,-3.13109,-0.234528][0.711075,0.745982,0][0.36498,-0.521951,1.21047][-1.7306e-006,-3.44483,-0.28506][0.710261,0.745785,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.71544,0.7528,0][0.694234,-0.510568,1.04271][0.428314,-3.4278,-0.035517][0.71544,0.746812,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.714772,0.746313,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.71544,0.7528,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.714772,0.746313,0][0.416707,-0.51977,1.18412][2.59336e-007,-3.13109,-0.234528][0.711075,0.745982,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.714772,0.746313,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.782731,0.701014,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.780221,0.685014,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.780221,0.685014,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.782731,0.701014,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.782731,0.701014,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.780226,0.717017,0][-1.15835,-0.444166,0.230817][-0.390107,-3.12175,-0.0323301][0.781763,0.707312,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.782731,0.701014,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.780226,0.717017,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.780221,0.685014,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772871,0.670576,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.780221,0.685014,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/Sombrero.mesh b/charcustom/hats/fonts/Sombrero.mesh
new file mode 100644
index 0000000..84c0329
--- /dev/null
+++ b/charcustom/hats/fonts/Sombrero.mesh
@@ -0,0 +1,3 @@
+version 1.00
+314
+[2.69515,0.164792,0.715071][0.848145,-0.516875,0.116146][0.00616005,0.992026,0][2.37687,-0.374595,0.638877][0.823442,-0.564121,0.0609108][0.00616528,0.633587,0][2.78923,0.158196,-0.00126888][0.823215,-0.567729,0][0.287986,0.991994,0][1.97031,0.294094,1.95581][0.679331,-0.454716,0.575971][0.00616016,0.992026,0][1.744,-0.307697,1.74764][0.690678,-0.514858,0.507823][0.00616539,0.633587,0][2.41513,0.232562,1.38259][0.713683,-0.528824,0.459349][0.287988,0.991994,0][0.72333,0.345931,2.67215][0.331354,-0.436419,0.836506][0.00616022,0.992026,0][0.641056,-0.261585,2.38779][0.370631,-0.486216,0.791345][0.00616545,0.633586,0][1.39416,0.325288,2.39565][0.420353,-0.488405,0.764699][0.287989,0.991993,0][-0.712863,0.35319,2.67215][-0.117682,-0.432594,0.893876][0.0061602,0.992026,0][-0.636668,-0.255119,2.38779][-0.0604644,-0.480871,0.874704][0.00616544,0.633586,0][0.00347733,0.35319,2.76646][-0.0026699,-0.480507,0.876987][0.287989,0.991993,0][-1.96337,0.29456,1.95581][-0.527117,-0.448019,0.722099][0.00616013,0.992026,0][-1.73705,-0.307233,1.74764][-0.468209,-0.49244,0.733678][0.00616536,0.633586,0][-1.38721,0.325598,2.39565][-0.418144,-0.488374,0.765928][0.287987,0.991993,0][-2.68642,0.192706,0.715071][-0.77894,-0.501758,0.376154][0.00616001,0.992026,0][-2.37354,-0.350142,0.638876][-0.745122,-0.531946,0.402277][0.00616524,0.633586,0][-2.40572,0.257365,1.38259][-0.723441,-0.520863,0.453139][0.287985,0.991993,0][-2.68642,0.192706,-0.717609][-0.853385,-0.508173,-0.11616][0.00615988,0.992026,0][-2.37354,-0.350143,-0.641415][-0.829169,-0.555671,-0.0609038][0.00616511,0.633586,0][-2.78056,0.187052,-0.00126912][-0.828995,-0.559257,0][0.287982,0.991993,0][-1.96337,0.294559,-1.95835][-0.690738,-0.454356,-0.562531][0.00615977,0.992026,0][-1.73705,-0.307233,-1.75018][-0.701869,-0.509211,-0.49808][0.006165,0.633586,0][-2.40572,0.257365,-1.38513][-0.723441,-0.520863,-0.45314][0.28798,0.991993,0][-0.712863,0.353189,-2.67469][-0.326626,-0.433518,-0.839868][0.00615971,0.992026,0][-0.636668,-0.255119,-2.39032][-0.367153,-0.485268,-0.793545][0.00616495,0.633586,0][-1.38721,0.325598,-2.39819][-0.418144,-0.488374,-0.765928][0.287979,0.991993,0][0.72333,0.345931,-2.67469][0.112747,-0.433711,-0.89397][0.00615973,0.992026,0][0.641056,-0.261585,-2.39032][0.0555046,-0.481275,-0.874811][0.00616496,0.633586,0][0.00347748,0.353189,-2.76899][-0.0026699,-0.480507,-0.876987][0.287979,0.991994,0][1.97032,0.294094,-1.95835][0.527044,-0.448012,-0.722156][0.0061598,0.992026,0][1.744,-0.307697,-1.75018][0.468934,-0.491853,-0.733609][0.00616503,0.633587,0][1.39416,0.325288,-2.39819][0.420353,-0.488405,-0.764699][0.28798,0.991994,0][2.69515,0.164792,-0.71761][0.773695,-0.509695,-0.376306][0.00615992,0.992026,0][2.37687,-0.374595,-0.641415][0.737187,-0.541498,-0.404147][0.00616515,0.633587,0][2.41513,0.232562,-1.38513][0.713683,-0.528824,-0.459348][0.287983,0.991994,0][2.78923,0.158196,-0.00126888][0.506698,0.862123,2.61822e-007][0.974034,0.295279,0][2.70901,0.205339,-0.00126888][0.506698,0.862123,3.16978e-007][0.968286,0.295279,0][2.69515,0.164792,0.715071][0.498636,0.862331,0.0880151][0.967528,0.245858,0][2.61777,0.211736,0.693509][0.498295,0.862458,0.088706][0.961976,0.247345,0][2.69515,0.164792,0.715071][0.498636,0.862331,0.0880151][0.967528,0.245858,0][2.70901,0.205339,-0.00126888][0.506698,0.862123,3.16978e-007][0.968286,0.295279,0][2.69515,0.164792,0.715071][0.498636,0.862331,0.0880151][0.967528,0.245858,0][2.61777,0.211736,0.693509][0.498295,0.862458,0.088706][0.961976,0.247345,0][2.41513,0.232562,1.38259][0.456835,0.872243,0.174622][0.948452,0.199804,0][2.34514,0.277535,1.34094][0.455035,0.872657,0.177238][0.943474,0.202678,0][2.41513,0.232562,1.38259][0.456835,0.872243,0.174622][0.948452,0.199804,0][2.61777,0.211736,0.693509][0.498295,0.862458,0.088706][0.961976,0.247345,0][2.41513,0.232562,1.38259][0.456835,0.872243,0.174622][0.948452,0.199804,0][2.34514,0.277535,1.34094][0.455035,0.872657,0.177238][0.943474,0.202678,0][1.97031,0.294094,1.95581][0.367541,0.884129,0.288497][0.918106,0.160257,0][1.91267,0.33726,1.8969][0.365675,0.884376,0.290105][0.914042,0.164321,0][1.97031,0.294094,1.95581][0.367541,0.884129,0.288497][0.918106,0.160257,0][2.34514,0.277535,1.34094][0.455035,0.872657,0.177238][0.943474,0.202678,0][1.97031,0.294094,1.95581][0.367541,0.884129,0.288497][0.918106,0.160257,0][1.91267,0.33726,1.8969][0.365675,0.884376,0.290105][0.914042,0.164321,0][1.39416,0.325288,2.39565][0.254271,0.890397,0.377545][0.878559,0.129911,0][1.35334,0.367531,2.3235][0.253434,0.890475,0.377923][0.875685,0.134889,0][1.39416,0.325288,2.39565][0.254271,0.890397,0.377545][0.878559,0.129911,0][1.91267,0.33726,1.8969][0.365675,0.884376,0.290105][0.914042,0.164321,0][1.39416,0.325288,2.39565][0.254271,0.890397,0.377545][0.878559,0.129911,0][1.35334,0.367531,2.3235][0.253434,0.890475,0.377923][0.875685,0.134889,0][0.72333,0.345931,2.67215][0.132191,0.894121,0.427871][0.832506,0.110835,0][0.702182,0.387563,2.59167][0.131712,0.894155,0.427948][0.831018,0.116388,0][0.72333,0.345931,2.67215][0.132191,0.894121,0.427871][0.832506,0.110835,0][1.35334,0.367531,2.3235][0.253434,0.890475,0.377923][0.875685,0.134889,0][0.72333,0.345931,2.67215][0.132191,0.894121,0.427871][0.832506,0.110835,0][0.702182,0.387563,2.59167][0.131712,0.894155,0.427948][0.831018,0.116388,0][0.00347733,0.35319,2.76646][0.00444461,0.895437,0.445166][0.783084,0.104329,0][0.00347733,0.394608,2.68314][0.00423588,0.895444,0.445154][0.783084,0.110077,0][0.00347733,0.35319,2.76646][0.00444461,0.895437,0.445166][0.783084,0.104329,0][0.702182,0.387563,2.59167][0.131712,0.894155,0.427948][0.831018,0.116388,0][0.00347733,0.35319,2.76646][0.00444461,0.895437,0.445166][0.783084,0.104329,0][0.00347733,0.394608,2.68314][0.00423588,0.895444,0.445154][0.783084,0.110077,0][-0.712863,0.35319,2.67215][-0.131333,0.895324,0.425613][0.733663,0.110835,0][-0.6913,0.394608,2.59167][-0.130407,0.895299,0.42595][0.73515,0.116388,0][-0.712863,0.35319,2.67215][-0.131333,0.895324,0.425613][0.733663,0.110835,0][0.00347733,0.394608,2.68314][0.00423588,0.895444,0.445154][0.783084,0.110077,0][-0.712863,0.35319,2.67215][-0.131333,0.895324,0.425613][0.733663,0.110835,0][-0.6913,0.394608,2.59167][-0.130407,0.895299,0.42595][0.73515,0.116388,0][-1.38721,0.325598,2.39565][-0.257445,0.890346,0.375507][0.687609,0.129912,0][-1.34639,0.367841,2.3235][-0.25656,0.890311,0.376195][0.690483,0.134889,0][-1.38721,0.325598,2.39565][-0.257445,0.890346,0.375507][0.687609,0.129912,0][-0.6913,0.394608,2.59167][-0.130407,0.895299,0.42595][0.73515,0.116388,0][-1.38721,0.325598,2.39565][-0.257445,0.890346,0.375507][0.687609,0.129912,0][-1.34639,0.367841,2.3235][-0.25656,0.890311,0.376195][0.690483,0.134889,0][-1.96337,0.29456,1.95581][-0.35718,0.884945,0.298823][0.648062,0.160257,0][-1.90573,0.337726,1.8969][-0.356396,0.884924,0.299819][0.652126,0.164321,0][-1.96337,0.29456,1.95581][-0.35718,0.884945,0.298823][0.648062,0.160257,0][-1.34639,0.367841,2.3235][-0.25656,0.890311,0.376195][0.690483,0.134889,0][-1.96337,0.29456,1.95581][-0.35718,0.884945,0.298823][0.648062,0.160257,0][-1.90573,0.337726,1.8969][-0.356396,0.884924,0.299819][0.652126,0.164321,0][-2.40572,0.257365,1.38259][-0.442356,0.877651,0.184525][0.617717,0.199804,0][-2.33529,0.301635,1.34094][-0.441176,0.87768,0.187191][0.622694,0.202678,0][-2.40572,0.257365,1.38259][-0.442356,0.877651,0.184525][0.617717,0.199804,0][-1.90573,0.337726,1.8969][-0.356396,0.884924,0.299819][0.652126,0.164321,0][-2.40572,0.257365,1.38259][-0.442356,0.877651,0.184525][0.617717,0.199804,0][-2.33529,0.301635,1.34094][-0.441176,0.87768,0.187191][0.622694,0.202678,0][-2.68642,0.192706,0.715071][-0.489704,0.867395,0.0884073][0.598641,0.245858,0][-2.60858,0.238876,0.693508][-0.489682,0.867319,0.0892683][0.604193,0.247345,0][-2.68642,0.192706,0.715071][-0.489704,0.867395,0.0884073][0.598641,0.245858,0][-2.33529,0.301635,1.34094][-0.441176,0.87768,0.187191][0.622694,0.202678,0][-2.68642,0.192706,0.715071][-0.489704,0.867395,0.0884073][0.598641,0.245858,0][-2.60858,0.238876,0.693508][-0.489682,0.867319,0.0892683][0.604193,0.247345,0][-2.78056,0.187052,-0.00126912][-0.49805,0.867148,-1.22443e-006][0.592134,0.295279,0][-2.69988,0.233391,-0.00126912][-0.49805,0.867148,-1.4478e-006][0.597882,0.295279,0][-2.78056,0.187052,-0.00126912][-0.49805,0.867148,-1.22443e-006][0.592134,0.295279,0][-2.60858,0.238876,0.693508][-0.489682,0.867319,0.0892683][0.604193,0.247345,0][-2.78056,0.187052,-0.00126912][-0.49805,0.867148,-1.22443e-006][0.592134,0.295279,0][-2.69988,0.233391,-0.00126912][-0.49805,0.867148,-1.4478e-006][0.597882,0.295279,0][-2.68642,0.192706,-0.717609][-0.489952,0.867276,-0.0882021][0.598641,0.3447,0][-2.60858,0.238876,-0.696046][-0.489606,0.867401,-0.0888929][0.604193,0.343213,0][-2.68642,0.192706,-0.717609][-0.489952,0.867276,-0.0882021][0.598641,0.3447,0][-2.69988,0.233391,-0.00126912][-0.49805,0.867148,-1.4478e-006][0.597882,0.295279,0][-2.68642,0.192706,-0.717609][-0.489952,0.867276,-0.0882021][0.598641,0.3447,0][-2.60858,0.238876,-0.696046][-0.489606,0.867401,-0.0888929][0.604193,0.343213,0][-2.40572,0.257365,-1.38513][-0.442507,0.877514,-0.184816][0.617717,0.390754,0][-2.33529,0.301635,-1.34348][-0.440885,0.877822,-0.187212][0.622694,0.38788,0][-2.40572,0.257365,-1.38513][-0.442507,0.877514,-0.184816][0.617717,0.390754,0][-2.60858,0.238876,-0.696046][-0.489606,0.867401,-0.0888929][0.604193,0.343213,0][-2.40572,0.257365,-1.38513][-0.442507,0.877514,-0.184816][0.617717,0.390754,0][-2.33529,0.301635,-1.34348][-0.440885,0.877822,-0.187212][0.622694,0.38788,0][-1.96337,0.294559,-1.95835][-0.357261,0.884869,-0.29895][0.648062,0.430301,0][-1.90573,0.337726,-1.89943][-0.356287,0.884993,-0.299745][0.652126,0.426237,0][-1.96337,0.294559,-1.95835][-0.357261,0.884869,-0.29895][0.648062,0.430301,0][-2.33529,0.301635,-1.34348][-0.440885,0.877822,-0.187212][0.622694,0.38788,0][-1.96337,0.294559,-1.95835][-0.357261,0.884869,-0.29895][0.648062,0.430301,0][-1.90573,0.337726,-1.89943][-0.356287,0.884993,-0.299745][0.652126,0.426237,0][-1.38721,0.325598,-2.39819][-0.257543,0.890269,-0.375623][0.687609,0.460647,0][-1.34639,0.367841,-2.32604][-0.25653,0.890379,-0.376056][0.690483,0.455669,0][-1.38721,0.325598,-2.39819][-0.257543,0.890269,-0.375623][0.687609,0.460647,0][-1.90573,0.337726,-1.89943][-0.356287,0.884993,-0.299745][0.652126,0.426237,0][-1.38721,0.325598,-2.39819][-0.257543,0.890269,-0.375623][0.687609,0.460647,0][-1.34639,0.367841,-2.32604][-0.25653,0.890379,-0.376056][0.690483,0.455669,0][-0.712863,0.353189,-2.67469][-0.131236,0.895281,-0.425732][0.733663,0.479722,0][-0.6913,0.394607,-2.59421][-0.13025,0.895339,-0.425913][0.73515,0.474171,0][-0.712863,0.353189,-2.67469][-0.131236,0.895281,-0.425732][0.733663,0.479722,0][-1.34639,0.367841,-2.32604][-0.25653,0.890379,-0.376056][0.690483,0.455669,0][-0.712863,0.353189,-2.67469][-0.131236,0.895281,-0.425732][0.733663,0.479722,0][-0.6913,0.394607,-2.59421][-0.13025,0.895339,-0.425913][0.73515,0.474171,0][0.00347748,0.353189,-2.76899][0.0044639,0.895443,-0.445154][0.783084,0.486229,0][0.00347748,0.394607,-2.68568][0.00425864,0.895438,-0.445166][0.783084,0.480481,0][0.00347748,0.353189,-2.76899][0.0044639,0.895443,-0.445154][0.783084,0.486229,0][-0.6913,0.394607,-2.59421][-0.13025,0.895339,-0.425913][0.73515,0.474171,0][0.00347748,0.353189,-2.76899][0.0044639,0.895443,-0.445154][0.783084,0.486229,0][0.00347748,0.394607,-2.68568][0.00425864,0.895438,-0.445166][0.783084,0.480481,0][0.72333,0.345931,-2.67469][0.132214,0.894145,-0.427812][0.832506,0.479722,0][0.702183,0.387563,-2.59421][0.131766,0.894129,-0.427985][0.831018,0.474171,0][0.72333,0.345931,-2.67469][0.132214,0.894145,-0.427812][0.832506,0.479722,0][0.00347748,0.394607,-2.68568][0.00425864,0.895438,-0.445166][0.783084,0.480481,0][0.72333,0.345931,-2.67469][0.132214,0.894145,-0.427812][0.832506,0.479722,0][0.702183,0.387563,-2.59421][0.131766,0.894129,-0.427985][0.831018,0.474171,0][1.39416,0.325288,-2.39819][0.25425,0.890447,-0.37744][0.878559,0.460647,0][1.35334,0.367531,-2.32604][0.25351,0.890427,-0.377984][0.875685,0.455669,0][1.39416,0.325288,-2.39819][0.25425,0.890447,-0.37744][0.878559,0.460647,0][0.702183,0.387563,-2.59421][0.131766,0.894129,-0.427985][0.831018,0.474171,0][1.39416,0.325288,-2.39819][0.25425,0.890447,-0.37744][0.878559,0.460647,0][1.35334,0.367531,-2.32604][0.25351,0.890427,-0.377984][0.875685,0.455669,0][1.97032,0.294094,-1.95835][0.367492,0.88424,-0.288216][0.918106,0.430301,0][1.91267,0.33726,-1.89943][0.365933,0.88426,-0.290134][0.914042,0.426237,0][1.97032,0.294094,-1.95835][0.367492,0.88424,-0.288216][0.918106,0.430301,0][1.35334,0.367531,-2.32604][0.25351,0.890427,-0.377984][0.875685,0.455669,0][1.97032,0.294094,-1.95835][0.367492,0.88424,-0.288216][0.918106,0.430301,0][1.91267,0.33726,-1.89943][0.365933,0.88426,-0.290134][0.914042,0.426237,0][2.41513,0.232562,-1.38513][0.456558,0.872434,-0.174394][0.948452,0.390754,0][2.34514,0.277535,-1.34347][0.455305,0.872484,-0.177395][0.943474,0.38788,0][2.41513,0.232562,-1.38513][0.456558,0.872434,-0.174394][0.948452,0.390754,0][1.91267,0.33726,-1.89943][0.365933,0.88426,-0.290134][0.914042,0.426237,0][2.41513,0.232562,-1.38513][0.456558,0.872434,-0.174394][0.948452,0.390754,0][2.34514,0.277535,-1.34347][0.455305,0.872484,-0.177395][0.943474,0.38788,0][2.69515,0.164792,-0.71761][0.498395,0.86245,-0.0882143][0.967528,0.3447,0][2.61777,0.211736,-0.696047][0.498369,0.862377,-0.0890714][0.961976,0.343213,0][2.69515,0.164792,-0.71761][0.498395,0.86245,-0.0882143][0.967528,0.3447,0][2.34514,0.277535,-1.34347][0.455305,0.872484,-0.177395][0.943474,0.38788,0][2.69515,0.164792,-0.71761][0.498395,0.86245,-0.0882143][0.967528,0.3447,0][2.61777,0.211736,-0.696047][0.498369,0.862377,-0.0890714][0.961976,0.343213,0][2.78923,0.158196,-0.00126888][0.506698,0.862123,2.61822e-007][0.974034,0.295279,0][2.70901,0.205339,-0.00126888][0.506698,0.862123,3.16978e-007][0.968286,0.295279,0][2.78923,0.158196,-0.00126888][0.506698,0.862123,2.61822e-007][0.974034,0.295279,0][2.61777,0.211736,-0.696047][0.498369,0.862377,-0.0890714][0.961976,0.343213,0][2.70901,0.205339,-0.00126888][-0.829236,0.558899,-0.000288507][0.776171,0.994405,0][2.33134,-0.354632,-0.00126886][-0.829245,0.558885,-0.000360083][0.776171,0.669674,0][2.61777,0.211736,0.693509][-0.824132,0.555069,-0.112718][0.587425,0.994583,0][2.25162,-0.350647,0.605036][-0.824597,0.554509,-0.11207][0.587567,0.669689,0][2.61777,0.211736,0.693509][-0.824132,0.555069,-0.112718][0.587425,0.994583,0][2.33134,-0.354632,-0.00126886][-0.829245,0.558885,-0.000360083][0.776171,0.669674,0][2.61777,0.211736,0.693509][-0.750243,0.546914,-0.371512][0.958295,0.994586,0][2.25162,-0.350647,0.605036][-0.758234,0.540324,-0.364872][0.958278,0.66969,0][2.34514,0.277535,1.34094][-0.703315,0.535446,-0.467595][0.776173,0.994408,0][2.02422,-0.298444,1.17002][-0.720762,0.524304,-0.453439][0.776173,0.669674,0][2.34514,0.277535,1.34094][-0.703315,0.535446,-0.467595][0.776173,0.994408,0][2.25162,-0.350647,0.605036][-0.758234,0.540324,-0.364872][0.958278,0.66969,0][2.34514,0.277535,1.34094][-0.703315,0.535446,-0.467595][0.776173,0.994408,0][2.02422,-0.298444,1.17002][-0.720762,0.524304,-0.453439][0.776173,0.669674,0][1.91267,0.33726,1.8969][-0.663233,0.509959,-0.547781][0.587428,0.994586,0][1.65211,-0.287275,1.65519][-0.6847,0.493301,-0.536507][0.587569,0.66969,0][1.91267,0.33726,1.8969][-0.663233,0.509959,-0.547781][0.587428,0.994586,0][2.02422,-0.298444,1.17002][-0.720762,0.524304,-0.453439][0.776173,0.669674,0][1.91267,0.33726,1.8969][-0.512689,0.487441,-0.706789][0.958295,0.994589,0][1.65211,-0.287275,1.65519][-0.515469,0.485484,-0.706114][0.958278,0.66969,0][1.35334,0.367531,2.3235][-0.420086,0.485193,-0.766887][0.776174,0.994411,0][1.16982,-0.260996,2.02747][-0.424543,0.483596,-0.76544][0.776174,0.669675,0][1.35334,0.367531,2.3235][-0.420086,0.485193,-0.766887][0.776174,0.994411,0][1.65211,-0.287275,1.65519][-0.515469,0.485484,-0.706114][0.958278,0.66969,0][1.35334,0.367531,2.3235][-0.420086,0.485193,-0.766887][0.776174,0.994411,0][1.16982,-0.260996,2.02747][-0.424543,0.483596,-0.76544][0.776174,0.669675,0][0.702182,0.387563,2.59167][-0.32328,0.477594,-0.816942][0.587429,0.994589,0][0.607394,-0.243591,2.26149][-0.325206,0.476232,-0.816972][0.587571,0.66969,0][0.702182,0.387563,2.59167][-0.32328,0.477594,-0.816942][0.587429,0.994589,0][1.16982,-0.260996,2.02747][-0.424543,0.483596,-0.76544][0.776174,0.669675,0][0.702182,0.387563,2.59167][-0.109625,0.473625,-0.873877][0.958295,0.994593,0][0.607394,-0.243591,2.26149][-0.110193,0.473195,-0.874039][0.958278,0.66969,0][0.00347733,0.394608,2.68314][0.00278662,0.475918,-0.879485][0.776173,0.994415,0][0.00347736,-0.237463,2.34131][0.00184081,0.4757,-0.879606][0.776173,0.669675,0][0.00347733,0.394608,2.68314][0.00278662,0.475918,-0.879485][0.776173,0.994415,0][0.607394,-0.243591,2.26149][-0.110193,0.473195,-0.874039][0.958278,0.66969,0][0.00347733,0.394608,2.68314][0.00278662,0.475918,-0.879485][0.776173,0.994415,0][0.00347736,-0.237463,2.34131][0.00184081,0.4757,-0.879606][0.776173,0.669675,0][-0.6913,0.394608,2.59167][0.115032,0.472543,-0.873768][0.587429,0.994593,0][-0.602828,-0.237463,2.26149][0.115032,0.472543,-0.873768][0.58757,0.66969,0][-0.6913,0.394608,2.59167][0.115032,0.472543,-0.873768][0.587429,0.994593,0][0.00347736,-0.237463,2.34131][0.00184081,0.4757,-0.879606][0.776173,0.669675,0][-0.6913,0.394608,2.59167][0.317026,0.473615,-0.821696][0.958294,0.994596,0][-0.602828,-0.237463,2.26149][0.319316,0.476185,-0.81932][0.958278,0.669691,0][-1.34639,0.367841,2.3235][0.418053,0.482819,-0.769492][0.776172,0.994418,0][-1.16287,-0.260685,2.02747][0.422434,0.485347,-0.765498][0.776172,0.669675,0][-1.34639,0.367841,2.3235][0.418053,0.482819,-0.769492][0.776172,0.994418,0][-0.602828,-0.237463,2.26149][0.319316,0.476185,-0.81932][0.958278,0.669691,0][-1.34639,0.367841,2.3235][0.418053,0.482819,-0.769492][0.776172,0.994418,0][-1.16287,-0.260685,2.02747][0.422434,0.485347,-0.765498][0.776172,0.669675,0][-1.90573,0.337726,1.8969][0.515287,0.485589,-0.706174][0.587427,0.994596,0][-1.64516,-0.28681,1.65519][0.516668,0.487866,-0.703592][0.587569,0.669691,0][-1.90573,0.337726,1.8969][0.515287,0.485589,-0.706174][0.587427,0.994596,0][-1.16287,-0.260685,2.02747][0.422434,0.485347,-0.765498][0.776172,0.669675,0][-1.90573,0.337726,1.8969][0.672255,0.493907,-0.551479][0.958294,0.994597,0][-1.64516,-0.28681,1.65519][0.674547,0.502083,-0.541202][0.958278,0.669691,0][-2.33529,0.301635,1.34094][0.724384,0.510588,-0.463214][0.77617,0.994419,0][-2.01728,-0.297977,1.17002][0.726875,0.522008,-0.446273][0.77617,0.669676,0][-2.33529,0.301635,1.34094][0.724384,0.510588,-0.463214][0.77617,0.994419,0][-1.64516,-0.28681,1.65519][0.674547,0.502083,-0.541202][0.958278,0.669691,0][-2.33529,0.301635,1.34094][0.724384,0.510588,-0.463214][0.77617,0.994419,0][-2.01728,-0.297977,1.17002][0.726875,0.522008,-0.446273][0.77617,0.669676,0][-2.60858,0.238876,0.693508][0.769303,0.527842,-0.359938][0.587424,0.994597,0][-2.24805,-0.327452,0.605036][0.76765,0.542091,-0.341834][0.587566,0.669691,0][-2.60858,0.238876,0.693508][0.769303,0.527842,-0.359938][0.587424,0.994597,0][-2.01728,-0.297977,1.17002][0.726875,0.522008,-0.446273][0.77617,0.669676,0][-2.60858,0.238876,0.693508][0.83001,0.546102,-0.113387][0.958294,0.994597,0][-2.24805,-0.327452,0.605036][0.829755,0.54663,-0.112708][0.958277,0.669691,0][-2.69988,0.233391,-0.00126912][0.834913,0.550382,0.000288838][0.776168,0.994419,0][-2.32781,-0.330643,-0.00126906][0.834923,0.550367,0.000360391][0.776168,0.669675,0][-2.69988,0.233391,-0.00126912][0.834913,0.550382,0.000288838][0.776168,0.994419,0][-2.24805,-0.327452,0.605036][0.829755,0.54663,-0.112708][0.958277,0.669691,0][-2.69988,0.233391,-0.00126912][0.834913,0.550382,0.000288838][0.776168,0.994419,0][-2.32781,-0.330643,-0.00126906][0.834923,0.550367,0.000360391][0.776168,0.669675,0][-2.60858,0.238876,-0.696046][0.829769,0.546603,0.112736][0.587421,0.994597,0][-2.24805,-0.327452,-0.607574][0.830228,0.546038,0.112088][0.587563,0.669691,0][-2.60858,0.238876,-0.696046][0.829769,0.546603,0.112736][0.587421,0.994597,0][-2.32781,-0.330643,-0.00126906][0.834923,0.550367,0.000360391][0.776168,0.669675,0][-2.60858,0.238876,-0.696046][0.755883,0.53921,0.37134][0.958293,0.994595,0][-2.24805,-0.327452,-0.607574][0.770003,0.527193,0.359392][0.958277,0.66969,0][-2.33529,0.301635,-1.34348][0.719807,0.520978,0.458759][0.776167,0.994417,0][-2.01728,-0.297978,-1.17256][0.734582,0.511062,0.446323][0.776167,0.669675,0][-2.33529,0.301635,-1.34348][0.719807,0.520978,0.458759][0.776167,0.994417,0][-2.24805,-0.327452,-0.607574][0.770003,0.527193,0.359392][0.958277,0.66969,0][-2.33529,0.301635,-1.34348][0.719807,0.520978,0.458759][0.776167,0.994417,0][-2.01728,-0.297978,-1.17256][0.734582,0.511062,0.446323][0.776167,0.669675,0][-1.90573,0.337726,-1.89943][0.674107,0.501632,0.542166][0.587419,0.994595,0][-1.64516,-0.28681,-1.65772][0.684698,0.493303,0.536507][0.58756,0.66969,0][-1.90573,0.337726,-1.89943][0.674107,0.501632,0.542166][0.587419,0.994595,0][-2.01728,-0.297978,-1.17256][0.734582,0.511062,0.446323][0.776167,0.669675,0][-1.90573,0.337726,-1.89943][0.512769,0.487451,0.706724][0.958293,0.994591,0][-1.64516,-0.28681,-1.65772][0.515558,0.485487,0.706047][0.958277,0.66969,0][-1.34639,0.367841,-2.32604][0.417109,0.485114,0.76856][0.776166,0.994413,0][-1.16286,-0.260685,-2.03][0.422969,0.482898,0.766751][0.776166,0.669675,0][-1.34639,0.367841,-2.32604][0.417109,0.485114,0.76856][0.776166,0.994413,0][-1.64516,-0.28681,-1.65772][0.515558,0.485487,0.706047][0.958277,0.66969,0][-1.34639,0.367841,-2.32604][0.417109,0.485114,0.76856][0.776166,0.994413,0][-1.16286,-0.260685,-2.03][0.422969,0.482898,0.766751][0.776166,0.669675,0][-0.6913,0.394607,-2.59421][0.319027,0.47603,0.819523][0.587417,0.994591,0][-0.602827,-0.237463,-2.26403][0.322856,0.47333,0.819587][0.587559,0.66969,0][-0.6913,0.394607,-2.59421][0.319027,0.47603,0.819523][0.587417,0.994591,0][-1.16286,-0.260685,-2.03][0.422969,0.482898,0.766751][0.776166,0.669675,0][-0.6913,0.394607,-2.59421][0.115032,0.472543,0.873768][0.958293,0.994588,0][-0.602827,-0.237463,-2.26403][0.115033,0.472543,0.873768][0.958277,0.66969,0][0.00347748,0.394607,-2.68568][0.00300751,0.475699,0.879603][0.776166,0.99441,0][0.00347747,-0.237463,-2.34385][0.0021233,0.475934,0.879478][0.776166,0.669675,0][0.00347748,0.394607,-2.68568][0.00300751,0.475699,0.879603][0.776166,0.99441,0][-0.602827,-0.237463,-2.26403][0.115033,0.472543,0.873768][0.958277,0.66969,0][0.00347748,0.394607,-2.68568][0.00300751,0.475699,0.879603][0.776166,0.99441,0][0.00347747,-0.237463,-2.34385][0.0021233,0.475934,0.879478][0.776166,0.669675,0][0.702183,0.387563,-2.59421][-0.11013,0.473219,0.874034][0.587418,0.994588,0][0.607394,-0.243591,-2.26403][-0.110673,0.473695,0.873708][0.587559,0.66969,0][0.702183,0.387563,-2.59421][-0.11013,0.473219,0.874034][0.587418,0.994588,0][0.00347747,-0.237463,-2.34385][0.0021233,0.475934,0.879478][0.776166,0.669675,0][0.702183,0.387563,-2.59421][-0.322259,0.476362,0.818064][0.958294,0.994585,0][0.607394,-0.243591,-2.26403][-0.323431,0.477668,0.816839][0.958277,0.669689,0][1.35334,0.367531,-2.32604][-0.420271,0.483516,0.767844][0.776167,0.994407,0][1.16982,-0.260996,-2.03][-0.423541,0.485367,0.764874][0.776167,0.669674,0][1.35334,0.367531,-2.32604][-0.420271,0.483516,0.767844][0.776167,0.994407,0][0.607394,-0.243591,-2.26403][-0.323431,0.477668,0.816839][0.958277,0.669689,0][1.35334,0.367531,-2.32604][-0.420271,0.483516,0.767844][0.776167,0.994407,0][1.16982,-0.260996,-2.03][-0.423541,0.485367,0.764874][0.776167,0.669674,0][1.91267,0.33726,-1.89943][-0.515199,0.485586,0.706241][0.58742,0.994585,0][1.65211,-0.287275,-1.65772][-0.516575,0.487856,0.703667][0.587561,0.669689,0][1.91267,0.33726,-1.89943][-0.515199,0.485586,0.706241][0.58742,0.994585,0][1.16982,-0.260996,-2.03][-0.423541,0.485367,0.764874][0.776167,0.669674,0][1.91267,0.33726,-1.89943][-0.659602,0.494321,0.56619][0.958294,0.994583,0][1.65211,-0.287275,-1.65772][-0.663968,0.510911,0.546][0.958277,0.669689,0][2.34514,0.277535,-1.34347][-0.713002,0.523788,0.466127][0.776169,0.994405,0][2.02422,-0.298444,-1.17256][-0.716722,0.536802,0.445144][0.776169,0.669674,0][2.34514,0.277535,-1.34347][-0.713002,0.523788,0.466127][0.776169,0.994405,0][1.65211,-0.287275,-1.65772][-0.663968,0.510911,0.546][0.958277,0.669689,0][2.34514,0.277535,-1.34347][-0.713002,0.523788,0.466127][0.776169,0.994405,0][2.02422,-0.298444,-1.17256][-0.716722,0.536802,0.445144][0.776169,0.669674,0][2.61777,0.211736,-0.696047][-0.757861,0.540685,0.365112][0.587422,0.994583,0][2.25162,-0.350647,-0.607574][-0.756812,0.548639,0.35529][0.587564,0.669689,0][2.61777,0.211736,-0.696047][-0.757861,0.540685,0.365112][0.587422,0.994583,0][2.02422,-0.298444,-1.17256][-0.716722,0.536802,0.445144][0.776169,0.669674,0][2.61777,0.211736,-0.696047][-0.824378,0.554571,0.113368][0.958294,0.994583,0][2.25162,-0.350647,-0.607574][-0.824118,0.555096,0.11269][0.958278,0.669689,0][2.70901,0.205339,-0.00126888][-0.829236,0.558899,-0.000288507][0.776171,0.994405,0][2.33134,-0.354632,-0.00126886][-0.829245,0.558885,-0.000360083][0.776171,0.669674,0][2.70901,0.205339,-0.00126888][-0.829236,0.558899,-0.000288507][0.776171,0.994405,0][2.25162,-0.350647,-0.607574][-0.824118,0.555096,0.11269][0.958278,0.669689,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.00347742,-0.0078487,0.958032][0.252898,0.212681,0.943827][0.568706,0.61973,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.00347741,1.40366,0.639964][0.244176,0.331596,0.911275][0.568694,0.073124,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.00347742,-0.0078487,0.958032][0.252898,0.212681,0.943827][0.568706,0.61973,0][0.483128,-0.0078487,0.82951][0.487769,0.219827,0.844841][0.397677,0.619773,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.483128,-0.0078487,0.82951][0.362497,0.695811,0.620035][0.816176,0.237962,0][0.00347742,-0.0078487,0.958032][-2.26892e-007,0.705285,0.708924][0.783084,0.229095,0][0.483128,-0.0078487,0.82951][0.362497,0.695811,0.620035][0.816176,0.237962,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][0.834257,-0.00784872,0.478382][0.645995,0.671283,0.363413][0.840401,0.262187,0][0.483128,-0.0078487,0.82951][0.362497,0.695811,0.620035][0.816176,0.237962,0][0.834257,-0.00784872,0.478382][0.645995,0.671283,0.363413][0.840401,0.262187,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][0.483128,-0.0078487,0.82951][0.487769,0.219827,0.844841][0.397677,0.619773,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.483128,-0.0078487,0.82951][0.487769,0.219827,0.844841][0.397677,0.619773,0][0.834257,-0.00784872,0.478382][0.844841,0.219827,0.487769][0.176709,0.619773,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.00347742,-0.0078487,0.958032][-2.26892e-007,0.705285,0.708924][0.783084,0.229095,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][0.00347742,-0.0078487,0.958032][-0.252898,0.212681,0.943827][0.00769826,0.619729,0][0.00347741,1.40366,0.639964][-0.24439,0.329231,0.912075][0.00778993,0.0731228,0][-0.476173,-0.0078487,0.82951][-0.48777,0.219827,0.844841][0.176711,0.619772,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-0.476173,-0.0078487,0.82951][-0.48777,0.219827,0.844841][0.176711,0.619772,0][0.00347741,1.40366,0.639964][-0.24439,0.329231,0.912075][0.00778993,0.0731228,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][0.00347742,-0.0078487,0.958032][-2.26892e-007,0.705285,0.708924][0.783084,0.229095,0][-0.476173,-0.0078487,0.82951][-0.36662,0.699724,0.613169][0.749992,0.237962,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-0.476173,-0.0078487,0.82951][-0.36662,0.699724,0.613169][0.749992,0.237962,0][-0.827302,-0.00784872,0.478382][-0.646269,0.667242,0.370303][0.725767,0.262187,0][-0.476173,-0.0078487,0.82951][-0.36662,0.699724,0.613169][0.749992,0.237962,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][-0.476173,-0.0078487,0.82951][-0.48777,0.219827,0.844841][0.176711,0.619772,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-0.827302,-0.00784872,0.478382][-0.844842,0.219827,0.487769][0.397679,0.619772,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.827302,-0.00784872,0.478382][-0.844842,0.219827,0.487769][0.397679,0.619772,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-0.827302,-0.00784872,0.478382][-0.646269,0.667242,0.370303][0.725767,0.262187,0][-0.955824,-0.00784874,-0.00126896][-0.748677,0.662933,0.00135641][0.7169,0.295279,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-0.827302,-0.00784872,0.478382][-0.646269,0.667242,0.370303][0.725767,0.262187,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-0.827302,-0.00784872,0.478382][-0.844842,0.219827,0.487769][0.397679,0.619772,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.955824,-0.00784874,-0.00126896][-0.943827,0.212681,0.252897][0.568706,0.619729,0][-0.637756,1.40366,-0.00126901][-0.913751,0.324211,0.244839][0.568694,0.0731228,0][-0.955824,-0.00784874,-0.00126896][-0.943827,0.212681,0.252897][0.568706,0.619729,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-0.955824,-0.00784874,-0.00126896][-0.748677,0.662933,0.00135641][0.7169,0.295279,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-0.955824,-0.00784874,-0.00126896][-0.748677,0.662933,0.00135641][0.7169,0.295279,0][-0.827302,-0.00784876,-0.48092][-0.645924,0.673458,-0.359493][0.725767,0.328371,0][-0.637756,1.40366,-0.00126901][-0.914988,0.320451,-0.245171][0.00779194,0.0731233,0][-0.827302,-0.00784876,-0.48092][-0.844841,0.219827,-0.487769][0.176717,0.619773,0][-0.955824,-0.00784874,-0.00126896][-0.943827,0.212681,-0.252898][0.00770026,0.619729,0][-0.827302,-0.00784876,-0.48092][-0.844841,0.219827,-0.487769][0.176717,0.619773,0][-0.637756,1.40366,-0.00126901][-0.914988,0.320451,-0.245171][0.00779194,0.0731233,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-0.827302,-0.00784876,-0.48092][-0.645924,0.673458,-0.359493][0.725767,0.328371,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][-0.476173,-0.00784878,-0.832048][-0.354462,0.705285,-0.613946][0.749992,0.352596,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][-0.827302,-0.00784876,-0.48092][-0.645924,0.673458,-0.359493][0.725767,0.328371,0][-0.827302,-0.00784876,-0.48092][-0.844841,0.219827,-0.487769][0.176717,0.619773,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.476173,-0.00784878,-0.832048][-0.487769,0.219827,-0.844842][0.397687,0.619773,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][-0.476173,-0.00784878,-0.832048][-0.487769,0.219827,-0.844842][0.397687,0.619773,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][-0.476173,-0.00784878,-0.832048][-0.354462,0.705285,-0.613946][0.749992,0.352596,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][-0.476173,-0.00784878,-0.832048][-0.354462,0.705285,-0.613946][0.749992,0.352596,0][0.00347747,-0.00784878,-0.96057][0.00305419,0.703755,-0.710436][0.783084,0.361463,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][0.00347747,-0.00784878,-0.96057][-0.252897,0.212681,-0.943827][0.568706,0.619729,0][-0.476173,-0.00784878,-0.832048][-0.487769,0.219827,-0.844842][0.397687,0.619773,0][0.00347747,-0.00784878,-0.96057][-0.252897,0.212681,-0.943827][0.568706,0.619729,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][0.00347747,1.40366,-0.642502][-0.245273,0.319277,-0.915371][0.568694,0.0731233,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][0.00347747,-0.00784878,-0.96057][0.00305419,0.703755,-0.710436][0.783084,0.361463,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][0.483128,-0.00784878,-0.832048][0.368884,0.690435,-0.622273][0.816176,0.352596,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][0.00347747,-0.00784878,-0.96057][0.00305419,0.703755,-0.710436][0.783084,0.361463,0][0.00347747,-0.00784878,-0.96057][0.252898,0.212681,-0.943827][0.00769953,0.61973,0][0.00347747,1.40366,-0.642502][0.245067,0.321638,-0.914599][0.00779121,0.0731245,0][0.483128,-0.00784878,-0.832048][0.48777,0.219827,-0.844841][0.176715,0.619773,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.483128,-0.00784878,-0.832048][0.48777,0.219827,-0.844841][0.176715,0.619773,0][0.00347747,1.40366,-0.642502][0.245067,0.321638,-0.914599][0.00779121,0.0731245,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][0.483128,-0.00784878,-0.832048][0.368884,0.690435,-0.622273][0.816176,0.352596,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][0.834257,-0.00784876,-0.480919][0.646623,0.666785,-0.370509][0.840401,0.328371,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][0.483128,-0.00784878,-0.832048][0.368884,0.690435,-0.622273][0.816176,0.352596,0][0.483128,-0.00784878,-0.832048][0.48777,0.219827,-0.844841][0.176715,0.619773,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.834257,-0.00784876,-0.480919][0.844842,0.219827,-0.487769][0.397685,0.619773,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.834257,-0.00784876,-0.480919][0.844842,0.219827,-0.487769][0.397685,0.619773,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][0.834257,-0.00784876,-0.480919][0.646623,0.666785,-0.370509][0.840401,0.328371,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][0.962779,-0.00784874,-0.00126887][0.749079,0.662479,-0.00135496][0.849268,0.295279,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][0.834257,-0.00784876,-0.480919][0.646623,0.666785,-0.370509][0.840401,0.328371,0][0.834257,-0.00784876,-0.480919][0.844842,0.219827,-0.487769][0.397685,0.619773,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.962779,-0.00784874,-0.00126887][0.943827,0.212681,-0.252898][0.568706,0.61973,0][0.644711,1.40366,-0.00126893][0.912922,0.326704,-0.244617][0.568694,0.0731245,0][0.962779,-0.00784874,-0.00126887][0.943827,0.212681,-0.252898][0.568706,0.61973,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][0.962779,-0.00784874,-0.00126887][0.749079,0.662479,-0.00135496][0.849268,0.295279,0][0.834257,-0.00784872,0.478382][0.645995,0.671283,0.363413][0.840401,0.262187,0][0.962779,-0.00784874,-0.00126887][0.749079,0.662479,-0.00135496][0.849268,0.295279,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][0.834257,-0.00784872,0.478382][0.844841,0.219827,0.487769][0.176709,0.619773,0][0.644711,1.40366,-0.00126893][0.911657,0.330468,0.244278][0.0077892,0.073124,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.644711,1.40366,-0.00126893][0.911657,0.330468,0.244278][0.0077892,0.073124,0][0.834257,-0.00784872,0.478382][0.844841,0.219827,0.487769][0.176709,0.619773,0][0.962779,-0.00784874,-0.00126887][0.943827,0.212681,0.252898][0.00769753,0.61973,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][-0.636668,-0.255119,2.38779][-0.114434,-0.876731,0.467171][0.738919,0.130454,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][0.641056,-0.261585,2.38779][0.110153,-0.876422,0.468775][0.827249,0.130454,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][1.744,-0.307697,1.74764][0.291511,-0.894735,0.338334][0.903745,0.174619,0][2.37687,-0.374595,0.638877][0.379676,-0.916569,0.125489][0.947909,0.251114,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][2.37687,-0.374595,-0.641415][0.379676,-0.916569,-0.125489][0.947909,0.339444,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][1.744,-0.307697,-1.75018][0.291511,-0.894736,-0.338334][0.903745,0.415939,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][0.641056,-0.261585,-2.39032][0.110153,-0.876423,-0.468775][0.827249,0.460104,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-0.636668,-0.255119,-2.39032][-0.114434,-0.876731,-0.46717][0.738919,0.460104,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-1.73705,-0.307233,-1.75018][-0.295715,-0.890188,-0.34658][0.662424,0.415939,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][-2.37354,-0.350143,-0.641415][-0.41938,-0.899139,-0.125179][0.618259,0.339444,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-2.37354,-0.350142,0.638876][-0.41938,-0.899139,0.125179][0.618259,0.251114,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][-1.73705,-0.307233,1.74764][-0.295715,-0.890188,0.34658][0.662424,0.174619,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][2.33134,-0.354632,-0.00126886][-0.138131,0.990414,-1.46814e-005][0.944703,0.295279,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][2.33134,-0.354632,-0.00126886][-0.138131,0.990414,-1.46814e-005][0.944703,0.295279,0][2.25162,-0.350647,-0.607574][-0.131169,0.987942,0.0822566][0.939196,0.337109,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][2.25162,-0.350647,0.605036][-0.13087,0.987978,-0.0822921][0.939196,0.253449,0][2.33134,-0.354632,-0.00126886][-0.138131,0.990414,-1.46814e-005][0.944703,0.295279,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][2.02422,-0.298444,1.17002][-0.147627,0.98029,-0.131293][0.92305,0.21447,0][2.25162,-0.350647,0.605036][-0.13087,0.987978,-0.0822921][0.939196,0.253449,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][2.02422,-0.298444,1.17002][-0.147627,0.98029,-0.131293][0.92305,0.21447,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][1.65211,-0.287275,1.65519][-0.132359,0.975625,-0.175035][0.897366,0.180997,0][2.02422,-0.298444,1.17002][-0.147627,0.98029,-0.131293][0.92305,0.21447,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][0.607394,-0.243591,2.26149][-0.0530888,0.961496,-0.269643][0.824914,0.139167,0][1.16982,-0.260996,2.02747][-0.098451,0.970453,-0.220292][0.863894,0.155313,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][1.65211,-0.287275,1.65519][-0.132359,0.975625,-0.175035][0.897366,0.180997,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][1.16982,-0.260996,2.02747][-0.098451,0.970453,-0.220292][0.863894,0.155313,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][1.16982,-0.260996,2.02747][-0.098451,0.970453,-0.220292][0.863894,0.155313,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][0.00347736,-0.237463,2.34131][0.00483002,0.963591,-0.267336][0.783084,0.133661,0][0.607394,-0.243591,2.26149][-0.0530888,0.961496,-0.269643][0.824914,0.139167,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][0.00347736,-0.237463,2.34131][0.00483002,0.963591,-0.267336][0.783084,0.133661,0][-0.602828,-0.237463,2.26149][0.0540318,0.960796,-0.271941][0.741254,0.139167,0][0.00347736,-0.237463,2.34131][0.00483002,0.963591,-0.267336][0.783084,0.133661,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][-1.16287,-0.260685,2.02747][0.0947346,0.968076,-0.232063][0.702275,0.155313,0][-0.602828,-0.237463,2.26149][0.0540318,0.960796,-0.271941][0.741254,0.139167,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.16287,-0.260685,2.02747][0.0947346,0.968076,-0.232063][0.702275,0.155313,0][-1.64516,-0.28681,1.65519][0.146831,0.970946,-0.188958][0.668803,0.180997,0][-1.16287,-0.260685,2.02747][0.0947346,0.968076,-0.232063][0.702275,0.155313,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-2.01728,-0.297977,1.17002][0.179034,0.97408,-0.138256][0.643118,0.21447,0][-1.64516,-0.28681,1.65519][0.146831,0.970946,-0.188958][0.668803,0.180997,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-2.01728,-0.297977,1.17002][0.179034,0.97408,-0.138256][0.643118,0.21447,0][-2.24805,-0.327452,0.605036][0.199525,0.976587,-0.0804205][0.626973,0.253449,0][-2.01728,-0.297977,1.17002][0.179034,0.97408,-0.138256][0.643118,0.21447,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-2.32781,-0.330643,-0.00126906][0.202209,0.979342,-1.87415e-005][0.621466,0.295279,0][-2.24805,-0.327452,0.605036][0.199525,0.976587,-0.0804205][0.626973,0.253449,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-2.32781,-0.330643,-0.00126906][0.202209,0.979342,-1.87415e-005][0.621466,0.295279,0][-2.24805,-0.327452,-0.607574][0.199802,0.976532,0.0804003][0.626973,0.337109,0][-2.32781,-0.330643,-0.00126906][0.202209,0.979342,-1.87415e-005][0.621466,0.295279,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-2.01728,-0.297978,-1.17256][0.179408,0.973984,0.138447][0.643118,0.376088,0][-2.24805,-0.327452,-0.607574][0.199802,0.976532,0.0804003][0.626973,0.337109,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-2.01728,-0.297978,-1.17256][0.179408,0.973984,0.138447][0.643118,0.376088,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-1.64516,-0.28681,-1.65772][0.147307,0.970798,0.189346][0.668802,0.409561,0][-2.01728,-0.297978,-1.17256][0.179408,0.973984,0.138447][0.643118,0.376088,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-1.16286,-0.260685,-2.03][0.0951117,0.9679,0.232644][0.702275,0.435245,0][-1.64516,-0.28681,-1.65772][0.147307,0.970798,0.189346][0.668802,0.409561,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][-1.16286,-0.260685,-2.03][0.0951117,0.9679,0.232644][0.702275,0.435245,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][-0.602827,-0.237463,-2.26403][0.0542681,0.960548,0.272768][0.741254,0.451391,0][-1.16286,-0.260685,-2.03][0.0951117,0.9679,0.232644][0.702275,0.435245,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][0.00347747,-0.237463,-2.34385][0.00482875,0.96337,0.268131][0.783084,0.456898,0][0.607394,-0.243591,-2.26403][-0.0533275,0.961253,0.270462][0.824914,0.451391,0][0.00347747,-0.237463,-2.34385][0.00482875,0.96337,0.268131][0.783084,0.456898,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][0.00347747,-0.237463,-2.34385][0.00482875,0.96337,0.268131][0.783084,0.456898,0][-0.602827,-0.237463,-2.26403][0.0542681,0.960548,0.272768][0.741254,0.451391,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][1.16982,-0.260996,-2.03][-0.0988123,0.970292,0.22084][0.863894,0.435245,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][0.607394,-0.243591,-2.26403][-0.0533275,0.961253,0.270462][0.824914,0.451391,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][1.16982,-0.260996,-2.03][-0.0988123,0.970292,0.22084][0.863894,0.435245,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][1.65211,-0.287275,-1.65772][-0.132806,0.975499,0.1754][0.897366,0.409561,0][1.16982,-0.260996,-2.03][-0.0988123,0.970292,0.22084][0.863894,0.435245,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][2.02422,-0.298444,-1.17256][-0.147974,0.980213,0.131481][0.92305,0.376088,0][1.65211,-0.287275,-1.65772][-0.132806,0.975499,0.1754][0.897366,0.409561,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][2.02422,-0.298444,-1.17256][-0.147974,0.980213,0.131481][0.92305,0.376088,0][2.25162,-0.350647,-0.607574][-0.131169,0.987942,0.0822566][0.939196,0.337109,0][2.02422,-0.298444,-1.17256][-0.147974,0.980213,0.131481][0.92305,0.376088,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.379719,1.60963,0.373841][0.28224,0.916887,0.28224][0.809042,0.2694,0][0.536355,1.60963,-0.00431201][0.399147,0.916887,0][0.819848,0.295489,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.00156623,1.60963,0.530477][0,0.916887,0.399147][0.782952,0.258593,0][0.379719,1.60963,0.373841][0.28224,0.916887,0.28224][0.809042,0.2694,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][-0.376587,1.60963,0.373841][-0.282239,0.916887,0.28224][0.756863,0.2694,0][0.00156623,1.60963,0.530477][0,0.916887,0.399147][0.782952,0.258593,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][-0.533224,1.60963,-0.00431206][-0.399147,0.916887,0][0.746056,0.295489,0][-0.376587,1.60963,0.373841][-0.282239,0.916887,0.28224][0.756863,0.2694,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][-0.376587,1.60963,-0.382465][-0.282239,0.916887,-0.28224][0.756863,0.321579,0][-0.533224,1.60963,-0.00431206][-0.399147,0.916887,0][0.746056,0.295489,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.00156623,1.60963,-0.539101][0,0.916887,-0.399147][0.782952,0.332385,0][-0.376587,1.60963,-0.382465][-0.282239,0.916887,-0.28224][0.756863,0.321579,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.37972,1.60963,-0.382465][0.28224,0.916887,-0.282239][0.809042,0.321579,0][0.00156623,1.60963,-0.539101][0,0.916887,-0.399147][0.782952,0.332385,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.536355,1.60963,-0.00431201][0.399147,0.916887,0][0.819848,0.295489,0][0.37972,1.60963,-0.382465][0.28224,0.916887,-0.282239][0.809042,0.321579,0][0.37972,1.60963,-0.382465][0.603713,0.516721,-0.607067][0.28686,0.0146893,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.379719,1.60963,0.373841][0.599892,0.530254,0.599133][0.286856,0.0146886,0][-0.376587,1.60963,0.373841][-0.604883,0.521792,0.601539][0.286867,0.0146884,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-0.376587,1.60963,-0.382465][-0.608661,0.508059,-0.609432][0.286871,0.014689,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.533224,1.60963,-0.00431206][-0.830464,0.488352,-0.268034][0.00782294,0.0146724,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.376587,1.60963,-0.382465][-0.608661,0.508059,-0.609432][0.286871,0.014689,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][-0.376587,1.60963,-0.382465][-0.608661,0.508059,-0.609432][0.286871,0.014689,0][0.00156623,1.60963,-0.539101][-0.268396,0.485935,-0.831763][0.56869,0.0146724,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][0.00156623,1.60963,-0.539101][0.267811,0.489821,-0.829671][0.00782046,0.0146726,0][0.37972,1.60963,-0.382465][0.603713,0.516721,-0.607067][0.28686,0.0146893,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.37972,1.60963,-0.382465][0.603713,0.516721,-0.607067][0.28686,0.0146893,0][0.536355,1.60963,-0.00431201][0.823949,0.500242,-0.266208][0.56869,0.0146726,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.536355,1.60963,-0.00431201][0.820581,0.506247,0.265257][0.00781955,0.014672,0][0.379719,1.60963,0.373841][0.599892,0.530254,0.599133][0.286856,0.0146886,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.379719,1.60963,0.373841][0.599892,0.530254,0.599133][0.286856,0.0146886,0][0.00156623,1.60963,0.530477][0.264887,0.508568,0.819264][0.568689,0.014672,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.00156623,1.60963,0.530477][-0.265487,0.504823,0.821383][0.00782204,0.0146717,0][-0.376587,1.60963,0.373841][-0.604883,0.521792,0.601539][0.286867,0.0146884,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-0.376587,1.60963,0.373841][-0.604883,0.521792,0.601539][0.286867,0.0146884,0][-0.533224,1.60963,-0.00431206][-0.827123,0.494497,0.267097][0.56869,0.0146717,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.637756,1.40366,-0.00126901][-0.913751,0.324211,0.244839][0.568694,0.0731228,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.533224,1.60963,-0.00431206][-0.827123,0.494497,0.267097][0.56869,0.0146717,0][-0.533224,1.60963,-0.00431206][-0.830464,0.488352,-0.268034][0.00782294,0.0146724,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.637756,1.40366,-0.00126901][-0.914988,0.320451,-0.245171][0.00779194,0.0731233,0][0.00156623,1.60963,-0.539101][-0.268396,0.485935,-0.831763][0.56869,0.0146724,0][0.00347747,1.40366,-0.642502][-0.245273,0.319277,-0.915371][0.568694,0.0731233,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][0.00156623,1.60963,-0.539101][0.267811,0.489821,-0.829671][0.00782046,0.0146726,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.00347747,1.40366,-0.642502][0.245067,0.321638,-0.914599][0.00779121,0.0731245,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.644711,1.40366,-0.00126893][0.911657,0.330468,0.244278][0.0077892,0.073124,0][0.536355,1.60963,-0.00431201][0.820581,0.506247,0.265257][0.00781955,0.014672,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.536355,1.60963,-0.00431201][0.823949,0.500242,-0.266208][0.56869,0.0146726,0][0.644711,1.40366,-0.00126893][0.912922,0.326704,-0.244617][0.568694,0.0731245,0][0.00347741,1.40366,0.639964][-0.24439,0.329231,0.912075][0.00778993,0.0731228,0][0.00156623,1.60963,0.530477][-0.265487,0.504823,0.821383][0.00782204,0.0146717,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][0.00347741,1.40366,0.639964][0.244176,0.331596,0.911275][0.568694,0.073124,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.00156623,1.60963,0.530477][0.264887,0.508568,0.819264][0.568689,0.014672,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][-2.37354,-0.350142,0.638876][-0.41938,-0.899139,0.125179][0.618259,0.251114,0][-2.37354,-0.350143,-0.641415][-0.41938,-0.899139,-0.125179][0.618259,0.339444,0][-2.37354,-0.350143,-0.641415][-0.829169,-0.555671,-0.0609038][0.00616511,0.633586,0][-2.37354,-0.350142,0.638876][-0.829169,-0.555671,0.0609038][0.572306,0.633586,0][-2.78056,0.187052,-0.00126912][-0.828995,-0.559257,0][0.287982,0.991993,0][-2.68642,0.192706,0.715071][-0.853385,-0.508174,0.11616][0.572309,0.992026,0][-2.78056,0.187052,-0.00126912][-0.828995,-0.559257,0][0.287982,0.991993,0][-2.37354,-0.350142,0.638876][-0.829169,-0.555671,0.0609038][0.572306,0.633586,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-1.73705,-0.307233,1.74764][-0.295715,-0.890188,0.34658][0.662424,0.174619,0][-2.37354,-0.350142,0.638876][-0.41938,-0.899139,0.125179][0.618259,0.251114,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][-0.636668,-0.255119,2.38779][-0.114434,-0.876731,0.467171][0.738919,0.130454,0][-1.73705,-0.307233,1.74764][-0.295715,-0.890188,0.34658][0.662424,0.174619,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][0.641056,-0.261585,2.38779][0.110153,-0.876422,0.468775][0.827249,0.130454,0][-0.636668,-0.255119,2.38779][-0.114434,-0.876731,0.467171][0.738919,0.130454,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][1.744,-0.307697,1.74764][0.291511,-0.894735,0.338334][0.903745,0.174619,0][0.641056,-0.261585,2.38779][0.110153,-0.876422,0.468775][0.827249,0.130454,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][2.37687,-0.374595,0.638877][0.379676,-0.916569,0.125489][0.947909,0.251114,0][1.744,-0.307697,1.74764][0.291511,-0.894735,0.338334][0.903745,0.174619,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][2.37687,-0.374595,-0.641415][0.379676,-0.916569,-0.125489][0.947909,0.339444,0][2.37687,-0.374595,0.638877][0.379676,-0.916569,0.125489][0.947909,0.251114,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][1.744,-0.307697,-1.75018][0.291511,-0.894736,-0.338334][0.903745,0.415939,0][2.37687,-0.374595,-0.641415][0.379676,-0.916569,-0.125489][0.947909,0.339444,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][0.641056,-0.261585,-2.39032][0.110153,-0.876423,-0.468775][0.827249,0.460104,0][1.744,-0.307697,-1.75018][0.291511,-0.894736,-0.338334][0.903745,0.415939,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][-0.636668,-0.255119,-2.39032][-0.114434,-0.876731,-0.46717][0.738919,0.460104,0][0.641056,-0.261585,-2.39032][0.110153,-0.876423,-0.468775][0.827249,0.460104,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-1.73705,-0.307233,-1.75018][-0.295715,-0.890188,-0.34658][0.662424,0.415939,0][-0.636668,-0.255119,-2.39032][-0.114434,-0.876731,-0.46717][0.738919,0.460104,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-2.37354,-0.350143,-0.641415][-0.41938,-0.899139,-0.125179][0.618259,0.339444,0][-1.73705,-0.307233,-1.75018][-0.295715,-0.890188,-0.34658][0.662424,0.415939,0][-2.40572,0.257365,-1.38513][-0.723441,-0.520863,-0.45314][0.28798,0.991993,0][-1.73705,-0.307233,-1.75018][-0.701869,-0.509211,-0.49808][0.006165,0.633586,0][-2.37354,-0.350143,-0.641415][-0.745122,-0.531946,-0.402277][0.572306,0.633586,0][-1.38721,0.325598,-2.39819][-0.418144,-0.488374,-0.765928][0.287979,0.991993,0][-0.636668,-0.255119,-2.39032][-0.367153,-0.485268,-0.793545][0.00616495,0.633586,0][-1.73705,-0.307233,-1.75018][-0.468209,-0.49244,-0.733677][0.572306,0.633586,0][0.00347748,0.353189,-2.76899][-0.0026699,-0.480507,-0.876987][0.287979,0.991994,0][0.641056,-0.261585,-2.39032][0.0555046,-0.481275,-0.874811][0.00616496,0.633586,0][-0.636668,-0.255119,-2.39032][-0.0604646,-0.480871,-0.874704][0.572306,0.633586,0][1.39416,0.325288,-2.39819][0.420353,-0.488405,-0.764699][0.28798,0.991994,0][1.744,-0.307697,-1.75018][0.468934,-0.491853,-0.733609][0.00616503,0.633587,0][0.641056,-0.261585,-2.39032][0.370631,-0.486215,-0.791345][0.572306,0.633587,0][2.41513,0.232562,-1.38513][0.713683,-0.528824,-0.459348][0.287983,0.991994,0][2.37687,-0.374595,-0.641415][0.737187,-0.541498,-0.404147][0.00616515,0.633587,0][1.744,-0.307697,-1.75018][0.690679,-0.514859,-0.507822][0.572306,0.633587,0][2.78923,0.158196,-0.00126888][0.823215,-0.567729,0][0.287986,0.991994,0][2.37687,-0.374595,0.638877][0.823442,-0.564121,0.0609108][0.00616528,0.633587,0][2.37687,-0.374595,-0.641415][0.823442,-0.564121,-0.060911][0.572306,0.633587,0][2.41513,0.232562,1.38259][0.713683,-0.528824,0.459349][0.287988,0.991994,0][1.744,-0.307697,1.74764][0.690678,-0.514858,0.507823][0.00616539,0.633587,0][2.37687,-0.374595,0.638877][0.737187,-0.541498,0.404148][0.572306,0.633587,0][1.39416,0.325288,2.39565][0.420353,-0.488405,0.764699][0.287989,0.991993,0][0.641056,-0.261585,2.38779][0.370631,-0.486216,0.791345][0.00616545,0.633586,0][1.744,-0.307697,1.74764][0.468934,-0.491853,0.733609][0.572306,0.633586,0][0.00347733,0.35319,2.76646][-0.0026699,-0.480507,0.876987][0.287989,0.991993,0][-0.636668,-0.255119,2.38779][-0.0604644,-0.480871,0.874704][0.00616544,0.633586,0][0.641056,-0.261585,2.38779][0.0555044,-0.481275,0.87481][0.572306,0.633586,0][-1.38721,0.325598,2.39565][-0.418144,-0.488374,0.765928][0.287987,0.991993,0][-1.73705,-0.307233,1.74764][-0.468209,-0.49244,0.733678][0.00616536,0.633586,0][-0.636668,-0.255119,2.38779][-0.367153,-0.485268,0.793545][0.572306,0.633586,0][-2.40572,0.257365,1.38259][-0.723441,-0.520863,0.453139][0.287985,0.991993,0][-2.37354,-0.350142,0.638876][-0.745122,-0.531946,0.402277][0.00616524,0.633586,0][-1.73705,-0.307233,1.74764][-0.701869,-0.509211,0.49808][0.572306,0.633586,0][-0.712863,0.35319,2.67215][-0.326627,-0.433518,0.839867][0.572309,0.992026,0][-1.38721,0.325598,2.39565][-0.418144,-0.488374,0.765928][0.287987,0.991993,0][-0.636668,-0.255119,2.38779][-0.367153,-0.485268,0.793545][0.572306,0.633586,0][-1.96337,0.29456,1.95581][-0.690738,-0.454356,0.562531][0.572309,0.992026,0][-2.40572,0.257365,1.38259][-0.723441,-0.520863,0.453139][0.287985,0.991993,0][-1.73705,-0.307233,1.74764][-0.701869,-0.509211,0.49808][0.572306,0.633586,0][0.641056,-0.261585,2.38779][0.0555044,-0.481275,0.87481][0.572306,0.633586,0][0.72333,0.345931,2.67215][0.112747,-0.433711,0.89397][0.572309,0.992026,0][0.00347733,0.35319,2.76646][-0.0026699,-0.480507,0.876987][0.287989,0.991993,0][1.744,-0.307697,1.74764][0.468934,-0.491853,0.733609][0.572306,0.633586,0][1.97031,0.294094,1.95581][0.527045,-0.448012,0.722156][0.572309,0.992026,0][1.39416,0.325288,2.39565][0.420353,-0.488405,0.764699][0.287989,0.991993,0][2.37687,-0.374595,0.638877][0.737187,-0.541498,0.404148][0.572306,0.633587,0][2.69515,0.164792,0.715071][0.773695,-0.509695,0.376306][0.572309,0.992026,0][2.41513,0.232562,1.38259][0.713683,-0.528824,0.459349][0.287988,0.991994,0][2.37687,-0.374595,-0.641415][0.823442,-0.564121,-0.060911][0.572306,0.633587,0][2.69515,0.164792,-0.71761][0.848145,-0.516875,-0.116146][0.572309,0.992026,0][2.78923,0.158196,-0.00126888][0.823215,-0.567729,0][0.287986,0.991994,0][0.641056,-0.261585,-2.39032][0.370631,-0.486215,-0.791345][0.572306,0.633587,0][0.72333,0.345931,-2.67469][0.331354,-0.436419,-0.836506][0.572309,0.992026,0][1.39416,0.325288,-2.39819][0.420353,-0.488405,-0.764699][0.28798,0.991994,0][-0.712863,0.353189,-2.67469][-0.117682,-0.432593,-0.893876][0.572309,0.992026,0][0.00347748,0.353189,-2.76899][-0.0026699,-0.480507,-0.876987][0.287979,0.991994,0][-0.636668,-0.255119,-2.39032][-0.0604646,-0.480871,-0.874704][0.572306,0.633586,0][-1.38721,0.325598,-2.39819][-0.418144,-0.488374,-0.765928][0.287979,0.991993,0][-1.73705,-0.307233,-1.75018][-0.468209,-0.49244,-0.733677][0.572306,0.633586,0][-1.96337,0.294559,-1.95835][-0.527117,-0.448019,-0.722099][0.572309,0.992026,0][-2.37354,-0.350143,-0.641415][-0.745122,-0.531946,-0.402277][0.572306,0.633586,0][-2.68642,0.192706,-0.717609][-0.77894,-0.501758,-0.376154][0.572309,0.992026,0][-2.40572,0.257365,-1.38513][-0.723441,-0.520863,-0.45314][0.28798,0.991993,0][2.41513,0.232562,-1.38513][0.713683,-0.528824,-0.459348][0.287983,0.991994,0][1.744,-0.307697,-1.75018][0.690679,-0.514859,-0.507822][0.572306,0.633587,0][1.97032,0.294094,-1.95835][0.679332,-0.454716,-0.57597][0.572309,0.992026,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/StrawHat.mesh b/charcustom/hats/fonts/StrawHat.mesh
new file mode 100644
index 0000000..7db5d0d
--- /dev/null
+++ b/charcustom/hats/fonts/StrawHat.mesh
@@ -0,0 +1,3 @@
+version 1.00
+96
+[0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.94086,-0.750001,-0.520051][0,-2,0][0.125909,0.952531,0][2.00932,-0.750001,0][0,-2,0][0.128091,0.935955,0][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.119511,0.967977,-1.19209e-007][1.94086,-0.750001,-0.520051][0,-2,0][0.125909,0.952531,0][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.4208,-0.750001,-1.4208][0,-2,0][0.109333,0.981242,-1.78814e-007][1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.119511,0.967977,-1.19209e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.00466,-0.750001,-1.74012][0,-2,0][0.0960682,0.99142,-1.78814e-007][1.4208,-0.750001,-1.4208][0,-2,0][0.109333,0.981242,-1.78814e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][0.520051,-0.750001,-1.94086][0,-2,0][0.0806217,0.997818,-2.38419e-007][1.00466,-0.750001,-1.74012][0,-2,0][0.0960682,0.99142,-1.78814e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.517e-007,-0.750001,-2.00932][0,-2,0][0.0640455,1,-2.38419e-007][0.520051,-0.750001,-1.94086][0,-2,0][0.0806217,0.997818,-2.38419e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-0.52005,-0.750001,-1.94086][0,-2,0][0.0474693,0.997818,-2.38419e-007][1.517e-007,-0.750001,-2.00932][0,-2,0][0.0640455,1,-2.38419e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-1.00466,-0.750001,-1.74012][0,-2,0][0.0320227,0.99142,-1.78814e-007][-0.52005,-0.750001,-1.94086][0,-2,0][0.0474693,0.997818,-2.38419e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-1.4208,-0.750001,-1.42081][0,-2,0][0.0187585,0.981241,-1.78814e-007][-1.00466,-0.750001,-1.74012][0,-2,0][0.0320227,0.99142,-1.78814e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.00858049,0.967977,-1.19209e-007][-1.4208,-0.750001,-1.42081][0,-2,0][0.0187585,0.981241,-1.78814e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-1.94086,-0.750001,-0.520051][0,-2,0][0.00218231,0.952531,0][-1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.00858049,0.967977,-1.19209e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-2.00932,-0.750001,-7.49675e-007][0,-2,0][0,0.935955,0][-1.94086,-0.750001,-0.520051][0,-2,0][0.00218231,0.952531,0][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-1.94086,-0.750001,0.52005][0,-2,0][0.00218231,0.919378,0][-2.00932,-0.750001,-7.49675e-007][0,-2,0][0,0.935955,0][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.00858044,0.903932,1.19209e-007][-1.94086,-0.750001,0.52005][0,-2,0][0.00218231,0.919378,0][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-1.42081,-0.750001,1.4208][0,-2,0][0.0187585,0.890668,1.78814e-007][-1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.00858044,0.903932,1.19209e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-1.00466,-0.750001,1.74012][0,-2,0][0.0320227,0.88049,2.08616e-007][-1.42081,-0.750001,1.4208][0,-2,0][0.0187585,0.890668,1.78814e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-0.520051,-0.750001,1.94086][0,-2,0][0.0474693,0.874091,2.38419e-007][-1.00466,-0.750001,1.74012][0,-2,0][0.0320227,0.88049,2.08616e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][-9.34158e-007,-0.750001,2.00932][0,-2,0][0.0640455,0.871909,2.38419e-007][-0.520051,-0.750001,1.94086][0,-2,0][0.0474693,0.874091,2.38419e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][0.52005,-0.750001,1.94086][0,-2,0][0.0806217,0.874091,2.38419e-007][-9.34158e-007,-0.750001,2.00932][0,-2,0][0.0640455,0.871909,2.38419e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.00466,-0.750001,1.74012][0,-2,0][0.0960682,0.880489,2.08616e-007][0.52005,-0.750001,1.94086][0,-2,0][0.0806217,0.874091,2.38419e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.4208,-0.750001,1.42081][0,-2,0][0.109332,0.890667,1.78814e-007][1.00466,-0.750001,1.74012][0,-2,0][0.0960682,0.880489,2.08616e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.119511,0.903932,1.19209e-007][1.4208,-0.750001,1.42081][0,-2,0][0.109332,0.890667,1.78814e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][1.94086,-0.750001,0.520052][0,-2,0][0.125909,0.919378,0][1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.119511,0.903932,1.19209e-007][0,-0.750001,0][0,-1,0][0.0640455,0.935955,0][2.00932,-0.750001,0][0,-2,0][0.128091,0.935955,0][1.94086,-0.750001,0.520052][0,-2,0][0.125909,0.919378,0][2.00932,-0.750001,0][0,-2,0][0.162689,0.754765,0][0.144889,0.749999,-0.0388229][1.83463,2.32697,-0.406298][0.393986,0.438217,0][0.15,0.749999,0][1.87727,2.32697,0.0823829][0.399823,0.444023,0][2.00932,-0.750001,0][0,-2,0][0.162689,0.754765,0][1.94086,-0.750001,-0.520051][0,-2,0][0.0845061,0.676996,0][0.144889,0.749999,-0.0388229][1.83463,2.32697,-0.406298][0.393986,0.438217,0][1.94086,-0.750001,-0.520051][0,-2,0][0.0845061,0.676996,0][0.129904,0.749999,-0.075][1.66696,2.32697,-0.86729][0.389851,0.431099,0][0.144889,0.749999,-0.0388229][1.83463,2.32697,-0.406298][0.393986,0.438217,0][1.94086,-0.750001,-0.520051][0,-2,0][0.0845061,0.676996,0][1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.0291159,0.581642,0][0.129904,0.749999,-0.075][1.66696,2.32697,-0.86729][0.389851,0.431099,0][1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.0291159,0.581642,0][0.106066,0.749999,-0.106066][1.38568,2.32697,-1.26918][0.3877,0.423153,0][0.129904,0.749999,-0.075][1.66696,2.32697,-0.86729][0.389851,0.431099,0][1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.0291159,0.581642,0][1.4208,-0.750001,-1.4208][0,-2,0][0.000292397,0.475201,0][0.106066,0.749999,-0.106066][1.38568,2.32697,-1.26918][0.3877,0.423153,0][1.4208,-0.750001,-1.4208][0,-2,0][0.000292397,0.475201,0][0.075,0.749999,-0.129904][1.00998,2.32697,-1.58457][0.387678,0.41492,0][0.106066,0.749999,-0.106066][1.38568,2.32697,-1.26918][0.3877,0.423153,0][1.4208,-0.750001,-1.4208][0,-2,0][0.000292397,0.475201,0][1.00466,-0.750001,-1.74012][0,-2,0][0,0.364927,0][0.075,0.749999,-0.129904][1.00998,2.32697,-1.58457][0.387678,0.41492,0][1.00466,-0.750001,-1.74012][0,-2,0][0,0.364927,0][0.0388229,0.749999,-0.144889][0.565449,2.32697,-1.79198][0.389787,0.406963,0][0.075,0.749999,-0.129904][1.00998,2.32697,-1.58457][0.387678,0.41492,0][1.00466,-0.750001,-1.74012][0,-2,0][0,0.364927,0][0.520051,-0.750001,-1.94086][0,-2,0][0.0282586,0.258335,0][0.0388229,0.749999,-0.144889][0.565449,2.32697,-1.79198][0.389787,0.406963,0][0.520051,-0.750001,-1.94086][0,-2,0][0.0282586,0.258335,0][0,0.749999,-0.15][0.0823825,2.32697,-1.87727][0.393885,0.399823,0][0.0388229,0.749999,-0.144889][0.565449,2.32697,-1.79198][0.389787,0.406963,0][0.520051,-0.750001,-1.94086][0,-2,0][0.0282586,0.258335,0][1.517e-007,-0.750001,-2.00932][0,-2,0][0.0831424,0.162688,0][0,0.749999,-0.15][0.0823825,2.32697,-1.87727][0.393885,0.399823,0][1.517e-007,-0.750001,-2.00932][0,-2,0][0.0831424,0.162688,0][-0.0388228,0.749999,-0.144889][-0.406298,2.32697,-1.83463][0.39969,0.393986,0][0,0.749999,-0.15][0.0823825,2.32697,-1.87727][0.393885,0.399823,0][1.517e-007,-0.750001,-2.00932][0,-2,0][0.0831424,0.162688,0][-0.52005,-0.750001,-1.94086][0,-2,0][0.160911,0.0845061,0][-0.0388228,0.749999,-0.144889][-0.406298,2.32697,-1.83463][0.39969,0.393986,0][-0.52005,-0.750001,-1.94086][0,-2,0][0.160911,0.0845061,0][-0.075,0.749999,-0.129904][-0.86729,2.32697,-1.66696][0.406809,0.389851,0][-0.0388228,0.749999,-0.144889][-0.406298,2.32697,-1.83463][0.39969,0.393986,0][-0.52005,-0.750001,-1.94086][0,-2,0][0.160911,0.0845061,0][-1.00466,-0.750001,-1.74012][0,-2,0][0.256265,0.0291158,0][-0.075,0.749999,-0.129904][-0.86729,2.32697,-1.66696][0.406809,0.389851,0][-1.00466,-0.750001,-1.74012][0,-2,0][0.256265,0.0291158,0][-0.106066,0.749999,-0.106066][-1.26918,2.32697,-1.38568][0.414755,0.3877,0][-0.075,0.749999,-0.129904][-0.86729,2.32697,-1.66696][0.406809,0.389851,0][-1.00466,-0.750001,-1.74012][0,-2,0][0.256265,0.0291158,0][-1.4208,-0.750001,-1.42081][0,-2,0][0.362706,0.00029232,0][-0.106066,0.749999,-0.106066][-1.26918,2.32697,-1.38568][0.414755,0.3877,0][-1.4208,-0.750001,-1.42081][0,-2,0][0.362706,0.00029232,0][-0.129904,0.749999,-0.0750001][-1.58457,2.32697,-1.00998][0.422987,0.387678,0][-0.106066,0.749999,-0.106066][-1.26918,2.32697,-1.38568][0.414755,0.3877,0][-1.4208,-0.750001,-1.42081][0,-2,0][0.362706,0.00029232,0][-1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.47298,0,0][-0.129904,0.749999,-0.0750001][-1.58457,2.32697,-1.00998][0.422987,0.387678,0][-1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.47298,0,0][-0.144889,0.749999,-0.0388229][-1.79198,2.32697,-0.565449][0.430944,0.389787,0][-0.129904,0.749999,-0.0750001][-1.58457,2.32697,-1.00998][0.422987,0.387678,0][-1.74012,-0.750001,-1.00466][0,-2,1.28922e-007][0.47298,0,0][-1.94086,-0.750001,-0.520051][0,-2,0][0.579572,0.0282585,0][-0.144889,0.749999,-0.0388229][-1.79198,2.32697,-0.565449][0.430944,0.389787,0][-1.94086,-0.750001,-0.520051][0,-2,0][0.579572,0.0282585,0][-0.15,0.749999,0][-1.87727,2.32697,-0.0823832][0.438084,0.393885,0][-0.144889,0.749999,-0.0388229][-1.79198,2.32697,-0.565449][0.430944,0.389787,0][-1.94086,-0.750001,-0.520051][0,-2,0][0.579572,0.0282585,0][-2.00932,-0.750001,-7.49675e-007][0,-2,0][0.675219,0.0831422,0][-0.15,0.749999,0][-1.87727,2.32697,-0.0823832][0.438084,0.393885,0][-2.00932,-0.750001,-7.49675e-007][0,-2,0][0.675219,0.0831422,0][-0.144889,0.749999,0.0388228][-1.83463,2.32697,0.406297][0.443921,0.39969,0][-0.15,0.749999,0][-1.87727,2.32697,-0.0823832][0.438084,0.393885,0][-2.00932,-0.750001,-7.49675e-007][0,-2,0][0.675219,0.0831422,0][-1.94086,-0.750001,0.52005][0,-2,0][0.753401,0.160911,0][-0.144889,0.749999,0.0388228][-1.83463,2.32697,0.406297][0.443921,0.39969,0][-1.94086,-0.750001,0.52005][0,-2,0][0.753401,0.160911,0][-0.129904,0.749999,0.0749999][-1.66696,2.32697,0.867289][0.448056,0.406809,0][-0.144889,0.749999,0.0388228][-1.83463,2.32697,0.406297][0.443921,0.39969,0][-1.94086,-0.750001,0.52005][0,-2,0][0.753401,0.160911,0][-1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.808791,0.256265,0][-0.129904,0.749999,0.0749999][-1.66696,2.32697,0.867289][0.448056,0.406809,0][-1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.808791,0.256265,0][-0.106066,0.749999,0.106066][-1.38568,2.32697,1.26918][0.450208,0.414755,0][-0.129904,0.749999,0.0749999][-1.66696,2.32697,0.867289][0.448056,0.406809,0][-1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.808791,0.256265,0][-1.42081,-0.750001,1.4208][0,-2,0][0.837615,0.362706,0][-0.106066,0.749999,0.106066][-1.38568,2.32697,1.26918][0.450208,0.414755,0][-1.42081,-0.750001,1.4208][0,-2,0][0.837615,0.362706,0][-0.075,0.749999,0.129904][-1.00998,2.32697,1.58457][0.450229,0.422987,0][-0.106066,0.749999,0.106066][-1.38568,2.32697,1.26918][0.450208,0.414755,0][-1.42081,-0.750001,1.4208][0,-2,0][0.837615,0.362706,0][-1.00466,-0.750001,1.74012][0,-2,0][0.837907,0.47298,0][-0.075,0.749999,0.129904][-1.00998,2.32697,1.58457][0.450229,0.422987,0][-1.00466,-0.750001,1.74012][0,-2,0][0.837907,0.47298,0][-0.0388229,0.749999,0.144889][-0.56545,2.32697,1.79198][0.44812,0.430944,0][-0.075,0.749999,0.129904][-1.00998,2.32697,1.58457][0.450229,0.422987,0][-1.00466,-0.750001,1.74012][0,-2,0][0.837907,0.47298,0][-0.520051,-0.750001,1.94086][0,-2,0][0.809649,0.579572,0][-0.0388229,0.749999,0.144889][-0.56545,2.32697,1.79198][0.44812,0.430944,0][-0.520051,-0.750001,1.94086][0,-2,0][0.809649,0.579572,0][0,0.749999,0.15][-0.0823832,2.32697,1.87727][0.444023,0.438084,0][-0.0388229,0.749999,0.144889][-0.56545,2.32697,1.79198][0.44812,0.430944,0][-0.520051,-0.750001,1.94086][0,-2,0][0.809649,0.579572,0][-9.34158e-007,-0.750001,2.00932][0,-2,0][0.754765,0.675219,0][0,0.749999,0.15][-0.0823832,2.32697,1.87727][0.444023,0.438084,0][-9.34158e-007,-0.750001,2.00932][0,-2,0][0.754765,0.675219,0][0.0388228,0.749999,0.144889][0.406297,2.32697,1.83463][0.438217,0.443921,0][0,0.749999,0.15][-0.0823832,2.32697,1.87727][0.444023,0.438084,0][-9.34158e-007,-0.750001,2.00932][0,-2,0][0.754765,0.675219,0][0.52005,-0.750001,1.94086][0,-2,0][0.676996,0.753401,0][0.0388228,0.749999,0.144889][0.406297,2.32697,1.83463][0.438217,0.443921,0][0.52005,-0.750001,1.94086][0,-2,0][0.676996,0.753401,0][0.0749999,0.749999,0.129904][0.867289,2.32697,1.66696][0.431099,0.448056,0][0.0388228,0.749999,0.144889][0.406297,2.32697,1.83463][0.438217,0.443921,0][0.52005,-0.750001,1.94086][0,-2,0][0.676996,0.753401,0][1.00466,-0.750001,1.74012][0,-2,0][0.581642,0.808791,0][0.0749999,0.749999,0.129904][0.867289,2.32697,1.66696][0.431099,0.448056,0][1.00466,-0.750001,1.74012][0,-2,0][0.581642,0.808791,0][0.106066,0.749999,0.106066][1.26918,2.32697,1.38568][0.423153,0.450208,0][0.0749999,0.749999,0.129904][0.867289,2.32697,1.66696][0.431099,0.448056,0][1.00466,-0.750001,1.74012][0,-2,0][0.581642,0.808791,0][1.4208,-0.750001,1.42081][0,-2,0][0.475202,0.837615,0][0.106066,0.749999,0.106066][1.26918,2.32697,1.38568][0.423153,0.450208,0][1.4208,-0.750001,1.42081][0,-2,0][0.475202,0.837615,0][0.129904,0.749999,0.0750001][1.58457,2.32697,1.00998][0.414921,0.450229,0][0.106066,0.749999,0.106066][1.26918,2.32697,1.38568][0.423153,0.450208,0][1.4208,-0.750001,1.42081][0,-2,0][0.475202,0.837615,0][1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.364927,0.837907,0][0.129904,0.749999,0.0750001][1.58457,2.32697,1.00998][0.414921,0.450229,0][1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.364927,0.837907,0][0.144889,0.749999,0.0388229][1.79198,2.32697,0.56545][0.406963,0.44812,0][0.129904,0.749999,0.0750001][1.58457,2.32697,1.00998][0.414921,0.450229,0][1.74012,-0.750001,1.00466][0,-2,1.28922e-007][0.364927,0.837907,0][1.94086,-0.750001,0.520052][0,-2,0][0.258335,0.809649,0][0.144889,0.749999,0.0388229][1.79198,2.32697,0.56545][0.406963,0.44812,0][1.94086,-0.750001,0.520052][0,-2,0][0.258335,0.809649,0][0.15,0.749999,0][1.87727,2.32697,0.0823829][0.399823,0.444023,0][0.144889,0.749999,0.0388229][1.79198,2.32697,0.56545][0.406963,0.44812,0][1.94086,-0.750001,0.520052][0,-2,0][0.258335,0.809649,0][2.00932,-0.750001,0][0,-2,0][0.162689,0.754765,0][0.15,0.749999,0][1.87727,2.32697,0.0823829][0.399823,0.444023,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.15,0.749999,0][1.87727,2.32697,0.0823829][0.871909,0.031914,0][0.144889,0.749999,-0.0388229][1.83463,2.32697,-0.406298][0.872997,0.023654,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.144889,0.749999,-0.0388229][1.83463,2.32697,-0.406298][0.872997,0.023654,0][0.129904,0.749999,-0.075][1.66696,2.32697,-0.86729][0.876185,0.0159569,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.129904,0.749999,-0.075][1.66696,2.32697,-0.86729][0.876185,0.0159569,0][0.106066,0.749999,-0.106066][1.38568,2.32697,-1.26918][0.881257,0.00934732,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.106066,0.749999,-0.106066][1.38568,2.32697,-1.26918][0.881257,0.00934732,0][0.075,0.749999,-0.129904][1.00998,2.32697,-1.58457][0.887866,0.00427565,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.075,0.749999,-0.129904][1.00998,2.32697,-1.58457][0.887866,0.00427565,0][0.0388229,0.749999,-0.144889][0.565449,2.32697,-1.79198][0.895563,0.00108744,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.0388229,0.749999,-0.144889][0.565449,2.32697,-1.79198][0.895563,0.00108744,0][0,0.749999,-0.15][0.0823825,2.32697,-1.87727][0.903823,0,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0,0.749999,-0.15][0.0823825,2.32697,-1.87727][0.903823,0,0][-0.0388228,0.749999,-0.144889][-0.406298,2.32697,-1.83463][0.912083,0.00108744,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.0388228,0.749999,-0.144889][-0.406298,2.32697,-1.83463][0.912083,0.00108744,0][-0.075,0.749999,-0.129904][-0.86729,2.32697,-1.66696][0.91978,0.00427565,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.075,0.749999,-0.129904][-0.86729,2.32697,-1.66696][0.91978,0.00427565,0][-0.106066,0.749999,-0.106066][-1.26918,2.32697,-1.38568][0.92639,0.00934732,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.106066,0.749999,-0.106066][-1.26918,2.32697,-1.38568][0.92639,0.00934732,0][-0.129904,0.749999,-0.0750001][-1.58457,2.32697,-1.00998][0.931462,0.0159569,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.129904,0.749999,-0.0750001][-1.58457,2.32697,-1.00998][0.931462,0.0159569,0][-0.144889,0.749999,-0.0388229][-1.79198,2.32697,-0.565449][0.93465,0.023654,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.144889,0.749999,-0.0388229][-1.79198,2.32697,-0.565449][0.93465,0.023654,0][-0.15,0.749999,0][-1.87727,2.32697,-0.0823832][0.935737,0.031914,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.15,0.749999,0][-1.87727,2.32697,-0.0823832][0.935737,0.031914,0][-0.144889,0.749999,0.0388228][-1.83463,2.32697,0.406297][0.93465,0.040174,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.144889,0.749999,0.0388228][-1.83463,2.32697,0.406297][0.93465,0.040174,0][-0.129904,0.749999,0.0749999][-1.66696,2.32697,0.867289][0.931462,0.047871,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.129904,0.749999,0.0749999][-1.66696,2.32697,0.867289][0.931462,0.047871,0][-0.106066,0.749999,0.106066][-1.38568,2.32697,1.26918][0.92639,0.0544806,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.106066,0.749999,0.106066][-1.38568,2.32697,1.26918][0.92639,0.0544806,0][-0.075,0.749999,0.129904][-1.00998,2.32697,1.58457][0.91978,0.0595523,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.075,0.749999,0.129904][-1.00998,2.32697,1.58457][0.91978,0.0595523,0][-0.0388229,0.749999,0.144889][-0.56545,2.32697,1.79198][0.912083,0.0627405,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][-0.0388229,0.749999,0.144889][-0.56545,2.32697,1.79198][0.912083,0.0627405,0][0,0.749999,0.15][-0.0823832,2.32697,1.87727][0.903823,0.063828,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0,0.749999,0.15][-0.0823832,2.32697,1.87727][0.903823,0.063828,0][0.0388228,0.749999,0.144889][0.406297,2.32697,1.83463][0.895563,0.0627405,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.0388228,0.749999,0.144889][0.406297,2.32697,1.83463][0.895563,0.0627405,0][0.0749999,0.749999,0.129904][0.867289,2.32697,1.66696][0.887866,0.0595523,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.0749999,0.749999,0.129904][0.867289,2.32697,1.66696][0.887866,0.0595523,0][0.106066,0.749999,0.106066][1.26918,2.32697,1.38568][0.881257,0.0544807,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.106066,0.749999,0.106066][1.26918,2.32697,1.38568][0.881257,0.0544807,0][0.129904,0.749999,0.0750001][1.58457,2.32697,1.00998][0.876185,0.047871,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.129904,0.749999,0.0750001][1.58457,2.32697,1.00998][0.876185,0.047871,0][0.144889,0.749999,0.0388229][1.79198,2.32697,0.56545][0.872997,0.040174,0][0,0.749999,0][0,1,0][0.903823,0.031914,0][0.144889,0.749999,0.0388229][1.79198,2.32697,0.56545][0.872997,0.040174,0][0.15,0.749999,0][1.87727,2.32697,0.0823829][0.871909,0.031914,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/TheDusekkar.mesh b/charcustom/hats/fonts/TheDusekkar.mesh
new file mode 100644
index 0000000..66598c6
--- /dev/null
+++ b/charcustom/hats/fonts/TheDusekkar.mesh
@@ -0,0 +1,3 @@
+version 1.00
+2980
+[7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.60508,3.49012,-0.391192][0.763558,0.644733,0.0360274][0.946828,0.956958,0][7.63043,3.4587,-0.365979][0.763558,0.644733,0.0360274][0.946782,0.956875,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.65975,3.42796,-0.448834][0.780925,0.621942,0.0578304][0.947063,0.956843,0][7.64007,3.45398,-0.462943][0.780925,0.621942,0.0578304][0.947082,0.956906,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.64007,3.45398,-0.462943][0.780925,0.621942,0.0578304][0.947082,0.956906,0][7.61501,3.48064,-0.437717][0.751654,0.657528,0.051699][0.946978,0.956957,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.61501,3.48064,-0.437717][0.751654,0.657528,0.051699][0.946978,0.956957,0][7.60508,3.49012,-0.391192][0.763558,0.644733,0.0360274][0.946828,0.956958,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.63043,3.4587,-0.365979][0.763558,0.644733,0.0360274][0.946782,0.956875,0][7.65507,3.43091,-0.396663][0.767339,0.640204,0.0364545][0.946902,0.956826,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.65507,3.43091,-0.396663][0.767339,0.640204,0.0364545][0.946902,0.956826,0][7.65975,3.42796,-0.448834][0.780925,0.621942,0.0578304][0.947063,0.956843,0][7.20192,2.23321,-1.61228][0.415288,-0.115077,-0.902382][0.936424,0.935892,0][7.25582,2.22772,-1.58677][0.415288,-0.115077,-0.902382][0.936545,0.935967,0][7.20258,2.16555,-1.60335][0.415288,-0.115077,-0.902382][0.936295,0.935997,0][7.20192,2.23321,-1.61228][0.420616,-0.0720149,-0.904376][0.947195,0.947981,0][7.20247,2.29501,-1.61694][0.420616,-0.0720149,-0.904376][0.947344,0.948058,0][7.25582,2.22772,-1.58677][0.420616,-0.0720149,-0.904376][0.947077,0.948057,0][7.20192,2.23321,-1.61228][0.415288,-0.115077,-0.902382][0.936424,0.935892,0][7.14946,2.23704,-1.63508][0.393065,-0.0726938,-0.916633][0.936305,0.935821,0][7.20247,2.29501,-1.61694][0.393065,-0.0726938,-0.916633][0.936546,0.935797,0][7.20192,2.23321,-1.61228][0.415288,-0.115077,-0.902382][0.936424,0.935892,0][7.20258,2.16555,-1.60335][0.415288,-0.115077,-0.902382][0.936295,0.935997,0][7.14946,2.23704,-1.63508][0.393065,-0.0726938,-0.916633][0.936305,0.935821,0][6.73929,1.79926,-1.6626][-0.455913,-0.632089,-0.626584][0.970691,0.96359,0][6.72779,1.74738,-1.6019][-0.455913,-0.632089,-0.626584][0.970721,0.963469,0][6.66829,1.82415,-1.63606][-0.455913,-0.632089,-0.626584][0.970938,0.963591,0][6.73929,1.79926,-1.6626][-0.455913,-0.632089,-0.626584][0.929469,0.963905,0][6.66829,1.82415,-1.63606][-0.455913,-0.632089,-0.626584][0.929578,0.964037,0][6.73756,1.85662,-1.69882][-0.450467,-0.486326,-0.74871][0.929351,0.96399,0][6.73929,1.79926,-1.6626][-0.455913,-0.632089,-0.626584][0.929469,0.963905,0][6.73756,1.85662,-1.69882][-0.450467,-0.486326,-0.74871][0.929351,0.96399,0][6.79527,1.78419,-1.66633][-0.196952,-0.527644,-0.826318][0.929374,0.963807,0][6.73929,1.79926,-1.6626][-0.455913,-0.632089,-0.626584][0.970691,0.96359,0][6.79527,1.78419,-1.66633][-0.196952,-0.527644,-0.826318][0.97052,0.963559,0][6.72779,1.74738,-1.6019][-0.455913,-0.632089,-0.626584][0.970721,0.963469,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.69404,3.54339,-1.51719][0.201246,0.829347,-0.521233][0.970713,0.938963,0][7.73004,3.54235,-1.50494][0.201246,0.829347,-0.521233][0.97065,0.9389,0][7.77811,3.46927,-1.58806][0.264772,0.759496,-0.59419][0.970928,0.93874,0][7.72237,3.4744,-1.60634][0.264772,0.759496,-0.59419][0.971019,0.938841,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.67422,3.51436,-1.5765][0.262731,0.760198,-0.594198][0.970928,0.938964,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.72237,3.4744,-1.60634][0.264772,0.759496,-0.59419][0.971019,0.938841,0][7.69404,3.54339,-1.51719][0.201246,0.829347,-0.521233][0.970713,0.938963,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.67422,3.51436,-1.5765][0.262731,0.760198,-0.594198][0.970928,0.938964,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.78722,3.50477,-1.52664][0.346383,0.78893,-0.507552][0.970708,0.938763,0][7.77811,3.46927,-1.58806][0.264772,0.759496,-0.59419][0.970928,0.93874,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.73004,3.54235,-1.50494][0.201246,0.829347,-0.521233][0.97065,0.9389,0][7.78722,3.50477,-1.52664][0.346383,0.78893,-0.507552][0.970708,0.938763,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.963587,0.947181,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.964135,0.947163,0][8.61903,5.27466,0.994882][0.688476,-0.192884,0.69914][0.964233,0.947696,0][9.57471,6.98361,-0.183342][-0.34871,0.847599,0.399971][0.946035,0.948086,0][9.63199,7.00741,-0.18384][-0.34871,0.847599,0.399971][0.945842,0.948086,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.945961,0.947981,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.51979,6.96309,-0.179688][-0.278339,0.830639,0.482251][0.953033,0.957849,0][9.55909,6.95172,-0.137436][-0.278339,0.830639,0.482251][0.953031,0.957732,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.55909,6.95172,-0.137436][-0.278339,0.830639,0.482251][0.953031,0.957732,0][9.61147,6.97554,-0.142128][-0.333496,0.823668,0.458642][0.953188,0.957677,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.61147,6.97554,-0.142128][-0.333496,0.823668,0.458642][0.953188,0.957677,0][9.63199,7.00741,-0.18384][-0.337033,0.820777,0.461231][0.95335,0.95772,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.53795,6.99167,-0.224556][-0.291405,0.855828,0.427367][0.95319,0.957898,0][9.51979,6.96309,-0.179688][-0.278339,0.830639,0.482251][0.953033,0.957849,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.58796,7.01221,-0.232407][-0.286452,0.859347,0.423638][0.953342,0.95785,0][9.53795,6.99167,-0.224556][-0.291405,0.855828,0.427367][0.95319,0.957898,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.2598,7.1158,0.277329][0.441427,0.889748,0.11615][0.974956,0.966639,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.974973,0.966485,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.3405,7.0878,0.187766][0.433547,0.893747,0.115123][0.97528,0.966508,0][10.2793,7.11943,0.172862][0.433547,0.893747,0.115123][0.975285,0.966648,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.3596,7.07138,0.242071][0.435462,0.892549,0.117174][0.975129,0.96644,0][10.3405,7.0878,0.187766][0.433547,0.893747,0.115123][0.97528,0.966508,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.974973,0.966485,0][10.3596,7.07138,0.242071][0.435462,0.892549,0.117174][0.975129,0.96644,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.2793,7.11943,0.172862][0.433547,0.893747,0.115123][0.975285,0.966648,0][10.2447,7.13028,0.220453][0.43611,0.892671,0.113778][0.975118,0.966699,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.2447,7.13028,0.220453][0.43611,0.892671,0.113778][0.975118,0.966699,0][10.2598,7.1158,0.277329][0.441427,0.889748,0.11615][0.974956,0.966639,0][8.89439,7.71865,2.15757][-0.371754,0.694775,0.615701][0.93028,0.962156,0][8.87659,7.68125,2.18902][-0.371754,0.694775,0.615701][0.930184,0.962239,0][8.91291,7.70046,2.18928][-0.371754,0.694775,0.615701][0.930153,0.96216,0][8.89439,7.71865,2.15757][-0.371754,0.694775,0.615701][0.93028,0.962156,0][8.87406,7.73528,2.11762][-0.434891,0.731127,0.525665][0.930428,0.962154,0][8.85117,7.70209,2.14484][-0.434891,0.731127,0.525665][0.930355,0.962238,0][8.89439,7.71865,2.15757][-0.371754,0.694775,0.615701][0.93028,0.962156,0][8.85117,7.70209,2.14484][-0.434891,0.731127,0.525665][0.930355,0.962238,0][8.87659,7.68125,2.18902][-0.371754,0.694775,0.615701][0.930184,0.962239,0][8.89439,7.71865,2.15757][-0.471953,0.617079,0.629662][0.958903,0.943069,0][8.91291,7.70046,2.18928][-0.471953,0.617079,0.629662][0.958776,0.943072,0][8.93426,7.73911,2.1674][-0.471953,0.617079,0.629662][0.958847,0.942986,0][8.89439,7.71865,2.15757][-0.471953,0.617079,0.629662][0.958903,0.943069,0][8.93426,7.73911,2.1674][-0.471953,0.617079,0.629662][0.958847,0.942986,0][8.91735,7.75371,2.13725][-0.479765,0.65359,0.585359][0.958964,0.942986,0][8.89439,7.71865,2.15757][-0.471953,0.617079,0.629662][0.958903,0.943069,0][8.91735,7.75371,2.13725][-0.479765,0.65359,0.585359][0.958964,0.942986,0][8.87406,7.73528,2.11762][-0.524914,0.657306,0.540753][0.959051,0.94307,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][10.0191,8.0236,1.49437][-0.0387856,0.996818,-0.0696445][0.975276,0.939897,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.975263,0.939959,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.98899,8.02487,1.55091][-0.0284644,0.998887,-0.0376096][0.97512,0.939821,0][10.0191,8.0236,1.49437][-0.0387856,0.996818,-0.0696445][0.975276,0.939897,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.975263,0.939959,0][9.93397,8.01575,1.47448][-0.0907613,0.989805,-0.109763][0.975097,0.939997,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.93397,8.01575,1.47448][-0.0907613,0.989805,-0.109763][0.975097,0.939997,0][9.91139,8.02337,1.52599][-0.0294079,0.986841,-0.159][0.97496,0.939927,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.91139,8.02337,1.52599][-0.0294079,0.986841,-0.159][0.97496,0.939927,0][9.93472,8.02767,1.55817][-0.0187969,0.992719,-0.11898][0.974969,0.939853,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.93472,8.02767,1.55817][-0.0187969,0.992719,-0.11898][0.974969,0.939853,0][9.98899,8.02487,1.55091][-0.0284644,0.998887,-0.0376096][0.97512,0.939821,0][9.98899,8.02487,1.55091][0.12426,0.763928,0.633224][0.94401,0.964963,0][9.91113,7.97837,1.62229][0.12426,0.763928,0.633224][0.943827,0.964834,0][10.026,7.97243,1.60692][0.12426,0.763928,0.633224][0.944162,0.96484,0][9.93472,8.02767,1.55817][0.124255,0.763932,0.633221][0.943851,0.96496,0][9.91113,7.97837,1.62229][0.12426,0.763928,0.633224][0.943827,0.964834,0][9.98899,8.02487,1.55091][0.12426,0.763928,0.633224][0.94401,0.964963,0][9.93472,8.02767,1.55817][-0.599364,0.725783,0.337642][0.970646,0.935856,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.91113,7.97837,1.62229][-0.599364,0.725783,0.337642][0.970816,0.935984,0][9.91139,8.02337,1.52599][-0.599366,0.725787,0.337629][0.970688,0.935793,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.93472,8.02767,1.55817][-0.599364,0.725783,0.337642][0.970646,0.935856,0][9.91139,8.02337,1.52599][-0.0294079,0.986841,-0.159][0.947733,0.956963,0][9.90953,7.95314,1.4452][-0.768541,0.49146,-0.409648][0.94749,0.956829,0][9.86176,7.96927,1.55419][-0.768541,0.49146,-0.409648][0.94783,0.956826,0][9.93397,8.01575,1.47448][-0.0907613,0.989805,-0.109763][0.947573,0.956964,0][9.90953,7.95314,1.4452][-0.768541,0.49146,-0.409648][0.94749,0.956829,0][9.91139,8.02337,1.52599][-0.0294079,0.986841,-0.159][0.947733,0.956963,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.976062,0.953606,0][10.046,7.96418,1.43196][-0.122509,0.4592,-0.879845][0.976199,0.953724,0][9.90953,7.95314,1.4452][-0.768541,0.49146,-0.409648][0.975773,0.953729,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.976062,0.953606,0][9.90953,7.95314,1.4452][-0.768541,0.49146,-0.409648][0.975773,0.953729,0][9.93397,8.01575,1.47448][-0.0907613,0.989805,-0.109763][0.975861,0.953609,0][10.0191,8.0236,1.49437][0.5978,0.742955,0.301087][0.944116,0.965068,0][10.026,7.97243,1.60692][0.12426,0.763928,0.633224][0.944162,0.96484,0][10.0896,7.96974,1.48729][0.5978,0.742955,0.301087][0.944386,0.965062,0][9.98899,8.02487,1.55091][0.12426,0.763928,0.633224][0.94401,0.964963,0][10.026,7.97243,1.60692][0.12426,0.763928,0.633224][0.944162,0.96484,0][10.0191,8.0236,1.49437][0.5978,0.742955,0.301087][0.944116,0.965068,0][10.0191,8.0236,1.49437][-0.0387856,0.996818,-0.0696445][0.975276,0.939897,0][10.0896,7.96974,1.48729][0.505386,0.723427,-0.470359][0.975527,0.939834,0][10.046,7.96418,1.43196][-0.122509,0.4592,-0.879845][0.9755,0.939965,0][10.0191,8.0236,1.49437][-0.0387856,0.996818,-0.0696445][0.975276,0.939897,0][10.046,7.96418,1.43196][-0.122509,0.4592,-0.879845][0.9755,0.939965,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.975263,0.939959,0][9.91113,7.97837,1.62229][0.135768,-0.0281711,0.99034][0.973424,0.956038,0][9.79088,7.6259,1.62875][0.135768,-0.0281711,0.99034][0.972293,0.955875,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.972416,0.955591,0][9.91113,7.97837,1.62229][0.135768,-0.0281711,0.99034][0.973424,0.956038,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.972416,0.955591,0][10.026,7.97243,1.60692][0.131195,-0.0284526,0.990948][0.973595,0.955838,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.79088,7.6259,1.62875][-0.805936,0.279649,0.521788][0.971968,0.935996,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.79088,7.6259,1.62875][-0.805936,0.279649,0.521788][0.971968,0.935996,0][9.91113,7.97837,1.62229][-0.599364,0.725783,0.337642][0.970816,0.935984,0][9.90953,7.95314,1.4452][-0.809827,0.256741,-0.527507][0.970889,0.935633,0][9.82153,7.61693,1.41667][-0.809827,0.256741,-0.527507][0.971953,0.935576,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.90953,7.95314,1.4452][-0.809827,0.256741,-0.527507][0.970889,0.935633,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.90953,7.95314,1.4452][-0.0591002,0.0997547,-0.993255][0.941409,0.944225,0][9.99679,7.58907,1.40345][-0.0591002,0.0997547,-0.993255][0.940618,0.94477,0][9.82153,7.61693,1.41667][-0.0591002,0.0997547,-0.993255][0.940387,0.944451,0][10.046,7.96418,1.43196][-0.103295,0.0888658,-0.990673][0.941673,0.944438,0][9.99679,7.58907,1.40345][-0.0591002,0.0997547,-0.993255][0.940618,0.94477,0][9.90953,7.95314,1.4452][-0.0591002,0.0997547,-0.993255][0.941409,0.944225,0][10.026,7.97243,1.60692][0.131195,-0.0284526,0.990948][0.972426,0.965192,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.971224,0.965312,0][10.0393,7.57542,1.46854][0.77767,-0.183514,0.601291][0.971271,0.965028,0][10.026,7.97243,1.60692][0.873783,-0.133689,0.467579][0.935488,0.967692,0][10.0393,7.57542,1.46854][0.873783,-0.133689,0.467579][0.93662,0.967912,0][10.0896,7.96974,1.48729][0.873783,-0.133689,0.467579][0.935441,0.967932,0][10.046,7.96418,1.43196][0.829231,-0.0666439,-0.554918][0.935526,0.968038,0][10.0393,7.57542,1.46854][0.873783,-0.133689,0.467579][0.93662,0.967912,0][9.99679,7.58907,1.40345][0.829231,-0.0666439,-0.554918][0.936653,0.96804,0][10.0896,7.96974,1.48729][0.873783,-0.133689,0.467579][0.935441,0.967932,0][10.0393,7.57542,1.46854][0.873783,-0.133689,0.467579][0.93662,0.967912,0][10.046,7.96418,1.43196][0.829231,-0.0666439,-0.554918][0.935526,0.968038,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.972416,0.955591,0][9.67029,7.30305,1.60906][0.137725,-0.125247,0.98252][0.971241,0.955743,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.971183,0.955467,0][9.79088,7.6259,1.62875][0.135768,-0.0281711,0.99034][0.972293,0.955875,0][9.67029,7.30305,1.60906][0.137725,-0.125247,0.98252][0.971241,0.955743,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.972416,0.955591,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.62574,7.3288,1.53486][-0.780603,0.27163,0.562917][0.973023,0.93581,0][9.67029,7.30305,1.60906][-0.780603,0.27163,0.562917][0.973038,0.935957,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.67029,7.30305,1.60906][-0.780603,0.27163,0.562917][0.973038,0.935957,0][9.79088,7.6259,1.62875][-0.805936,0.279649,0.521788][0.971968,0.935996,0][9.82153,7.61693,1.41667][-0.809827,0.256741,-0.527507][0.971953,0.935576,0][9.67574,7.27696,1.40667][-0.810097,0.360979,-0.461992][0.973104,0.935556,0][9.62574,7.3288,1.53486][-0.780603,0.27163,0.562917][0.973023,0.93581,0][9.82153,7.61693,1.41667][-0.809827,0.256741,-0.527507][0.971953,0.935576,0][9.62574,7.3288,1.53486][-0.780603,0.27163,0.562917][0.973023,0.93581,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.82153,7.61693,1.41667][-0.0591002,0.0997547,-0.993255][0.940387,0.944451,0][9.81858,7.18874,1.38417][-0.109187,0.0759888,-0.991113][0.939274,0.944918,0][9.67574,7.27696,1.40667][-0.109187,0.0759888,-0.991113][0.939255,0.944585,0][9.99679,7.58907,1.40345][-0.0591002,0.0997547,-0.993255][0.940618,0.94477,0][9.81858,7.18874,1.38417][-0.109187,0.0759888,-0.991113][0.939274,0.944918,0][9.82153,7.61693,1.41667][-0.0591002,0.0997547,-0.993255][0.940387,0.944451,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.971224,0.965312,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.969979,0.965384,0][9.85661,7.16359,1.44386][0.754983,-0.353523,0.552287][0.969874,0.965116,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.971224,0.965312,0][9.85661,7.16359,1.44386][0.754983,-0.353523,0.552287][0.969874,0.965116,0][10.0393,7.57542,1.46854][0.77767,-0.183514,0.601291][0.971271,0.965028,0][9.99679,7.58907,1.40345][0.829231,-0.0666439,-0.554918][0.936653,0.96804,0][9.85661,7.16359,1.44386][0.741612,-0.301267,-0.599375][0.938024,0.967892,0][9.81858,7.18874,1.38417][0.741612,-0.301267,-0.599375][0.938017,0.968011,0][10.0393,7.57542,1.46854][0.873783,-0.133689,0.467579][0.93662,0.967912,0][9.85661,7.16359,1.44386][0.741612,-0.301267,-0.599375][0.938024,0.967892,0][9.99679,7.58907,1.40345][0.829231,-0.0666439,-0.554918][0.936653,0.96804,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.971183,0.955467,0][9.48079,6.99753,1.6144][0.165668,-0.0833191,0.982656][0.970122,0.955745,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.969924,0.955487,0][9.67029,7.30305,1.60906][0.137725,-0.125247,0.98252][0.971241,0.955743,0][9.48079,6.99753,1.6144][0.165668,-0.0833191,0.982656][0.970122,0.955745,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.971183,0.955467,0][9.67029,7.30305,1.60906][-0.780603,0.27163,0.562917][0.973038,0.935957,0][9.43742,7.02897,1.53878][-0.689334,0.437632,0.577319][0.974117,0.935818,0][9.48079,6.99753,1.6144][-0.689334,0.437632,0.577319][0.974149,0.935968,0][9.62574,7.3288,1.53486][-0.780603,0.27163,0.562917][0.973023,0.93581,0][9.43742,7.02897,1.53878][-0.689334,0.437632,0.577319][0.974117,0.935818,0][9.67029,7.30305,1.60906][-0.780603,0.27163,0.562917][0.973038,0.935957,0][9.67574,7.27696,1.40667][-0.754572,0.49668,-0.428871][0.934041,0.943103,0][9.45837,6.95082,1.41141][-0.754572,0.49668,-0.428871][0.932836,0.943063,0][9.43742,7.02897,1.53878][-0.754572,0.49668,-0.428871][0.933045,0.942816,0][9.67574,7.27696,1.40667][-0.754572,0.49668,-0.428871][0.934041,0.943103,0][9.43742,7.02897,1.53878][-0.754572,0.49668,-0.428871][0.933045,0.942816,0][9.62574,7.3288,1.53486][-0.746494,0.462597,-0.478279][0.934137,0.942851,0][9.81858,7.18874,1.38417][-0.109187,0.0759888,-0.991113][0.939274,0.944918,0][9.56993,6.81927,1.38975][-0.117126,0.0638641,-0.991062][0.937887,0.944915,0][9.45837,6.95082,1.41141][-0.117126,0.0638641,-0.991062][0.938035,0.944586,0][9.81858,7.18874,1.38417][-0.109187,0.0759888,-0.991113][0.939274,0.944918,0][9.45837,6.95082,1.41141][-0.117126,0.0638641,-0.991062][0.938035,0.944586,0][9.67574,7.27696,1.40667][-0.109187,0.0759888,-0.991113][0.939255,0.944585,0][9.85661,7.16359,1.44386][0.754983,-0.353523,0.552287][0.969874,0.965116,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.968752,0.965521,0][9.60566,6.78899,1.45097][0.710267,-0.465803,0.527776][0.968506,0.965264,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.969979,0.965384,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.968752,0.965521,0][9.85661,7.16359,1.44386][0.754983,-0.353523,0.552287][0.969874,0.965116,0][9.85661,7.16359,1.44386][0.741612,-0.301267,-0.599375][0.938024,0.967892,0][9.60566,6.78899,1.45097][0.655731,-0.450778,-0.605653][0.939405,0.967811,0][9.56993,6.81927,1.38975][0.655731,-0.450778,-0.605653][0.939381,0.967934,0][9.85661,7.16359,1.44386][0.741612,-0.301267,-0.599375][0.938024,0.967892,0][9.56993,6.81927,1.38975][0.655731,-0.450778,-0.605653][0.939381,0.967934,0][9.81858,7.18874,1.38417][0.741612,-0.301267,-0.599375][0.938017,0.968011,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.969924,0.955487,0][9.28432,6.81128,1.69462][0.35599,-0.010512,0.934431][0.969307,0.955883,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.96877,0.955561,0][9.48079,6.99753,1.6144][0.165668,-0.0833191,0.982656][0.970122,0.955745,0][9.28432,6.81128,1.69462][0.35599,-0.010512,0.934431][0.969307,0.955883,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.969924,0.955487,0][9.48079,6.99753,1.6144][-0.430871,0.699895,0.569647][0.956182,0.95908,0][9.21916,6.87044,1.57265][-0.430871,0.699895,0.569647][0.95532,0.959275,0][9.28432,6.81128,1.69462][-0.430871,0.699895,0.569647][0.955318,0.958977,0][9.43742,7.02897,1.53878][-0.434801,0.715474,0.54685][0.956166,0.959264,0][9.21916,6.87044,1.57265][-0.430871,0.699895,0.569647][0.95532,0.959275,0][9.48079,6.99753,1.6144][-0.430871,0.699895,0.569647][0.956182,0.95908,0][9.45837,6.95082,1.41141][-0.754572,0.49668,-0.428871][0.932836,0.943063,0][9.18254,6.7192,1.38355][-0.544429,0.703349,-0.457054][0.931818,0.943093,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.932315,0.94273,0][9.45837,6.95082,1.41141][-0.754572,0.49668,-0.428871][0.932836,0.943063,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.932315,0.94273,0][9.43742,7.02897,1.53878][-0.754572,0.49668,-0.428871][0.933045,0.942816,0][9.56993,6.81927,1.38975][-0.117126,0.0638641,-0.991062][0.937887,0.944915,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.936437,0.944835,0][9.18254,6.7192,1.38355][-0.00386871,0.0767678,-0.997041][0.936958,0.944387,0][9.56993,6.81927,1.38975][-0.117126,0.0638641,-0.991062][0.937887,0.944915,0][9.18254,6.7192,1.38355][-0.00386871,0.0767678,-0.997041][0.936958,0.944387,0][9.45837,6.95082,1.41141][-0.117126,0.0638641,-0.991062][0.938035,0.944586,0][9.60566,6.78899,1.45097][0.710267,-0.465803,0.527776][0.968506,0.965264,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.967672,0.965793,0][9.32864,6.3988,1.46254][0.743081,-0.514887,0.42746][0.967064,0.965429,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.968752,0.965521,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.967672,0.965793,0][9.60566,6.78899,1.45097][0.710267,-0.465803,0.527776][0.968506,0.965264,0][9.60566,6.78899,1.45097][0.655731,-0.450778,-0.605653][0.939405,0.967811,0][9.32864,6.3988,1.46254][0.646056,-0.476359,-0.596401][0.940863,0.967716,0][9.27751,6.45435,1.36278][0.646056,-0.476359,-0.596401][0.940798,0.967918,0][9.60566,6.78899,1.45097][0.655731,-0.450778,-0.605653][0.939405,0.967811,0][9.27751,6.45435,1.36278][0.646056,-0.476359,-0.596401][0.940798,0.967918,0][9.56993,6.81927,1.38975][0.655731,-0.450778,-0.605653][0.939381,0.967934,0][8.87406,7.73528,2.11762][-0.283905,0.927196,-0.244349][0.970087,0.954324,0][8.9515,7.75417,2.09932][-0.283905,0.927196,-0.244349][0.970296,0.954417,0][8.86777,7.71853,2.06137][-0.283905,0.927196,-0.244349][0.969989,0.954423,0][8.91735,7.75371,2.13725][-0.283907,0.927192,-0.244362][0.970246,0.954321,0][8.9515,7.75417,2.09932][-0.283905,0.927196,-0.244349][0.970296,0.954417,0][8.87406,7.73528,2.11762][-0.283905,0.927196,-0.244349][0.970087,0.954324,0][8.93426,7.73911,2.1674][0.295281,0.914355,0.277062][0.945356,0.948709,0][8.9842,7.72594,2.15764][0.295281,0.914355,0.277062][0.945289,0.948615,0][8.9515,7.75417,2.09932][0.295281,0.914355,0.277062][0.945512,0.948616,0][8.93426,7.73911,2.1674][0.295281,0.914355,0.277062][0.945356,0.948709,0][8.9515,7.75417,2.09932][0.295281,0.914355,0.277062][0.945512,0.948616,0][8.91735,7.75371,2.13725][0.295276,0.914357,0.277061][0.945471,0.948709,0][8.91291,7.70046,2.18928][0.269009,0.35765,0.894271][0.928898,0.962256,0][8.94292,7.65119,2.19996][0.269009,0.35765,0.894271][0.928805,0.962158,0][8.9842,7.72594,2.15764][0.295281,0.914355,0.277062][0.929071,0.962154,0][8.91291,7.70046,2.18928][0.269009,0.35765,0.894271][0.928898,0.962256,0][8.9842,7.72594,2.15764][0.295281,0.914355,0.277062][0.929071,0.962154,0][8.93426,7.73911,2.1674][0.295281,0.914355,0.277062][0.929036,0.962254,0][8.87659,7.68125,2.18902][-0.830811,0.132512,0.540549][0.94903,0.963436,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.87266,7.61403,2.19947][-0.830811,0.132512,0.540549][0.948858,0.963374,0][8.85117,7.70209,2.14484][-0.830812,0.132522,0.540546][0.949007,0.963524,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.87659,7.68125,2.18902][-0.830811,0.132512,0.540549][0.94903,0.963436,0][8.85117,7.70209,2.14484][-0.830812,0.132522,0.540546][0.949007,0.963524,0][8.86777,7.71853,2.06137][-0.845081,0.530844,-0.0635839][0.948983,0.963694,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.87406,7.73528,2.11762][-0.84507,0.530861,-0.0635785][0.949095,0.963601,0][8.86777,7.71853,2.06137][-0.845081,0.530844,-0.0635839][0.948983,0.963694,0][8.85117,7.70209,2.14484][-0.830812,0.132522,0.540546][0.949007,0.963524,0][8.87659,7.68125,2.18902][-0.09045,0.158054,0.983279][0.960541,0.968103,0][8.87266,7.61403,2.19947][-0.09045,0.158054,0.983279][0.960383,0.968014,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][8.87659,7.68125,2.18902][-0.09045,0.158054,0.983279][0.960541,0.968103,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][8.91291,7.70046,2.18928][-0.090449,0.158056,0.983279][0.960663,0.968078,0][8.86777,7.71853,2.06137][-0.283905,0.927196,-0.244349][0.929069,0.955772,0][9.02028,7.64966,2.00839][0.0544254,0.681757,-0.729552][0.929313,0.955479,0][8.89805,7.61388,1.96583][0.0544254,0.681757,-0.729552][0.9294,0.955725,0][8.9515,7.75417,2.09932][-0.283905,0.927196,-0.244349][0.928975,0.955602,0][9.02028,7.64966,2.00839][0.0544254,0.681757,-0.729552][0.929313,0.955479,0][8.86777,7.71853,2.06137][-0.283905,0.927196,-0.244349][0.929069,0.955772,0][8.9842,7.72594,2.15764][0.779323,0.61395,-0.125385][0.975243,0.959002,0][9.0637,7.61086,2.08826][0.779323,0.61395,-0.125385][0.975674,0.958977,0][9.02028,7.64966,2.00839][0.779323,0.61395,-0.125385][0.975675,0.95917,0][8.9842,7.72594,2.15764][0.779323,0.61395,-0.125385][0.975243,0.959002,0][9.02028,7.64966,2.00839][0.779323,0.61395,-0.125385][0.975675,0.95917,0][8.9515,7.75417,2.09932][0.771712,0.622237,-0.13146][0.975241,0.959144,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.960454,0.96771,0][9.0637,7.61086,2.08826][0.686032,0.0428222,0.72631][0.960795,0.967741,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][9.0637,7.61086,2.08826][0.686032,0.0428222,0.72631][0.960795,0.967741,0][8.9842,7.72594,2.15764][0.684687,0.0339862,0.728045][0.960875,0.968014,0][8.87266,7.61403,2.19947][-0.830811,0.132512,0.540549][0.94108,0.948582,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.941516,0.948375,0][8.89629,7.48486,2.16337][-0.889298,-0.266509,0.371647][0.941485,0.948662,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.941104,0.948372,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.941516,0.948375,0][8.87266,7.61403,2.19947][-0.830811,0.132512,0.540549][0.94108,0.948582,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.89805,7.61388,1.96583][-0.840907,0.235212,-0.487392][0.948642,0.963817,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.94845,0.963603,0][8.86777,7.71853,2.06137][-0.845081,0.530844,-0.0635839][0.948983,0.963694,0][8.89805,7.61388,1.96583][-0.840907,0.235212,-0.487392][0.948642,0.963817,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.87266,7.61403,2.19947][-0.09045,0.158054,0.983279][0.960383,0.968014,0][8.89629,7.48486,2.16337][0.158331,-0.238831,0.958066][0.96015,0.967801,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.960454,0.96771,0][8.87266,7.61403,2.19947][-0.09045,0.158054,0.983279][0.960383,0.968014,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.960454,0.96771,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][8.89805,7.61388,1.96583][0.0544254,0.681757,-0.729552][0.9294,0.955725,0][9.05658,7.43371,1.90696][0.161106,0.431739,-0.887494][0.929991,0.955433,0][8.92751,7.41551,1.87468][0.161106,0.431739,-0.887494][0.930022,0.955691,0][9.02028,7.64966,2.00839][0.0544254,0.681757,-0.729552][0.929313,0.955479,0][9.05658,7.43371,1.90696][0.161106,0.431739,-0.887494][0.929991,0.955433,0][8.89805,7.61388,1.96583][0.0544254,0.681757,-0.729552][0.9294,0.955725,0][9.0637,7.61086,2.08826][0.779323,0.61395,-0.125385][0.975419,0.948638,0][9.09863,7.39472,1.98746][0.897832,0.296805,-0.325277][0.974669,0.948635,0][9.05658,7.43371,1.90696][0.897832,0.296805,-0.325277][0.974694,0.94844,0][9.0637,7.61086,2.08826][0.779323,0.61395,-0.125385][0.975419,0.948638,0][9.05658,7.43371,1.90696][0.897832,0.296805,-0.325277][0.974694,0.94844,0][9.02028,7.64966,2.00839][0.779323,0.61395,-0.125385][0.975445,0.948443,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.949401,0.950297,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.948811,0.950258,0][9.09863,7.39472,1.98746][0.786453,-0.164331,0.595389][0.948996,0.950042,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.949401,0.950297,0][9.09863,7.39472,1.98746][0.786453,-0.164331,0.595389][0.948996,0.950042,0][9.0637,7.61086,2.08826][0.686032,0.0428222,0.72631][0.949636,0.950093,0][8.89629,7.48486,2.16337][-0.889298,-0.266509,0.371647][0.941485,0.948662,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.942128,0.94843,0][8.91874,7.30482,2.08285][-0.894855,-0.270407,0.355125][0.942097,0.948717,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.941516,0.948375,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.942128,0.94843,0][8.89629,7.48486,2.16337][-0.889298,-0.266509,0.371647][0.941485,0.948662,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.94845,0.963603,0][8.92751,7.41551,1.87468][-0.813436,0.144858,-0.563328][0.948056,0.963875,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.947918,0.963652,0][8.89805,7.61388,1.96583][-0.840907,0.235212,-0.487392][0.948642,0.963817,0][8.92751,7.41551,1.87468][-0.813436,0.144858,-0.563328][0.948056,0.963875,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.94845,0.963603,0][8.89629,7.48486,2.16337][0.158331,-0.238831,0.958066][0.96015,0.967801,0][8.91874,7.30482,2.08285][0.208693,-0.377418,0.902221][0.959801,0.967518,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.960074,0.967396,0][8.89629,7.48486,2.16337][0.158331,-0.238831,0.958066][0.96015,0.967801,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.960074,0.967396,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.960454,0.96771,0][8.92751,7.41551,1.87468][0.161106,0.431739,-0.887494][0.930022,0.955691,0][9.05159,7.2097,1.82389][0.170467,0.33175,-0.927838][0.930686,0.955471,0][8.92002,7.2039,1.79764][0.170467,0.33175,-0.927838][0.930678,0.955732,0][9.05658,7.43371,1.90696][0.161106,0.431739,-0.887494][0.929991,0.955433,0][9.05159,7.2097,1.82389][0.170467,0.33175,-0.927838][0.930686,0.955471,0][8.92751,7.41551,1.87468][0.161106,0.431739,-0.887494][0.930022,0.955691,0][9.09863,7.39472,1.98746][0.897832,0.296805,-0.325277][0.950417,0.950795,0][9.09277,7.17075,1.90485][0.907307,0.1244,-0.401645][0.949727,0.950795,0][9.05159,7.2097,1.82389][0.907307,0.1244,-0.401645][0.949685,0.950633,0][9.09863,7.39472,1.98746][0.897832,0.296805,-0.325277][0.950417,0.950795,0][9.05159,7.2097,1.82389][0.907307,0.1244,-0.401645][0.949685,0.950633,0][9.05658,7.43371,1.90696][0.897832,0.296805,-0.325277][0.950374,0.950634,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.948811,0.950258,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.948158,0.950263,0][9.09277,7.17075,1.90485][0.792539,-0.237229,0.561787][0.948307,0.950042,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.948811,0.950258,0][9.09277,7.17075,1.90485][0.792539,-0.237229,0.561787][0.948307,0.950042,0][9.09863,7.39472,1.98746][0.786453,-0.164331,0.595389][0.948996,0.950042,0][8.91874,7.30482,2.08285][-0.894855,-0.270407,0.355125][0.947971,0.963417,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.90873,7.1061,2.01206][-0.899138,-0.105983,0.424639][0.947357,0.963425,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.947918,0.963652,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.91874,7.30482,2.08285][-0.894855,-0.270407,0.355125][0.947971,0.963417,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.947918,0.963652,0][8.92002,7.2039,1.79764][-0.817777,0.226399,-0.529135][0.947404,0.963887,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.92751,7.41551,1.87468][-0.813436,0.144858,-0.563328][0.948056,0.963875,0][8.92002,7.2039,1.79764][-0.817777,0.226399,-0.529135][0.947404,0.963887,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.947918,0.963652,0][8.91874,7.30482,2.08285][0.208693,-0.377418,0.902221][0.959801,0.967518,0][8.90873,7.1061,2.01206][0.207155,-0.337564,0.918225][0.959341,0.967255,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.959587,0.967114,0][8.91874,7.30482,2.08285][0.208693,-0.377418,0.902221][0.959801,0.967518,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.959587,0.967114,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.960074,0.967396,0][8.92002,7.2039,1.79764][0.170467,0.33175,-0.927838][0.930678,0.955732,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.931543,0.955531,0][8.89833,6.92662,1.69326][0.170048,0.335507,-0.926563][0.931535,0.955809,0][9.05159,7.2097,1.82389][0.170467,0.33175,-0.927838][0.930686,0.955471,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.931543,0.955531,0][8.92002,7.2039,1.79764][0.170467,0.33175,-0.927838][0.930678,0.955732,0][9.05159,7.2097,1.82389][0.907307,0.1244,-0.401645][0.949685,0.950633,0][9.06718,6.9327,1.82954][0.965194,0.049085,-0.256886][0.948986,0.950825,0][9.03834,6.93279,1.72119][0.965194,0.049085,-0.256886][0.948825,0.950635,0][9.09277,7.17075,1.90485][0.907307,0.1244,-0.401645][0.949727,0.950795,0][9.06718,6.9327,1.82954][0.965194,0.049085,-0.256886][0.948986,0.950825,0][9.05159,7.2097,1.82389][0.907307,0.1244,-0.401645][0.949685,0.950633,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.948158,0.950263,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.947291,0.950289,0][9.06718,6.9327,1.82954][0.834664,-0.211327,0.508603][0.947565,0.950071,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.948158,0.950263,0][9.06718,6.9327,1.82954][0.834664,-0.211327,0.508603][0.947565,0.950071,0][9.09277,7.17075,1.90485][0.792539,-0.237229,0.561787][0.948307,0.950042,0][8.90873,7.1061,2.01206][-0.899138,-0.105983,0.424639][0.947357,0.963425,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.88631,6.82254,1.92143][-0.895317,-0.0698042,0.439925][0.946481,0.963415,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.90873,7.1061,2.01206][-0.899138,-0.105983,0.424639][0.947357,0.963425,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.89833,6.92662,1.69326][-0.817308,0.257923,-0.515251][0.946531,0.963907,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.92002,7.2039,1.79764][-0.817777,0.226399,-0.529135][0.947404,0.963887,0][8.89833,6.92662,1.69326][-0.817308,0.257923,-0.515251][0.946531,0.963907,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.90873,7.1061,2.01206][0.207155,-0.337564,0.918225][0.959341,0.967255,0][8.88631,6.82254,1.92143][0.207437,-0.312647,0.926942][0.958665,0.96689,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.958927,0.966741,0][8.90873,7.1061,2.01206][0.207155,-0.337564,0.918225][0.959341,0.967255,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.958927,0.966741,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.959587,0.967114,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.962139,0.967915,0][9.13253,6.88352,1.65919][-0.0113337,0.774344,-0.632664][0.962116,0.967671,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.962811,0.967843,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.962139,0.967915,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.962811,0.967843,0][8.89833,6.92662,1.69326][0.170048,0.335507,-0.926563][0.962496,0.968081,0][9.06718,6.9327,1.82954][0.651635,0.757893,0.0311532][0.95654,0.967314,0][9.19297,6.82706,1.76833][0.651635,0.757893,0.0311532][0.956373,0.966994,0][9.13253,6.88352,1.65919][0.651635,0.757893,0.0311532][0.956791,0.966977,0][9.06718,6.9327,1.82954][0.404688,0.908177,-0.106969][0.962801,0.963198,0][9.13253,6.88352,1.65919][-0.0113337,0.774344,-0.632664][0.962215,0.963204,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.962527,0.963062,0][8.99898,6.8293,1.8985][0.547253,0.202578,0.812082][0.979711,0.944642,0][9.07718,6.66515,1.88675][0.547253,0.202578,0.812082][0.98023,0.944787,0][9.19297,6.82706,1.76833][0.547253,0.202578,0.812082][0.979709,0.945105,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.961368,0.95062,0][9.19297,6.82706,1.76833][0.549379,0.18155,0.815611][0.962033,0.950786,0][9.06718,6.9327,1.82954][0.834664,-0.211327,0.508603][0.961544,0.950874,0][8.88631,6.82254,1.92143][-0.895317,-0.0698042,0.439925][0.946481,0.963415,0][8.77992,6.69532,1.6901][-0.884495,-0.0920521,0.457378][0.945767,0.963739,0][8.88542,6.60477,1.87588][-0.884495,-0.0920521,0.457378][0.945853,0.963367,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.77992,6.69532,1.6901][-0.884495,-0.0920521,0.457378][0.945767,0.963739,0][8.88631,6.82254,1.92143][-0.895317,-0.0698042,0.439925][0.946481,0.963415,0][8.81985,6.88266,1.79573][-0.766026,0.431798,-0.476188][0.959735,0.936621,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.959453,0.937008,0][8.77992,6.69532,1.6901][-0.766026,0.431798,-0.476188][0.959077,0.936692,0][8.89833,6.92662,1.69326][-0.817308,0.257923,-0.515251][0.946531,0.963907,0][8.91598,6.8167,1.58129][-0.810243,0.349298,-0.470635][0.946143,0.964054,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.88631,6.82254,1.92143][0.207437,-0.312647,0.926942][0.958665,0.96689,0][8.88542,6.60477,1.87588][0.00899848,-0.204791,0.978764][0.958182,0.966587,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.958736,0.966402,0][8.88631,6.82254,1.92143][0.207437,-0.312647,0.926942][0.958665,0.96689,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.958736,0.966402,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.958927,0.966741,0][9.13253,6.88352,1.65919][0.651635,0.757893,0.0311532][0.956791,0.966977,0][9.19297,6.82706,1.76833][0.651635,0.757893,0.0311532][0.956373,0.966994,0][9.28432,6.81128,1.69462][-0.430871,0.699895,0.569647][0.956373,0.966764,0][9.13253,6.88352,1.65919][0.651635,0.757893,0.0311532][0.956791,0.966977,0][9.28432,6.81128,1.69462][-0.430871,0.699895,0.569647][0.956373,0.966764,0][9.21916,6.87044,1.57265][-0.430871,0.699895,0.569647][0.956833,0.966739,0][9.19297,6.82706,1.76833][0.549379,0.18155,0.815611][0.9692,0.956053,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.968582,0.95608,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.96877,0.955561,0][9.19297,6.82706,1.76833][0.549379,0.18155,0.815611][0.9692,0.956053,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.96877,0.955561,0][9.28432,6.81128,1.69462][0.35599,-0.010512,0.934431][0.969307,0.955883,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.9621,0.967443,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.962811,0.967843,0][9.13253,6.88352,1.65919][-0.0113337,0.774344,-0.632664][0.962116,0.967671,0][8.77992,6.69532,1.6901][-0.884495,-0.0920521,0.457378][0.945767,0.963739,0][8.73675,6.58547,1.63321][-0.859244,0.0756763,0.505938][0.945362,0.963766,0][8.84503,6.46327,1.83538][-0.859244,0.0756763,0.505938][0.945385,0.963345,0][8.77992,6.69532,1.6901][-0.884495,-0.0920521,0.457378][0.945767,0.963739,0][8.84503,6.46327,1.83538][-0.859244,0.0756763,0.505938][0.945385,0.963345,0][8.88542,6.60477,1.87588][-0.884495,-0.0920521,0.457378][0.945853,0.963367,0][8.77992,6.69532,1.6901][-0.766026,0.431798,-0.476188][0.959077,0.936692,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.958494,0.937072,0][8.73675,6.58547,1.63321][-0.750095,0.511741,-0.418902][0.958672,0.936719,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.959453,0.937008,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.958494,0.937072,0][8.77992,6.69532,1.6901][-0.766026,0.431798,-0.476188][0.959077,0.936692,0][8.88542,6.60477,1.87588][0.00899848,-0.204791,0.978764][0.958182,0.966587,0][8.84503,6.46327,1.83538][0.156881,-0.312903,0.936739][0.957781,0.966447,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.957955,0.966129,0][8.88542,6.60477,1.87588][0.00899848,-0.204791,0.978764][0.958182,0.966587,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.957955,0.966129,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.958736,0.966402,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.950424,0.937519,0][8.95304,6.49426,1.37929][-0.197215,0.504097,-0.840829][0.951265,0.937162,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.951288,0.937451,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.936437,0.944835,0][9.16338,6.3855,1.35842][-0.0354722,0.121748,-0.991927][0.936062,0.944723,0][8.95304,6.49426,1.37929][-0.0354722,0.121748,-0.991927][0.935979,0.944257,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.936437,0.944835,0][8.95304,6.49426,1.37929][-0.0354722,0.121748,-0.991927][0.935979,0.944257,0][9.18254,6.7192,1.38355][-0.00386871,0.0767678,-0.997041][0.936958,0.944387,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.967681,0.966219,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.966762,0.966106,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.968582,0.95608,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.9678,0.955714,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.96877,0.955561,0][9.32864,6.3988,1.46254][0.743081,-0.514887,0.42746][0.967064,0.965429,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][9.2145,6.32995,1.45817][0.475153,-0.809586,0.344675][0.966721,0.965454,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.967672,0.965793,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][9.32864,6.3988,1.46254][0.743081,-0.514887,0.42746][0.967064,0.965429,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.930839,0.938093,0][9.2145,6.32995,1.45817][0.430827,-0.676333,-0.597463][0.931205,0.937853,0][9.16338,6.3855,1.35842][-0.0354722,0.121748,-0.991927][0.931254,0.938099,0][9.32864,6.3988,1.46254][0.430836,-0.676333,-0.597456][0.93079,0.937847,0][9.2145,6.32995,1.45817][0.430827,-0.676333,-0.597463][0.931205,0.937853,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.930839,0.938093,0][9.16338,6.3855,1.35842][0.66083,-0.458637,-0.594101][0.968625,0.961398,0][8.9053,5.97134,1.39108][0.66083,-0.458637,-0.594101][0.97007,0.961116,0][8.86832,6.01152,1.31892][0.66083,-0.458637,-0.594101][0.970058,0.961265,0][9.2145,6.32995,1.45817][0.660825,-0.458634,-0.594109][0.968641,0.961192,0][8.9053,5.97134,1.39108][0.66083,-0.458637,-0.594101][0.97007,0.961116,0][9.16338,6.3855,1.35842][0.66083,-0.458637,-0.594101][0.968625,0.961398,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.9053,5.97134,1.39108][0.70817,-0.615916,0.34517][0.965288,0.965461,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][8.9053,5.97134,1.39108][0.70817,-0.615916,0.34517][0.965288,0.965461,0][9.2145,6.32995,1.45817][0.475153,-0.809586,0.344675][0.966721,0.965454,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.965319,0.965964,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.966762,0.966106,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.965319,0.965964,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][8.95304,6.49426,1.37929][-0.0354722,0.121748,-0.991927][0.935979,0.944257,0][8.86832,6.01152,1.31892][0.135525,0.0994798,-0.985767][0.934583,0.944649,0][8.70111,6.10129,1.30499][0.135525,0.0994798,-0.985767][0.934526,0.944275,0][9.16338,6.3855,1.35842][-0.0354722,0.121748,-0.991927][0.936062,0.944723,0][8.86832,6.01152,1.31892][0.135525,0.0994798,-0.985767][0.934583,0.944649,0][8.95304,6.49426,1.37929][-0.0354722,0.121748,-0.991927][0.935979,0.944257,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.951288,0.937451,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.60463,6.1446,1.35359][-0.289291,0.353631,-0.889525][0.952728,0.93746,0][8.95304,6.49426,1.37929][-0.197215,0.504097,-0.840829][0.951265,0.937162,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.951288,0.937451,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.957955,0.966129,0][8.63805,6.06777,1.66392][-0.0114457,-0.341173,0.939931][0.956454,0.966185,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.956584,0.965935,0][8.84503,6.46327,1.83538][0.156881,-0.312903,0.936739][0.957781,0.966447,0][8.63805,6.06777,1.66392][-0.0114457,-0.341173,0.939931][0.956454,0.966185,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.957955,0.966129,0][8.81965,6.55413,1.44647][-0.828848,0.494525,-0.26164][0.977131,0.967035,0][8.60463,6.1446,1.35359][-0.828848,0.494525,-0.26164][0.977139,0.967969,0][8.55973,6.15617,1.51769][-0.828848,0.494525,-0.26164][0.976633,0.967923,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.958494,0.937072,0][8.55973,6.15617,1.51769][-0.790807,0.440443,-0.42501][0.957191,0.936624,0][8.73675,6.58547,1.63321][-0.750095,0.511741,-0.418902][0.958672,0.936719,0][8.84503,6.46327,1.83538][-0.859244,0.0756763,0.505938][0.945385,0.963345,0][8.55973,6.15617,1.51769][-0.81409,0.187809,0.549531][0.943882,0.96367,0][8.63805,6.06777,1.66392][-0.81409,0.187809,0.549531][0.943898,0.963366,0][8.73675,6.58547,1.63321][-0.859244,0.0756763,0.505938][0.945362,0.963766,0][8.55973,6.15617,1.51769][-0.81409,0.187809,0.549531][0.943882,0.96367,0][8.84503,6.46327,1.83538][-0.859244,0.0756763,0.505938][0.945385,0.963345,0][8.55973,6.15617,1.51769][-0.81409,0.187809,0.549531][0.943882,0.96367,0][8.24518,5.60562,1.29435][-0.781937,0.208439,0.587476][0.941796,0.963662,0][8.32154,5.51045,1.42976][-0.781937,0.208439,0.587476][0.941781,0.963373,0][8.55973,6.15617,1.51769][-0.81409,0.187809,0.549531][0.943882,0.96367,0][8.32154,5.51045,1.42976][-0.781937,0.208439,0.587476][0.941781,0.963373,0][8.63805,6.06777,1.66392][-0.81409,0.187809,0.549531][0.943898,0.963366,0][8.60463,6.1446,1.35359][-0.802468,0.558311,-0.210559][0.959735,0.93584,0][8.29839,5.62236,1.13597][-0.802468,0.558311,-0.210559][0.95774,0.935841,0][8.24518,5.60562,1.29435][-0.802468,0.558311,-0.210559][0.957797,0.935521,0][8.60463,6.1446,1.35359][-0.791114,0.555692,-0.255629][0.975521,0.947687,0][8.24518,5.60562,1.29435][-0.791114,0.555692,-0.255629][0.97352,0.947657,0][8.55973,6.15617,1.51769][-0.791114,0.555692,-0.255629][0.975554,0.947362,0][8.63805,6.06777,1.66392][-0.0114457,-0.341173,0.939931][0.956454,0.966185,0][8.32154,5.51045,1.42976][-0.0131514,-0.38096,0.924498][0.954529,0.965852,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.954707,0.96562,0][8.63805,6.06777,1.66392][-0.0114457,-0.341173,0.939931][0.956454,0.966185,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.954707,0.96562,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.956584,0.965935,0][8.60463,6.1446,1.35359][-0.289291,0.353631,-0.889525][0.952728,0.93746,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.954535,0.937328,0][8.29839,5.62236,1.13597][-0.247411,0.49273,-0.834269][0.95461,0.937528,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.954535,0.937328,0][8.60463,6.1446,1.35359][-0.289291,0.353631,-0.889525][0.952728,0.93746,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.57096,5.52671,1.10995][0.212496,0.270605,-0.938945][0.954488,0.936961,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.954535,0.937328,0][8.86832,6.01152,1.31892][0.221955,0.267976,-0.93751][0.952722,0.936875,0][8.57096,5.52671,1.10995][0.212496,0.270605,-0.938945][0.954488,0.936961,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.963298,0.965703,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.965319,0.965964,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.963298,0.965703,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.9053,5.97134,1.39108][0.70817,-0.615916,0.34517][0.965288,0.965461,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.60664,5.48285,1.17705][0.747509,-0.590391,0.304415][0.963436,0.965214,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.9053,5.97134,1.39108][0.70817,-0.615916,0.34517][0.965288,0.965461,0][8.86832,6.01152,1.31892][0.66083,-0.458637,-0.594101][0.970058,0.961265,0][8.60664,5.48285,1.17705][0.78586,-0.235529,-0.571795][0.971946,0.961272,0][8.57096,5.52671,1.10995][0.78586,-0.235529,-0.571795][0.971919,0.961413,0][8.9053,5.97134,1.39108][0.66083,-0.458637,-0.594101][0.97007,0.961116,0][8.60664,5.48285,1.17705][0.78586,-0.235529,-0.571795][0.971946,0.961272,0][8.86832,6.01152,1.31892][0.66083,-0.458637,-0.594101][0.970058,0.961265,0][8.57096,5.52671,1.10995][0.78586,-0.235529,-0.571795][0.975184,0.949508,0][8.61903,5.27466,0.994882][0.91252,0.300646,-0.277342][0.974883,0.948985,0][8.5455,5.38343,0.870836][0.91252,0.300646,-0.277342][0.975445,0.948979,0][8.60664,5.48285,1.17705][0.78586,-0.235529,-0.571795][0.974914,0.949533,0][8.61903,5.27466,0.994882][0.91252,0.300646,-0.277342][0.974883,0.948985,0][8.57096,5.52671,1.10995][0.78586,-0.235529,-0.571795][0.975184,0.949508,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.9621,0.965331,0][8.61903,5.27466,0.994882][0.688476,-0.192884,0.69914][0.962785,0.964912,0][8.52593,5.46296,1.33669][0.866055,-0.299044,0.400652][0.947277,0.950649,0][8.61903,5.27466,0.994882][0.91252,0.300646,-0.277342][0.948417,0.950633,0][8.60664,5.48285,1.17705][0.78586,-0.235529,-0.571795][0.94769,0.950853,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.962771,0.947831,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.963139,0.94687,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.963587,0.947181,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.963298,0.965703,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.9621,0.965331,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.931774,0.96647,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.57096,5.52671,1.10995][0.212496,0.270605,-0.938945][0.932269,0.966386,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.931774,0.96647,0][8.29839,5.62236,1.13597][-0.247411,0.49273,-0.834269][0.931434,0.966429,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.930761,0.967222,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.931774,0.96647,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.29839,5.62236,1.13597][-0.247411,0.49273,-0.834269][0.931434,0.966429,0][8.32154,5.51045,1.42976][-0.0131514,-0.38096,0.924498][0.954529,0.965852,0][8.04918,4.95677,1.25594][0.283652,-0.411454,0.866168][0.952708,0.965462,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][8.32154,5.51045,1.42976][-0.0131514,-0.38096,0.924498][0.954529,0.965852,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.954707,0.96562,0][8.24518,5.60562,1.29435][-0.609508,0.763525,-0.213378][0.971114,0.953563,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.969577,0.954053,0][7.80353,5.18251,1.04193][-0.609508,0.763525,-0.213378][0.969178,0.95365,0][8.29839,5.62236,1.13597][-0.247411,0.49273,-0.834269][0.971057,0.953883,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.969577,0.954053,0][8.24518,5.60562,1.29435][-0.609508,0.763525,-0.213378][0.971114,0.953563,0][8.24518,5.60562,1.29435][-0.781937,0.208439,0.587476][0.947803,0.948394,0][7.80353,5.18251,1.04193][-0.581851,0.128223,0.803124][0.949279,0.947981,0][8.04918,4.95677,1.25594][-0.581851,0.128223,0.803124][0.949568,0.948728,0][8.24518,5.60562,1.29435][-0.781937,0.208439,0.587476][0.941796,0.963662,0][8.04918,4.95677,1.25594][-0.581851,0.128223,0.803124][0.939791,0.963283,0][8.32154,5.51045,1.42976][-0.781937,0.208439,0.587476][0.941781,0.963373,0][8.68357,5.25384,0.933799][0.559995,0.758563,0.33315][0.945324,0.965014,0][8.5455,5.38343,0.870836][0.559995,0.758563,0.33315][0.944795,0.964843,0][8.61903,5.27466,0.994882][0.559995,0.758563,0.33315][0.945316,0.964834,0][8.6106,5.3617,0.809441][0.56261,0.75886,0.328026][0.944804,0.965025,0][8.5455,5.38343,0.870836][0.559995,0.758563,0.33315][0.944795,0.964843,0][8.68357,5.25384,0.933799][0.559995,0.758563,0.33315][0.945324,0.965014,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.952494,0.956449,0][10.19,7.07089,0.314115][0.133514,0.495457,0.85831][0.952124,0.956306,0][10.3256,7.00112,0.333299][0.133514,0.495457,0.85831][0.952598,0.956306,0][10.2598,7.1158,0.277329][0.441427,0.889748,0.11615][0.952253,0.956449,0][10.19,7.07089,0.314115][0.133514,0.495457,0.85831][0.952124,0.956306,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.952494,0.956449,0][10.2793,7.11943,0.172862][0.451869,0.54059,-0.709631][0.974815,0.950644,0][10.3486,7.01587,0.138097][0.451869,0.54059,-0.709631][0.97512,0.950812,0][10.2282,7.07803,0.108805][0.451869,0.54059,-0.709631][0.974689,0.950807,0][10.3405,7.0878,0.187766][0.451872,0.540591,-0.709628][0.975035,0.950646,0][10.3486,7.01587,0.138097][0.451869,0.54059,-0.709631][0.97512,0.950812,0][10.2793,7.11943,0.172862][0.451869,0.54059,-0.709631][0.974815,0.950644,0][10.3596,7.07138,0.242071][0.930649,0.272673,-0.244014][0.962463,0.957902,0][10.386,6.9836,0.244822][0.930649,0.272673,-0.244014][0.96225,0.957891,0][10.3486,7.01587,0.138097][0.930649,0.272673,-0.244014][0.96233,0.957684,0][10.3596,7.07138,0.242071][0.930649,0.272673,-0.244014][0.962463,0.957902,0][10.3486,7.01587,0.138097][0.930649,0.272673,-0.244014][0.96233,0.957684,0][10.3405,7.0878,0.187766][0.930661,0.272643,-0.243999][0.962504,0.957796,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.929481,0.937924,0][10.3256,7.00112,0.333299][0.133514,0.495457,0.85831][0.929565,0.938098,0][10.386,6.9836,0.244822][0.820065,0.262936,0.508289][0.929227,0.938099,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.929481,0.937924,0][10.386,6.9836,0.244822][0.820065,0.262936,0.508289][0.929227,0.938099,0][10.3596,7.07138,0.242071][0.435462,0.892549,0.117174][0.929309,0.937925,0][10.2793,7.11943,0.172862][0.451869,0.54059,-0.709631][0.972305,0.954405,0][10.2282,7.07803,0.108805][0.451869,0.54059,-0.709631][0.972129,0.954262,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.972474,0.954183,0][10.2793,7.11943,0.172862][0.451869,0.54059,-0.709631][0.972305,0.954405,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.972474,0.954183,0][10.2447,7.13028,0.220453][-0.244477,0.891557,-0.381256][0.97248,0.954365,0][10.2447,7.13028,0.220453][-0.244477,0.891557,-0.381256][0.97248,0.954365,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.972474,0.954183,0][10.19,7.07089,0.314115][-0.385509,0.864308,0.32304][0.972736,0.954258,0][10.2447,7.13028,0.220453][-0.244477,0.891557,-0.381256][0.97248,0.954365,0][10.19,7.07089,0.314115][-0.385509,0.864308,0.32304][0.972736,0.954258,0][10.2598,7.1158,0.277329][-0.385501,0.86431,0.323045][0.972613,0.954403,0][10.19,7.07089,0.314115][-0.821214,0.480398,0.307936][0.956837,0.956988,0][10.0481,6.91569,0.177688][-0.821214,0.480398,0.307936][0.957445,0.956703,0][10.0732,6.88107,0.298737][-0.821214,0.480398,0.307936][0.957524,0.956941,0][10.1602,7.09937,0.202335][-0.823252,0.45739,0.336231][0.956783,0.956768,0][10.0481,6.91569,0.177688][-0.821214,0.480398,0.307936][0.957445,0.956703,0][10.19,7.07089,0.314115][-0.821214,0.480398,0.307936][0.956837,0.956988,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.979724,0.953548,0][10.1329,6.91084,0.0836872][-0.641719,0.472738,-0.603916][0.979255,0.95386,0][10.0481,6.91569,0.177688][-0.641719,0.472738,-0.603916][0.979093,0.953692,0][10.2282,7.07803,0.108805][0.451869,0.54059,-0.709631][0.979819,0.953725,0][10.1329,6.91084,0.0836872][-0.641719,0.472738,-0.603916][0.979255,0.95386,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.979724,0.953548,0][10.3256,7.00112,0.333299][0.691744,-0.404801,0.598019][0.946277,0.968042,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.945658,0.967989,0][10.302,6.82368,0.240447][0.691744,-0.404801,0.598019][0.945782,0.967821,0][10.3256,7.00112,0.333299][0.691744,-0.404801,0.598019][0.946277,0.968042,0][10.302,6.82368,0.240447][0.691744,-0.404801,0.598019][0.945782,0.967821,0][10.386,6.9836,0.244822][0.720537,-0.394206,0.570463][0.946338,0.967871,0][10.386,6.9836,0.244822][0.930649,0.272673,-0.244014][0.96225,0.957891,0][10.302,6.82368,0.240447][0.82375,-0.422488,-0.378075][0.961694,0.957842,0][10.2677,6.86078,0.124217][0.82375,-0.422488,-0.378075][0.961795,0.957617,0][10.386,6.9836,0.244822][0.930649,0.272673,-0.244014][0.96225,0.957891,0][10.2677,6.86078,0.124217][0.82375,-0.422488,-0.378075][0.961795,0.957617,0][10.3486,7.01587,0.138097][0.930649,0.272673,-0.244014][0.96233,0.957684,0][10.2282,7.07803,0.108805][0.28227,-0.0167763,-0.959188][0.968211,0.945025,0][10.2677,6.86078,0.124217][0.28227,-0.0167763,-0.959188][0.967717,0.945329,0][10.1329,6.91084,0.0836872][0.28227,-0.0167763,-0.959188][0.967613,0.945052,0][10.3486,7.01587,0.138097][0.222306,-0.0287577,-0.974553][0.968258,0.945292,0][10.2677,6.86078,0.124217][0.28227,-0.0167763,-0.959188][0.967717,0.945329,0][10.2282,7.07803,0.108805][0.28227,-0.0167763,-0.959188][0.968211,0.945025,0][10.19,7.07089,0.314115][-0.185666,0.0347001,0.982][0.945257,0.937571,0][10.0732,6.88107,0.298737][-0.185666,0.0347001,0.982][0.945946,0.93752,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.9459,0.937841,0][10.19,7.07089,0.314115][-0.185666,0.0347001,0.982][0.945257,0.937571,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.9459,0.937841,0][10.3256,7.00112,0.333299][0.691744,-0.404801,0.598019][0.945275,0.937873,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.951428,0.956306,0][9.70342,6.98047,-0.210099][0.291857,0.940957,-0.171522][0.951715,0.956459,0][9.61855,6.98973,-0.303714][0.291857,0.940957,-0.171522][0.951331,0.956453,0][9.63199,7.00741,-0.18384][-0.34871,0.847599,0.399971][0.951628,0.956309,0][9.70342,6.98047,-0.210099][0.291857,0.940957,-0.171522][0.951715,0.956459,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.951428,0.956306,0][9.55909,6.95172,-0.137436][-0.712132,0.113427,0.692822][0.973186,0.940988,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.972986,0.941171,0][9.5629,6.87313,-0.120654][-0.712132,0.113427,0.692822][0.972944,0.940948,0][9.51979,6.96309,-0.179688][-0.712129,0.113418,0.692826][0.973208,0.941104,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.972986,0.941171,0][9.55909,6.95172,-0.137436][-0.712132,0.113427,0.692822][0.973186,0.940988,0][9.55909,6.95172,-0.137436][-0.00719517,0.208473,0.978002][0.929215,0.951962,0][9.5629,6.87313,-0.120654][-0.00719517,0.208473,0.978002][0.929456,0.951989,0][9.66386,6.91904,-0.129699][-0.00719517,0.208473,0.978002][0.929274,0.952176,0][9.55909,6.95172,-0.137436][-0.00719517,0.208473,0.978002][0.929215,0.951962,0][9.66386,6.91904,-0.129699][-0.00719517,0.208473,0.978002][0.929274,0.952176,0][9.61147,6.97554,-0.142128][-0.00719458,0.208475,0.978001][0.92912,0.952058,0][9.63199,7.00741,-0.18384][-0.337033,0.820777,0.461231][0.975932,0.953012,0][9.66386,6.91904,-0.129699][0.464653,0.578387,0.670497][0.976163,0.952855,0][9.70342,6.98047,-0.210099][0.464653,0.578387,0.670497][0.976166,0.95307,0][9.61147,6.97554,-0.142128][-0.333496,0.823668,0.458642][0.97593,0.9529,0][9.66386,6.91904,-0.129699][0.464653,0.578387,0.670497][0.976163,0.952855,0][9.63199,7.00741,-0.18384][-0.337033,0.820777,0.461231][0.975932,0.953012,0][9.51979,6.96309,-0.179688][-0.712129,0.113418,0.692826][0.98019,0.935367,0][9.52215,6.95013,-0.288583][-0.889701,0.450697,-0.0728277][0.980235,0.935582,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.979978,0.935444,0][9.53795,6.99167,-0.224556][-0.889693,0.450713,-0.0728295][0.980324,0.935438,0][9.52215,6.95013,-0.288583][-0.889701,0.450697,-0.0728277][0.980235,0.935582,0][9.51979,6.96309,-0.179688][-0.712129,0.113418,0.692826][0.98019,0.935367,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.931335,0.939395,0][9.61855,6.98973,-0.303714][0.291857,0.940957,-0.171522][0.931535,0.939297,0][9.52215,6.95013,-0.288583][-0.400068,0.810786,-0.427284][0.931624,0.939498,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.931335,0.939395,0][9.52215,6.95013,-0.288583][-0.400068,0.810786,-0.427284][0.931624,0.939498,0][9.53795,6.99167,-0.224556][-0.400068,0.810786,-0.427283][0.931382,0.939499,0][9.61855,6.98973,-0.303714][0.291857,0.940957,-0.171522][0.931535,0.939297,0][9.66797,6.88039,-0.384346][-0.320278,0.464229,-0.825781][0.931891,0.939201,0][9.55356,6.8334,-0.366388][-0.320278,0.464229,-0.825781][0.931997,0.939439,0][9.61855,6.98973,-0.303714][0.291857,0.940957,-0.171522][0.931535,0.939297,0][9.55356,6.8334,-0.366388][-0.320278,0.464229,-0.825781][0.931997,0.939439,0][9.52215,6.95013,-0.288583][-0.400068,0.810786,-0.427284][0.931624,0.939498,0][9.52215,6.95013,-0.288583][-0.889701,0.450697,-0.0728277][0.980235,0.935582,0][9.55356,6.8334,-0.366388][-0.927079,0.000386139,-0.374867][0.98001,0.935774,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.979704,0.93561,0][9.52215,6.95013,-0.288583][-0.889701,0.450697,-0.0728277][0.980235,0.935582,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.979704,0.93561,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.979978,0.935444,0][9.66386,6.91904,-0.129699][0.464653,0.578387,0.670497][0.976163,0.952855,0][9.72175,6.79651,-0.17782][0.822951,0.176748,0.539918][0.97654,0.952827,0][9.7687,6.86941,-0.273241][0.822951,0.176748,0.539918][0.976544,0.953083,0][9.66386,6.91904,-0.129699][0.464653,0.578387,0.670497][0.976163,0.952855,0][9.7687,6.86941,-0.273241][0.822951,0.176748,0.539918][0.976544,0.953083,0][9.70342,6.98047,-0.210099][0.464653,0.578387,0.670497][0.976166,0.95307,0][9.5629,6.87313,-0.120654][-0.00719517,0.208473,0.978002][0.929456,0.951989,0][9.60192,6.74201,-0.167086][0.207487,-0.271093,0.939924][0.929845,0.9521,0][9.72175,6.79651,-0.17782][0.207487,-0.271093,0.939924][0.929628,0.952321,0][9.5629,6.87313,-0.120654][-0.00719517,0.208473,0.978002][0.929456,0.951989,0][9.72175,6.79651,-0.17782][0.207487,-0.271093,0.939924][0.929628,0.952321,0][9.66386,6.91904,-0.129699][-0.00719517,0.208473,0.978002][0.929274,0.952176,0][9.5629,6.87313,-0.120654][-0.712132,0.113427,0.692822][0.972944,0.940948,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.97261,0.941206,0][9.60192,6.74201,-0.167086][-0.719805,-0.412069,0.55864][0.97256,0.940941,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.972986,0.941171,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.97261,0.941206,0][9.5629,6.87313,-0.120654][-0.712132,0.113427,0.692822][0.972944,0.940948,0][9.61855,6.98973,-0.303714][0.604551,0.631418,-0.485623][0.931672,0.941172,0][9.7687,6.86941,-0.273241][0.604551,0.631418,-0.485623][0.932063,0.940876,0][9.66797,6.88039,-0.384346][0.604551,0.631418,-0.485623][0.932122,0.941172,0][9.70342,6.98047,-0.210099][0.604554,0.631424,-0.485612][0.931622,0.940923,0][9.7687,6.86941,-0.273241][0.604551,0.631418,-0.485623][0.932063,0.940876,0][9.61855,6.98973,-0.303714][0.604551,0.631418,-0.485623][0.931672,0.941172,0][9.66797,6.88039,-0.384346][0.604551,0.631418,-0.485623][0.932122,0.941172,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.93271,0.940885,0][9.66855,6.70533,-0.479124][0.611787,0.37816,-0.694774][0.9327,0.941238,0][9.7687,6.86941,-0.273241][0.604551,0.631418,-0.485623][0.932063,0.940876,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.93271,0.940885,0][9.66797,6.88039,-0.384346][0.604551,0.631418,-0.485623][0.932122,0.941172,0][9.60192,6.74201,-0.167086][-0.719805,-0.412069,0.55864][0.97256,0.940941,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.972197,0.941243,0][9.6131,6.5968,-0.187365][-0.657636,-0.153624,0.737505][0.972118,0.940933,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.97261,0.941206,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.972197,0.941243,0][9.60192,6.74201,-0.167086][-0.719805,-0.412069,0.55864][0.97256,0.940941,0][9.60192,6.74201,-0.167086][0.207487,-0.271093,0.939924][0.929845,0.9521,0][9.6131,6.5968,-0.187365][0.324883,-0.106234,0.939769][0.930289,0.952159,0][9.75995,6.62586,-0.234845][0.324883,-0.106234,0.939769][0.93014,0.95244,0][9.60192,6.74201,-0.167086][0.207487,-0.271093,0.939924][0.929845,0.9521,0][9.75995,6.62586,-0.234845][0.324883,-0.106234,0.939769][0.93014,0.95244,0][9.72175,6.79651,-0.17782][0.207487,-0.271093,0.939924][0.929628,0.952321,0][9.72175,6.79651,-0.17782][0.926966,0.0853999,0.365296][0.936973,0.946093,0][9.75995,6.62586,-0.234845][0.926966,0.0853999,0.365296][0.937342,0.946275,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.937015,0.946494,0][9.72175,6.79651,-0.17782][0.926966,0.0853999,0.365296][0.936973,0.946093,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.937015,0.946494,0][9.7687,6.86941,-0.273241][0.604551,0.631418,-0.485623][0.936636,0.94623,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.979704,0.93561,0][9.53137,6.68454,-0.42589][-0.964323,0.170306,-0.202673][0.979615,0.935954,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.979333,0.935711,0][9.55356,6.8334,-0.366388][-0.927079,0.000386139,-0.374867][0.98001,0.935774,0][9.53137,6.68454,-0.42589][-0.964323,0.170306,-0.202673][0.979615,0.935954,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.979704,0.93561,0][9.55356,6.8334,-0.366388][-0.320278,0.464229,-0.825781][0.931997,0.939439,0][9.66855,6.70533,-0.479124][-0.383846,0.391507,-0.836292][0.932423,0.939211,0][9.53137,6.68454,-0.42589][-0.383846,0.391507,-0.836292][0.93241,0.939504,0][9.66797,6.88039,-0.384346][-0.320278,0.464229,-0.825781][0.931891,0.939201,0][9.66855,6.70533,-0.479124][-0.383846,0.391507,-0.836292][0.932423,0.939211,0][9.55356,6.8334,-0.366388][-0.320278,0.464229,-0.825781][0.931997,0.939439,0][9.53137,6.68454,-0.42589][-0.648817,0.0132433,-0.760829][0.95192,0.950867,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.47042,6.38812,-0.379075][-0.648817,0.0132433,-0.76083][0.952806,0.950663,0][9.66855,6.70533,-0.479124][-0.370747,0.0764195,-0.925584][0.951641,0.950657,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.53137,6.68454,-0.42589][-0.648817,0.0132433,-0.760829][0.95192,0.950867,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.979333,0.935711,0][9.47042,6.38812,-0.379075][-0.99618,0.0763878,0.0423204][0.978689,0.935996,0][9.47709,6.39049,-0.22633][-0.99618,0.0763878,0.0423204][0.978596,0.935699,0][9.53137,6.68454,-0.42589][-0.964323,0.170306,-0.202673][0.979615,0.935954,0][9.47042,6.38812,-0.379075][-0.99618,0.0763878,0.0423204][0.978689,0.935996,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.979333,0.935711,0][9.75995,6.62586,-0.234845][0.926966,0.0853999,0.365296][0.937342,0.946275,0][9.73504,6.3096,-0.252583][0.996075,-0.0804985,0.0368026][0.938218,0.946465,0][9.74099,6.31317,-0.405731][0.996075,-0.0804985,0.0368026][0.938075,0.946755,0][9.75995,6.62586,-0.234845][0.926966,0.0853999,0.365296][0.937342,0.946275,0][9.74099,6.31317,-0.405731][0.996075,-0.0804985,0.0368026][0.938075,0.946755,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.937015,0.946494,0][9.6131,6.5968,-0.187365][0.324883,-0.106234,0.939769][0.930289,0.952159,0][9.61335,6.34125,-0.15851][0.623483,0.0883153,0.776833][0.931077,0.952225,0][9.73504,6.3096,-0.252583][0.623483,0.0883153,0.776833][0.931126,0.952472,0][9.6131,6.5968,-0.187365][0.324883,-0.106234,0.939769][0.930289,0.952159,0][9.73504,6.3096,-0.252583][0.623483,0.0883153,0.776833][0.931126,0.952472,0][9.75995,6.62586,-0.234845][0.324883,-0.106234,0.939769][0.93014,0.95244,0][9.6131,6.5968,-0.187365][0.324883,-0.106234,0.939769][0.930289,0.952159,0][9.47709,6.39049,-0.22633][-0.413565,0.101771,0.904769][0.93098,0.951945,0][9.61335,6.34125,-0.15851][0.623483,0.0883153,0.776833][0.931077,0.952225,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.972197,0.941243,0][9.47709,6.39049,-0.22633][-0.99618,0.0763878,0.0423204][0.971428,0.941144,0][9.6131,6.5968,-0.187365][-0.657636,-0.153624,0.737505][0.972118,0.940933,0][9.66855,6.70533,-0.479124][-0.370747,0.0764195,-0.925584][0.951641,0.950657,0][9.74099,6.31317,-0.405731][0.359874,-0.106983,-0.926847][0.952564,0.950128,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.93271,0.940885,0][9.74099,6.31317,-0.405731][0.996075,-0.0804985,0.0368026][0.933572,0.940904,0][9.66855,6.70533,-0.479124][0.611787,0.37816,-0.694774][0.9327,0.941238,0][9.74099,6.31317,-0.405731][0.359874,-0.106983,-0.926847][0.952564,0.950128,0][9.63076,5.65551,-0.284773][0.16945,-0.205669,-0.96384][0.954488,0.949633,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.95463,0.950038,0][9.74099,6.31317,-0.405731][0.359874,-0.106983,-0.926847][0.952564,0.950128,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.95463,0.950038,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.61335,6.34125,-0.15851][-0.183772,0.314302,0.931366][0.939294,0.94084,0][9.38539,5.8368,-0.0332535][-0.183772,0.314302,0.931366][0.941017,0.940854,0][9.55233,5.76063,0.0253896][-0.183772,0.314302,0.931366][0.941012,0.941217,0][9.47709,6.39049,-0.22633][-0.308995,0.358374,0.88096][0.939334,0.940554,0][9.38539,5.8368,-0.0332535][-0.183772,0.314302,0.931366][0.941017,0.940854,0][9.61335,6.34125,-0.15851][-0.183772,0.314302,0.931366][0.939294,0.94084,0][9.73504,6.3096,-0.252583][0.77723,0.0585417,0.626487][0.968068,0.950676,0][9.55233,5.76063,0.0253896][0.77723,0.0585417,0.626487][0.967672,0.949478,0][9.66325,5.67971,-0.104656][0.77723,0.0585417,0.626487][0.968258,0.94944,0][9.61335,6.34125,-0.15851][-0.183772,0.314302,0.931366][0.939294,0.94084,0][9.55233,5.76063,0.0253896][-0.183772,0.314302,0.931366][0.941012,0.941217,0][9.73504,6.3096,-0.252583][0.630173,0.173485,0.756826][0.939223,0.941086,0][9.73504,6.3096,-0.252583][0.996075,-0.0804985,0.0368026][0.938218,0.946465,0][9.66325,5.67971,-0.104656][0.976568,-0.147998,-0.156243][0.940145,0.946499,0][9.63076,5.65551,-0.284773][0.976568,-0.147998,-0.156243][0.940103,0.946862,0][9.73504,6.3096,-0.252583][0.996075,-0.0804985,0.0368026][0.938218,0.946465,0][9.63076,5.65551,-0.284773][0.976568,-0.147998,-0.156243][0.940103,0.946862,0][9.74099,6.31317,-0.405731][0.996075,-0.0804985,0.0368026][0.938075,0.946755,0][9.47709,6.39049,-0.22633][-0.99618,0.0763878,0.0423204][0.978596,0.935699,0][9.33727,5.80854,-0.208733][-0.946552,0.234133,0.22186][0.976806,0.93593,0][9.38539,5.8368,-0.0332535][-0.946552,0.234133,0.22186][0.976821,0.935571,0][9.47042,6.38812,-0.379075][-0.99618,0.0763878,0.0423204][0.978689,0.935996,0][9.33727,5.80854,-0.208733][-0.946552,0.234133,0.22186][0.976806,0.93593,0][9.47709,6.39049,-0.22633][-0.99618,0.0763878,0.0423204][0.978596,0.935699,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.975705,0.950708,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.977714,0.950448,0][9.33727,5.80854,-0.208733][-0.780486,0.045076,-0.623546][0.977722,0.950803,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.33727,5.80854,-0.208733][-0.780486,0.045076,-0.623546][0.95456,0.950287,0][9.47042,6.38812,-0.379075][-0.648817,0.0132433,-0.76083][0.952806,0.950663,0][9.43255,5.72356,-0.334142][-0.730903,0.209494,-0.649534][0.946376,0.936076,0][9.17128,5.28415,-0.181867][-0.730903,0.209494,-0.649534][0.948036,0.93605,0][9.09506,5.44223,-0.0451085][-0.730903,0.209494,-0.649534][0.947885,0.93648,0][9.43255,5.72356,-0.334142][-0.730903,0.209494,-0.649534][0.946376,0.936076,0][9.09506,5.44223,-0.0451085][-0.730903,0.209494,-0.649534][0.947885,0.93648,0][9.33727,5.80854,-0.208733][-0.721552,0.178256,-0.66902][0.946428,0.936428,0][9.33727,5.80854,-0.208733][-0.946552,0.234133,0.22186][0.976806,0.93593,0][9.09506,5.44223,-0.0451085][-0.784213,0.595854,0.173115][0.975373,0.93581,0][9.19877,5.52447,0.141666][-0.784213,0.595854,0.173115][0.9756,0.935397,0][9.33727,5.80854,-0.208733][-0.946552,0.234133,0.22186][0.976806,0.93593,0][9.19877,5.52447,0.141666][-0.784213,0.595854,0.173115][0.9756,0.935397,0][9.38539,5.8368,-0.0332535][-0.946552,0.234133,0.22186][0.976821,0.935571,0][9.63076,5.65551,-0.284773][0.976568,-0.147998,-0.156243][0.940103,0.946862,0][9.50177,5.26681,0.0570909][0.870252,-0.45495,-0.188898][0.941606,0.946423,0][9.41638,5.18519,-0.139692][0.870252,-0.45495,-0.188898][0.941774,0.946857,0][9.66325,5.67971,-0.104656][0.976568,-0.147998,-0.156243][0.940145,0.946499,0][9.50177,5.26681,0.0570909][0.870252,-0.45495,-0.188898][0.941606,0.946423,0][9.63076,5.65551,-0.284773][0.976568,-0.147998,-0.156243][0.940103,0.946862,0][9.66325,5.67971,-0.104656][0.77723,0.0585417,0.626487][0.969335,0.965922,0][9.40721,5.42427,0.203858][0.797937,-0.0779352,0.597681][0.970758,0.965845,0][9.50177,5.26681,0.0570909][0.797937,-0.0779352,0.597681][0.970736,0.966199,0][9.55233,5.76063,0.0253896][0.77723,0.0585417,0.626487][0.967672,0.949478,0][9.40721,5.42427,0.203858][0.797937,-0.0779352,0.597681][0.967348,0.948718,0][9.66325,5.67971,-0.104656][0.77723,0.0585417,0.626487][0.968258,0.94944,0][9.55233,5.76063,0.0253896][-0.183772,0.314302,0.931366][0.941012,0.941217,0][9.19877,5.52447,0.141666][-0.0314708,0.479021,0.877239][0.942144,0.94078,0][9.40721,5.42427,0.203858][-0.0314708,0.479021,0.877239][0.942152,0.941238,0][9.38539,5.8368,-0.0332535][-0.183772,0.314302,0.931366][0.941017,0.940854,0][9.19877,5.52447,0.141666][-0.0314708,0.479021,0.877239][0.942144,0.94078,0][9.55233,5.76063,0.0253896][-0.183772,0.314302,0.931366][0.941012,0.941217,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.95463,0.950038,0][9.41638,5.18519,-0.139692][0.0243646,-0.340252,-0.940019][0.956085,0.949508,0][9.17128,5.28415,-0.181867][0.0243646,-0.340252,-0.940019][0.956221,0.950024,0][9.63076,5.65551,-0.284773][0.16945,-0.205669,-0.96384][0.954488,0.949633,0][9.41638,5.18519,-0.139692][0.0243646,-0.340252,-0.940019][0.956085,0.949508,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.95463,0.950038,0][9.17128,5.28415,-0.181867][0.0243646,-0.340252,-0.940019][0.956221,0.950024,0][9.05501,4.85389,0.227357][-0.106676,-0.669946,-0.734706][0.957552,0.949775,0][8.84938,5.03413,0.0928629][-0.106676,-0.669946,-0.734706][0.957409,0.950309,0][9.41638,5.18519,-0.139692][0.0243646,-0.340252,-0.940019][0.956085,0.949508,0][9.05501,4.85389,0.227357][-0.106676,-0.669946,-0.734706][0.957552,0.949775,0][9.17128,5.28415,-0.181867][0.0243646,-0.340252,-0.940019][0.956221,0.950024,0][9.40721,5.42427,0.203858][-0.0314708,0.479021,0.877239][0.942152,0.941238,0][8.9794,5.33613,0.335486][0.083745,0.68057,0.727882][0.942964,0.940544,0][9.21901,5.12092,0.509137][0.083745,0.68057,0.727882][0.943255,0.941154,0][9.19877,5.52447,0.141666][-0.0314708,0.479021,0.877239][0.942144,0.94078,0][8.9794,5.33613,0.335486][0.083745,0.68057,0.727882][0.942964,0.940544,0][9.40721,5.42427,0.203858][-0.0314708,0.479021,0.877239][0.942152,0.941238,0][9.50177,5.26681,0.0570909][0.797937,-0.0779352,0.597681][0.970736,0.966199,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.972212,0.96579,0][9.20186,4.93529,0.392556][0.84272,-0.339999,0.417401][0.972426,0.966184,0][9.40721,5.42427,0.203858][0.797937,-0.0779352,0.597681][0.970758,0.965845,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.972212,0.96579,0][9.50177,5.26681,0.0570909][0.797937,-0.0779352,0.597681][0.970736,0.966199,0][9.41638,5.18519,-0.139692][0.870252,-0.45495,-0.188898][0.941774,0.946857,0][9.20186,4.93529,0.392556][0.591897,-0.794702,-0.134561][0.943166,0.946007,0][9.05501,4.85389,0.227357][0.591897,-0.794702,-0.134561][0.943437,0.946394,0][9.50177,5.26681,0.0570909][0.870252,-0.45495,-0.188898][0.941606,0.946423,0][9.20186,4.93529,0.392556][0.591897,-0.794702,-0.134561][0.943166,0.946007,0][9.41638,5.18519,-0.139692][0.870252,-0.45495,-0.188898][0.941774,0.946857,0][9.09506,5.44223,-0.0451085][-0.723619,0.689646,-0.0276407][0.929208,0.966386,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.930328,0.966405,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.930258,0.966838,0][9.09506,5.44223,-0.0451085][-0.723619,0.689646,-0.0276407][0.929208,0.966386,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.930258,0.966838,0][9.19877,5.52447,0.141666][-0.641698,0.766728,0.0187415][0.929241,0.966824,0][9.17128,5.28415,-0.181867][-0.749792,0.34484,-0.56471][0.971019,0.939767,0][8.84938,5.03413,0.0928629][-0.749792,0.34484,-0.56471][0.969614,0.940154,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.969584,0.939744,0][9.17128,5.28415,-0.181867][-0.772209,0.159679,-0.614977][0.939205,0.938099,0][8.879,5.22414,0.169557][-0.772209,0.159679,-0.614977][0.937771,0.938081,0][9.09506,5.44223,-0.0451085][-0.772209,0.159679,-0.614977][0.938805,0.937739,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.9459,0.937841,0][9.795,6.27746,0.308647][-0.274929,0.180023,0.944461][0.948015,0.937526,0][9.96276,6.19174,0.373819][-0.274929,0.180023,0.944461][0.948036,0.937899,0][10.0732,6.88107,0.298737][-0.185666,0.0347001,0.982][0.945946,0.93752,0][9.795,6.27746,0.308647][-0.274929,0.180023,0.944461][0.948015,0.937526,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.9459,0.937841,0][10.2677,6.86078,0.124217][0.28227,-0.0167763,-0.959188][0.967717,0.945329,0][9.98965,6.10186,0.10994][0.307511,-0.09485,-0.946805][0.965272,0.945708,0][9.82216,6.18519,0.0471945][0.307511,-0.09485,-0.946805][0.965198,0.94534,0][10.2677,6.86078,0.124217][0.28227,-0.0167763,-0.959188][0.967717,0.945329,0][9.82216,6.18519,0.0471945][0.307511,-0.09485,-0.946805][0.965198,0.94534,0][10.1329,6.91084,0.0836872][0.28227,-0.0167763,-0.959188][0.967613,0.945052,0][10.2677,6.86078,0.124217][0.82375,-0.422488,-0.378075][0.961795,0.957617,0][10.0051,6.13419,0.262429][0.938865,-0.343547,-0.0225253][0.959366,0.957713,0][9.98965,6.10186,0.10994][0.938865,-0.343547,-0.0225253][0.95931,0.957405,0][10.302,6.82368,0.240447][0.82375,-0.422488,-0.378075][0.961694,0.957842,0][10.0051,6.13419,0.262429][0.938865,-0.343547,-0.0225253][0.959366,0.957713,0][10.2677,6.86078,0.124217][0.82375,-0.422488,-0.378075][0.961795,0.957617,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.945658,0.967989,0][9.96276,6.19174,0.373819][-0.274929,0.180023,0.944461][0.94352,0.967919,0][10.0051,6.13419,0.262429][0.82452,-0.309573,0.473636][0.943454,0.967692,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.945658,0.967989,0][10.0051,6.13419,0.262429][0.82452,-0.309573,0.473636][0.943454,0.967692,0][10.302,6.82368,0.240447][0.691744,-0.404801,0.598019][0.945782,0.967821,0][10.1329,6.91084,0.0836872][-0.641719,0.472738,-0.603916][0.979255,0.95386,0][9.82216,6.18519,0.0471945][-0.780696,0.36004,-0.510769][0.97689,0.954286,0][9.77047,6.25207,0.173353][-0.780696,0.36004,-0.510769][0.976918,0.954025,0][10.1329,6.91084,0.0836872][-0.641719,0.472738,-0.603916][0.979255,0.95386,0][9.77047,6.25207,0.173353][-0.780696,0.36004,-0.510769][0.976918,0.954025,0][10.0481,6.91569,0.177688][-0.641719,0.472738,-0.603916][0.979093,0.953692,0][10.0481,6.91569,0.177688][-0.821214,0.480398,0.307936][0.957445,0.956703,0][9.77047,6.25207,0.173353][-0.918628,0.383633,0.0945966][0.95968,0.956641,0][9.795,6.27746,0.308647][-0.918628,0.383633,0.0945966][0.959592,0.956912,0][10.0481,6.91569,0.177688][-0.821214,0.480398,0.307936][0.957445,0.956703,0][9.795,6.27746,0.308647][-0.918628,0.383633,0.0945966][0.959592,0.956912,0][10.0732,6.88107,0.298737][-0.821214,0.480398,0.307936][0.957524,0.956941,0][9.77047,6.25207,0.173353][-0.918628,0.383633,0.0945966][0.95968,0.956641,0][9.42908,5.74308,0.277109][-0.791882,0.573751,0.209124][0.961576,0.956802,0][9.53249,5.84983,0.37578][-0.791882,0.573751,0.209124][0.961151,0.957008,0][9.77047,6.25207,0.173353][-0.918628,0.383633,0.0945966][0.95968,0.956641,0][9.53249,5.84983,0.37578][-0.791882,0.573751,0.209124][0.961151,0.957008,0][9.795,6.27746,0.308647][-0.918628,0.383633,0.0945966][0.959592,0.956912,0][9.82216,6.18519,0.0471945][-0.780696,0.36004,-0.510769][0.97689,0.954286,0][9.39358,5.57766,0.141278][-0.779267,0.489046,-0.391889][0.974605,0.954435,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.82216,6.18519,0.0471945][-0.780696,0.36004,-0.510769][0.97689,0.954286,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.77047,6.25207,0.173353][-0.780696,0.36004,-0.510769][0.976918,0.954025,0][10.0051,6.13419,0.262429][0.82452,-0.309573,0.473636][0.943454,0.967692,0][9.66252,5.72401,0.494565][0.696106,-0.189566,0.69246][0.941774,0.968031,0][9.67064,5.53322,0.434166][0.696106,-0.189566,0.69246][0.941271,0.967873,0][9.96276,6.19174,0.373819][-0.274929,0.180023,0.944461][0.94352,0.967919,0][9.66252,5.72401,0.494565][0.696106,-0.189566,0.69246][0.941774,0.968031,0][10.0051,6.13419,0.262429][0.82452,-0.309573,0.473636][0.943454,0.967692,0][9.98965,6.10186,0.10994][0.938865,-0.343547,-0.0225253][0.95931,0.957405,0][9.67064,5.53322,0.434166][0.841855,-0.530093,-0.1014][0.957184,0.957894,0][9.57607,5.41375,0.273536][0.841855,-0.530093,-0.1014][0.956783,0.957544,0][10.0051,6.13419,0.262429][0.938865,-0.343547,-0.0225253][0.959366,0.957713,0][9.67064,5.53322,0.434166][0.841855,-0.530093,-0.1014][0.957184,0.957894,0][9.98965,6.10186,0.10994][0.938865,-0.343547,-0.0225253][0.95931,0.957405,0][9.98965,6.10186,0.10994][0.307511,-0.09485,-0.946805][0.965272,0.945708,0][9.57607,5.41375,0.273536][0.29101,-0.383311,-0.876576][0.962776,0.945784,0][9.39358,5.57766,0.141278][0.29101,-0.383311,-0.876576][0.962884,0.945303,0][9.98965,6.10186,0.10994][0.307511,-0.09485,-0.946805][0.965272,0.945708,0][9.39358,5.57766,0.141278][0.29101,-0.383311,-0.876576][0.962884,0.945303,0][9.82216,6.18519,0.0471945][0.307511,-0.09485,-0.946805][0.965198,0.94534,0][9.96276,6.19174,0.373819][-0.341297,0.434282,0.833616][0.942276,0.961756,0][9.53249,5.84983,0.37578][-0.341297,0.434282,0.833616][0.943955,0.961546,0][9.66252,5.72401,0.494565][-0.341297,0.434282,0.833616][0.943991,0.961904,0][9.795,6.27746,0.308647][-0.219238,0.281255,0.934254][0.942412,0.961393,0][9.53249,5.84983,0.37578][-0.341297,0.434282,0.833616][0.943955,0.961546,0][9.96276,6.19174,0.373819][-0.341297,0.434282,0.833616][0.942276,0.961756,0][9.66252,5.72401,0.494565][-0.341297,0.434282,0.833616][0.943991,0.961904,0][9.15305,5.5798,0.588168][-0.0545361,0.672039,0.738505][0.94536,0.96132,0][9.26328,5.47049,0.695786][-0.0545361,0.672039,0.738505][0.945397,0.961627,0][9.53249,5.84983,0.37578][-0.341297,0.434282,0.833616][0.943955,0.961546,0][9.15305,5.5798,0.588168][-0.0545361,0.672039,0.738505][0.94536,0.96132,0][9.66252,5.72401,0.494565][-0.341297,0.434282,0.833616][0.943991,0.961904,0][9.57607,5.41375,0.273536][0.29101,-0.383311,-0.876576][0.962776,0.945784,0][9.21901,5.12092,0.509137][0.000776758,-0.627441,-0.778664][0.9614,0.945519,0][8.9794,5.33613,0.335486][0.000776758,-0.627441,-0.778664][0.961543,0.944887,0][9.57607,5.41375,0.273536][0.29101,-0.383311,-0.876576][0.962776,0.945784,0][8.9794,5.33613,0.335486][0.000776758,-0.627441,-0.778664][0.961543,0.944887,0][9.39358,5.57766,0.141278][0.29101,-0.383311,-0.876576][0.962884,0.945303,0][9.57607,5.41375,0.273536][0.716752,-0.624752,0.309761][0.928981,0.948728,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.930242,0.948318,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.93047,0.948712,0][9.67064,5.53322,0.434166][0.696106,-0.189566,0.69246][0.928815,0.948308,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.930242,0.948318,0][9.57607,5.41375,0.273536][0.716752,-0.624752,0.309761][0.928981,0.948728,0][9.67064,5.53322,0.434166][0.696106,-0.189566,0.69246][0.93652,0.952119,0][9.26328,5.47049,0.695786][0.549892,-0.13003,0.825052][0.935278,0.952323,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.935088,0.951934,0][9.66252,5.72401,0.494565][0.696106,-0.189566,0.69246][0.936731,0.952472,0][9.26328,5.47049,0.695786][0.549892,-0.13003,0.825052][0.935278,0.952323,0][9.67064,5.53322,0.434166][0.696106,-0.189566,0.69246][0.93652,0.952119,0][9.39358,5.57766,0.141278][-0.779267,0.489046,-0.391889][0.974605,0.954435,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.973273,0.954238,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][9.39358,5.57766,0.141278][-0.779267,0.489046,-0.391889][0.974605,0.954435,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][9.15305,5.5798,0.588168][-0.535979,0.843593,-0.0328335][0.973986,0.953618,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.15305,5.5798,0.588168][-0.535979,0.843593,-0.0328335][0.973986,0.953618,0][9.53249,5.84983,0.37578][-0.630454,0.759371,-0.16088][0.975364,0.953844,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.934027,0.968103,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.93155,0.968047,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.934027,0.968103,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.934178,0.967681,0][8.84938,5.03413,0.0928629][-0.749792,0.34484,-0.56471][0.979915,0.95311,0][8.03212,4.82153,0.455876][-0.456356,0.51342,-0.726732][0.97744,0.952546,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][8.84938,5.03413,0.0928629][-0.749792,0.34484,-0.56471][0.979915,0.95311,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.980324,0.952832,0][9.05501,4.85389,0.227357][0.518146,-0.726336,0.45162][0.972952,0.9478,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][8.21537,4.54636,0.696088][0.518146,-0.726336,0.45162][0.97173,0.946445,0][9.20186,4.93529,0.392556][0.84272,-0.339999,0.417401][0.948036,0.939126,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.945003,0.938998,0][9.05501,4.85389,0.227357][0.518146,-0.726336,0.45162][0.947827,0.938678,0][9.20186,4.93529,0.392556][0.84272,-0.339999,0.417401][0.972392,0.948029,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.971015,0.947146,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.966626,0.94796,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.964635,0.946824,0][9.20186,4.93529,0.392556][0.84272,-0.339999,0.417401][0.967042,0.947633,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.95236,0.964834,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.953021,0.964874,0][8.04918,4.95677,1.25594][0.283652,-0.411454,0.866168][0.952708,0.965462,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.95236,0.964834,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][7.80546,4.8208,1.30345][0.45404,-0.364681,0.81293][0.951873,0.965615,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.951827,0.96486,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.95236,0.964834,0][7.80546,4.8208,1.30345][0.45404,-0.364681,0.81293][0.951873,0.965615,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.95236,0.964834,0][8.04918,4.95677,1.25594][0.283652,-0.411454,0.866168][0.952708,0.965462,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.970561,0.946949,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.971015,0.947146,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.970726,0.946548,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.970561,0.946949,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.970726,0.946548,0][8.21537,4.54636,0.696088][0.518146,-0.726336,0.45162][0.97173,0.946445,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.970713,0.946235,0][8.21537,4.54636,0.696088][0.518146,-0.726336,0.45162][0.97173,0.946445,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.970726,0.946548,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.977604,0.951965,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.978284,0.951978,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.978284,0.951978,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.978611,0.952268,0][8.03212,4.82153,0.455876][-0.456356,0.51342,-0.726732][0.97744,0.952546,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.977135,0.951912,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.977604,0.951965,0][8.03212,4.82153,0.455876][-0.456356,0.51342,-0.726732][0.97744,0.952546,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.977604,0.951965,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.968657,0.954365,0][7.80353,5.18251,1.04193][-0.609508,0.763525,-0.213378][0.969178,0.95365,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.969577,0.954053,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.968657,0.954365,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.969577,0.954053,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.969222,0.954445,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.968328,0.954269,0][7.62221,5.09597,1.06324][-0.439532,0.848018,-0.296102][0.968747,0.953507,0][7.80353,5.18251,1.04193][-0.609508,0.763525,-0.213378][0.969178,0.95365,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.968328,0.954269,0][7.80353,5.18251,1.04193][-0.609508,0.763525,-0.213378][0.969178,0.95365,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.968657,0.954365,0][7.62221,5.09597,1.06324][-0.16944,0.581663,0.795587][0.94279,0.966492,0][7.80546,4.8208,1.30345][-0.16944,0.581663,0.795587][0.942782,0.967302,0][8.04918,4.95677,1.25594][-0.16944,0.581663,0.795587][0.941901,0.967278,0][7.62221,5.09597,1.06324][-0.16944,0.581663,0.795587][0.94279,0.966492,0][8.04918,4.95677,1.25594][-0.16944,0.581663,0.795587][0.941901,0.967278,0][7.80353,5.18251,1.04193][-0.177082,0.568772,0.803207][0.942162,0.966511,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.972129,0.953758,0][8.6106,5.3617,0.809441][-0.372077,0.923786,-0.0904313][0.972535,0.953383,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][8.6106,5.3617,0.809441][-0.372077,0.923786,-0.0904313][0.972535,0.953383,0][9.15305,5.5798,0.588168][-0.535979,0.843593,-0.0328335][0.973986,0.953618,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.934178,0.967681,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.934178,0.967681,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.934216,0.967329,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.966626,0.94796,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.964554,0.947229,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.964635,0.946824,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.966296,0.948243,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.964554,0.947229,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.966626,0.94796,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.935088,0.951934,0][8.68357,5.25384,0.933799][0.418383,-0.250498,0.873044][0.933354,0.952383,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.932759,0.952062,0][9.26328,5.47049,0.695786][0.549892,-0.13003,0.825052][0.935278,0.952323,0][8.68357,5.25384,0.933799][0.418383,-0.250498,0.873044][0.933354,0.952383,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.935088,0.951934,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.953789,0.965184,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.953021,0.964874,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.953874,0.96494,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.953021,0.964874,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.953789,0.965184,0][8.61903,5.27466,0.994882][0.688476,-0.192884,0.69914][0.933195,0.952471,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.932759,0.952062,0][8.68357,5.25384,0.933799][0.418383,-0.250498,0.873044][0.933354,0.952383,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.970444,0.947477,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.970817,0.947552,0][8.61903,5.27466,0.994882][0.688476,-0.192884,0.69914][0.970508,0.948012,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.970444,0.947477,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.971015,0.947146,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.970817,0.947552,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.970561,0.946949,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.971015,0.947146,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.970444,0.947477,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.6106,5.3617,0.809441][-0.372077,0.923786,-0.0904313][0.932654,0.967008,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.93124,0.967631,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.93124,0.967631,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.930761,0.967222,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.93124,0.967631,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.84938,5.03413,0.0928629][-0.106676,-0.669946,-0.734706][0.948293,0.943055,0][8.21537,4.54636,0.696088][-0.129987,-0.699766,-0.702446][0.951162,0.942278,0][8.03212,4.82153,0.455876][-0.129987,-0.699766,-0.702446][0.951154,0.943087,0][9.05501,4.85389,0.227357][-0.106676,-0.669946,-0.734706][0.957552,0.949775,0][8.21537,4.54636,0.696088][-0.129987,-0.699766,-0.702446][0.959735,0.950874,0][8.84938,5.03413,0.0928629][-0.106676,-0.669946,-0.734706][0.957409,0.950309,0][9.15305,5.5798,0.588168][-0.0545361,0.672039,0.738505][0.945754,0.951863,0][8.6106,5.3617,0.809441][0.56261,0.75886,0.328026][0.947694,0.951962,0][8.68357,5.25384,0.933799][0.559995,0.758563,0.33315][0.947706,0.952319,0][9.15305,5.5798,0.588168][-0.0545361,0.672039,0.738505][0.945754,0.951863,0][8.68357,5.25384,0.933799][0.559995,0.758563,0.33315][0.947706,0.952319,0][9.26328,5.47049,0.695786][-0.0545361,0.672039,0.738505][0.945647,0.95223,0][7.69404,3.54339,-1.51719][0.201246,0.829347,-0.521233][0.956203,0.935595,0][7.57703,3.42566,-1.55203][-0.66032,0.719736,-0.214376][0.956516,0.935841,0][7.60523,3.49414,-1.40896][-0.66032,0.719736,-0.214376][0.956014,0.935836,0][7.67422,3.51436,-1.5765][0.262731,0.760198,-0.594198][0.956416,0.935604,0][7.57703,3.42566,-1.55203][-0.66032,0.719736,-0.214376][0.956516,0.935841,0][7.69404,3.54339,-1.51719][0.201246,0.829347,-0.521233][0.956203,0.935595,0][7.72237,3.4744,-1.60634][-0.38015,0.110432,-0.918308][0.971384,0.966665,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.57703,3.42566,-1.55203][-0.38015,0.110432,-0.918308][0.971006,0.966479,0][7.72237,3.4744,-1.60634][-0.38015,0.110432,-0.918308][0.971384,0.966665,0][7.57703,3.42566,-1.55203][-0.38015,0.110432,-0.918308][0.971006,0.966479,0][7.67422,3.51436,-1.5765][-0.398781,0.189436,-0.897267][0.971404,0.966542,0][7.77811,3.46927,-1.58806][0.951462,0.164648,-0.260022][0.971448,0.961835,0][7.83279,3.40293,-1.42995][0.951462,0.164648,-0.260022][0.971141,0.962091,0][7.80923,3.32573,-1.56504][0.951462,0.164648,-0.260022][0.971086,0.961782,0][7.78722,3.50477,-1.52664][0.949904,0.187968,-0.2497][0.971472,0.961976,0][7.83279,3.40293,-1.42995][0.951462,0.164648,-0.260022][0.971141,0.962091,0][7.77811,3.46927,-1.58806][0.951462,0.164648,-0.260022][0.971448,0.961835,0][7.78722,3.50477,-1.52664][0.662172,0.65013,0.372637][0.933943,0.93674,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.933588,0.936501,0][7.83279,3.40293,-1.42995][0.662172,0.65013,0.372637][0.934074,0.9365,0][7.73004,3.54235,-1.50494][0.603649,0.715984,0.350676][0.933722,0.93675,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.933588,0.936501,0][7.78722,3.50477,-1.52664][0.662172,0.65013,0.372637][0.933943,0.93674,0][7.80923,3.32573,-1.56504][0.951462,0.164648,-0.260022][0.971086,0.961782,0][7.62834,2.98312,-1.21927][0.879507,-0.475752,-0.0112912][0.969547,0.962093,0][7.59659,2.92735,-1.34249][0.879507,-0.475752,-0.0112912][0.969522,0.961818,0][7.83279,3.40293,-1.42995][0.951462,0.164648,-0.260022][0.971141,0.962091,0][7.62834,2.98312,-1.21927][0.879507,-0.475752,-0.0112912][0.969547,0.962093,0][7.80923,3.32573,-1.56504][0.951462,0.164648,-0.260022][0.971086,0.961782,0][7.83279,3.40293,-1.42995][0.705743,0.011784,0.70837][0.963133,0.9618,0][7.54917,3.09626,-1.14227][0.705743,0.011784,0.70837][0.964711,0.961775,0][7.62834,2.98312,-1.21927][0.705743,0.011784,0.70837][0.964663,0.962086,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.974333,0.966879,0][7.54917,3.09626,-1.14227][0.558377,0.231002,0.796777][0.974321,0.967841,0][7.83279,3.40293,-1.42995][0.662172,0.65013,0.372637][0.973838,0.966884,0][7.60523,3.49414,-1.40896][-0.902513,0.427809,0.0494839][0.970567,0.950631,0][7.40487,3.06082,-1.3169][-0.902513,0.427809,0.0494839][0.970054,0.949725,0][7.44269,3.1246,-1.17845][-0.902513,0.427809,0.0494839][0.970542,0.949711,0][7.57703,3.42566,-1.55203][-0.909102,0.416092,-0.0200119][0.970066,0.95065,0][7.40487,3.06082,-1.3169][-0.902513,0.427809,0.0494839][0.970054,0.949725,0][7.60523,3.49414,-1.40896][-0.902513,0.427809,0.0494839][0.970567,0.950631,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.975882,0.950065,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.977339,0.94986,0][7.40487,3.06082,-1.3169][-0.73178,0.022427,-0.681172][0.977397,0.950113,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.40487,3.06082,-1.3169][-0.73178,0.022427,-0.681172][0.969764,0.966598,0][7.57703,3.42566,-1.55203][-0.38015,0.110432,-0.918308][0.971006,0.966479,0][7.40487,3.06082,-1.3169][-0.902513,0.427809,0.0494839][0.970054,0.949725,0][7.1987,2.83281,-1.14907][-0.718127,0.69334,0.0597754][0.970036,0.949055,0][7.24691,2.86859,-0.984941][-0.718127,0.69334,0.0597754][0.970559,0.948979,0][7.40487,3.06082,-1.3169][-0.902513,0.427809,0.0494839][0.970054,0.949725,0][7.24691,2.86859,-0.984941][-0.718127,0.69334,0.0597754][0.970559,0.948979,0][7.44269,3.1246,-1.17845][-0.902513,0.427809,0.0494839][0.970542,0.949711,0][7.46616,2.97098,-1.38571][-0.712993,0.276876,-0.64419][0.93224,0.962283,0][7.24233,2.72313,-1.2445][-0.712993,0.276876,-0.64419][0.931772,0.961629,0][7.1987,2.83281,-1.14907][-0.712993,0.276876,-0.64419][0.932215,0.961524,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.977339,0.94986,0][7.1987,2.83281,-1.14907][-0.68491,0.0867765,-0.723442][0.978481,0.950069,0][7.40487,3.06082,-1.3169][-0.73178,0.022427,-0.681172][0.977397,0.950113,0][7.59659,2.92735,-1.34249][0.879507,-0.475752,-0.0112912][0.969522,0.961818,0][7.3859,2.69268,-1.05684][0.791835,-0.604435,0.0874962][0.968301,0.96209,0][7.35968,2.63676,-1.20584][0.791835,-0.604435,0.0874962][0.968316,0.96177,0][7.62834,2.98312,-1.21927][0.879507,-0.475752,-0.0112912][0.969547,0.962093,0][7.3859,2.69268,-1.05684][0.791835,-0.604435,0.0874962][0.968301,0.96209,0][7.59659,2.92735,-1.34249][0.879507,-0.475752,-0.0112912][0.969522,0.961818,0][7.62834,2.98312,-1.21927][0.705743,0.011784,0.70837][0.934074,0.938079,0][7.32535,2.81765,-0.957759][0.700904,-0.202622,0.68387][0.932886,0.938099,0][7.3859,2.69268,-1.05684][0.700904,-0.202622,0.68387][0.932888,0.937837,0][7.54917,3.09626,-1.14227][0.705743,0.011784,0.70837][0.964711,0.961775,0][7.32535,2.81765,-0.957759][0.700904,-0.202622,0.68387][0.965954,0.961847,0][7.62834,2.98312,-1.21927][0.705743,0.011784,0.70837][0.964663,0.962086,0][7.35968,2.63676,-1.20584][0.791835,-0.604435,0.0874962][0.968316,0.96177,0][7.16541,2.51567,-0.913245][0.68964,-0.704822,0.166198][0.967398,0.962143,0][7.10935,2.42205,-1.07766][0.68964,-0.704822,0.166198][0.967299,0.961758,0][7.3859,2.69268,-1.05684][0.791835,-0.604435,0.0874962][0.968301,0.96209,0][7.16541,2.51567,-0.913245][0.68964,-0.704822,0.166198][0.967398,0.962143,0][7.35968,2.63676,-1.20584][0.791835,-0.604435,0.0874962][0.968316,0.96177,0][7.3859,2.69268,-1.05684][0.700904,-0.202622,0.68387][0.965922,0.96218,0][7.14267,2.70068,-0.833137][0.654466,-0.231261,0.719856][0.966709,0.961758,0][7.16541,2.51567,-0.913245][0.654466,-0.231261,0.719856][0.966891,0.962133,0][7.32535,2.81765,-0.957759][0.700904,-0.202622,0.68387][0.965954,0.961847,0][7.14267,2.70068,-0.833137][0.654466,-0.231261,0.719856][0.966709,0.961758,0][7.3859,2.69268,-1.05684][0.700904,-0.202622,0.68387][0.965922,0.96218,0][7.1987,2.83281,-1.14907][-0.712993,0.276876,-0.64419][0.932215,0.961524,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.932006,0.961049,0][7.06897,2.77844,-0.881034][-0.591282,0.796789,-0.124552][0.932447,0.960974,0][7.1987,2.83281,-1.14907][-0.712993,0.276876,-0.64419][0.929657,0.943091,0][7.06897,2.77844,-0.881034][-0.591282,0.796789,-0.124552][0.928715,0.943103,0][7.24691,2.86859,-0.984941][-0.475293,0.878297,-0.0518776][0.929281,0.94284,0][7.24233,2.72313,-1.2445][-0.712993,0.276876,-0.64419][0.931772,0.961629,0][7.00271,2.5503,-1.14954][-0.58245,0.427776,-0.691202][0.931453,0.961061,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.932006,0.961049,0][7.24233,2.72313,-1.2445][-0.712993,0.276876,-0.64419][0.931772,0.961629,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.932006,0.961049,0][7.1987,2.83281,-1.14907][-0.712993,0.276876,-0.64419][0.932215,0.961524,0][7.06897,2.77844,-0.881034][-0.591282,0.796789,-0.124552][0.976887,0.964449,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][6.93784,2.76145,-0.722691][-0.346883,0.918735,-0.188674][0.976918,0.964792,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.977441,0.964292,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][7.06897,2.77844,-0.881034][-0.591282,0.796789,-0.124552][0.976887,0.964449,0][7.00271,2.5503,-1.14954][-0.58245,0.427776,-0.691202][0.977826,0.964064,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][7.00271,2.5503,-1.14954][-0.58245,0.427776,-0.691202][0.931453,0.961061,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.932309,0.960474,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.932006,0.961049,0][7.10935,2.42205,-1.07766][0.544417,-0.788357,0.286538][0.961007,0.954073,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.962127,0.953901,0][7.16541,2.51567,-0.913245][0.654466,-0.231261,0.719856][0.961002,0.953682,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][7.10935,2.42205,-1.07766][0.544417,-0.788357,0.286538][0.961007,0.954073,0][7.16541,2.51567,-0.913245][0.654466,-0.231261,0.719856][0.961002,0.953682,0][7.0174,2.65625,-0.665657][0.694146,-0.363447,0.621343][0.961252,0.953201,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][7.14267,2.70068,-0.833137][0.654466,-0.231261,0.719856][0.960724,0.953379,0][7.0174,2.65625,-0.665657][0.694146,-0.363447,0.621343][0.961252,0.953201,0][7.16541,2.51567,-0.913245][0.654466,-0.231261,0.719856][0.961002,0.953682,0][6.92241,2.52194,-0.466107][0.909295,-0.375003,0.180433][0.956919,0.959417,0][6.93444,2.43837,-0.700426][0.909295,-0.375003,0.180433][0.95659,0.958979,0][7.0174,2.65625,-0.665657][0.909295,-0.375003,0.180433][0.957322,0.958977,0][6.92241,2.52194,-0.466107][0.909295,-0.375003,0.180433][0.956919,0.959417,0][7.0174,2.65625,-0.665657][0.909295,-0.375003,0.180433][0.957322,0.958977,0][6.99846,2.66822,-0.454749][0.878938,-0.465168,0.105293][0.957431,0.959389,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.96237,0.953301,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.962127,0.953901,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.96237,0.953301,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][6.92241,2.52194,-0.466107][0.687515,-0.672087,0.274995][0.962012,0.953043,0][6.82615,2.68699,-0.320602][0.552544,-0.346161,0.7582][0.953544,0.938726,0][6.92241,2.52194,-0.466107][0.687515,-0.672087,0.274995][0.953695,0.939192,0][6.99846,2.66822,-0.454749][0.552544,-0.346161,0.7582][0.953201,0.939102,0][6.82615,2.68699,-0.320602][0.552544,-0.346161,0.7582][0.953544,0.938726,0][6.99846,2.66822,-0.454749][0.552544,-0.346161,0.7582][0.953201,0.939102,0][6.89884,2.78055,-0.330705][0.552231,-0.347215,0.757946][0.953174,0.938716,0][6.75345,2.59342,-0.310498][0.401993,-0.584362,0.704928][0.953914,0.938737,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.954214,0.939276,0][6.92241,2.52194,-0.466107][0.687515,-0.672087,0.274995][0.953695,0.939192,0][6.75345,2.59342,-0.310498][0.401993,-0.584362,0.704928][0.953914,0.938737,0][6.92241,2.52194,-0.466107][0.687515,-0.672087,0.274995][0.953695,0.939192,0][6.82615,2.68699,-0.320602][0.552544,-0.346161,0.7582][0.953544,0.938726,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.932936,0.946229,0][6.69705,2.84977,-0.450616][-0.447483,0.852775,-0.269321][0.933214,0.946554,0][6.79639,2.90758,-0.432631][-0.447483,0.852775,-0.269321][0.932926,0.946603,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.933333,0.946044,0][6.69705,2.84977,-0.450616][-0.447483,0.852775,-0.269321][0.933214,0.946554,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.932936,0.946229,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.933333,0.946044,0][6.5977,2.79196,-0.468601][-0.466186,0.862453,-0.197093][0.933503,0.946504,0][6.69705,2.84977,-0.450616][-0.447483,0.852775,-0.269321][0.933214,0.946554,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.933775,0.945932,0][6.5977,2.79196,-0.468601][-0.466186,0.862453,-0.197093][0.933503,0.946504,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.933333,0.946044,0][6.93784,2.76145,-0.722691][-0.346883,0.918735,-0.188674][0.976918,0.964792,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.977373,0.965189,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.976801,0.965138,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.977373,0.965189,0][6.93784,2.76145,-0.722691][-0.346883,0.918735,-0.188674][0.976918,0.964792,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.977845,0.965204,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.977373,0.965189,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.977845,0.965204,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][6.69705,2.84977,-0.450616][-0.372374,0.380715,0.8464][0.942173,0.939014,0][6.82615,2.68699,-0.320602][-0.372374,0.380715,0.8464][0.942101,0.939423,0][6.89884,2.78055,-0.330705][-0.372374,0.380715,0.8464][0.941755,0.939343,0][6.69705,2.84977,-0.450616][-0.372374,0.380715,0.8464][0.942173,0.939014,0][6.89884,2.78055,-0.330705][-0.372374,0.380715,0.8464][0.941755,0.939343,0][6.79639,2.90758,-0.432631][-0.373506,0.378372,0.846952][0.941816,0.939022,0][6.5977,2.79196,-0.468601][-0.37295,0.381115,0.845967][0.942531,0.939007,0][6.75345,2.59342,-0.310498][-0.372949,0.381115,0.845967][0.942448,0.939504,0][6.82615,2.68699,-0.320602][-0.372374,0.380715,0.8464][0.942101,0.939423,0][6.5977,2.79196,-0.468601][-0.37295,0.381115,0.845967][0.942531,0.939007,0][6.82615,2.68699,-0.320602][-0.372374,0.380715,0.8464][0.942101,0.939423,0][6.69705,2.84977,-0.450616][-0.372374,0.380715,0.8464][0.942173,0.939014,0][7.77811,3.46927,-1.58806][0.303191,-0.0864365,-0.949001][0.971467,0.966762,0][7.80923,3.32573,-1.56504][0.303191,-0.0864365,-0.949001][0.971149,0.966972,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.77811,3.46927,-1.58806][0.303191,-0.0864365,-0.949001][0.971467,0.966762,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.72237,3.4744,-1.60634][-0.38015,0.110432,-0.918308][0.971384,0.966665,0][7.69404,3.54339,-1.51719][-0.0918581,0.932624,0.348963][0.933641,0.936797,0][7.60523,3.49414,-1.40896][-0.0918581,0.932624,0.348963][0.933343,0.936642,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.933588,0.936501,0][7.69404,3.54339,-1.51719][-0.0918581,0.932624,0.348963][0.933641,0.936797,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.933588,0.936501,0][7.73004,3.54235,-1.50494][0.603649,0.715984,0.350676][0.933722,0.93675,0][7.60523,3.49414,-1.40896][-0.0918581,0.932624,0.348963][0.976462,0.961758,0][7.44269,3.1246,-1.17845][-0.126865,0.564534,0.815602][0.977875,0.961956,0][7.54917,3.09626,-1.14227][0.558377,0.231002,0.796777][0.977807,0.962182,0][7.60523,3.49414,-1.40896][-0.0918581,0.932624,0.348963][0.976462,0.961758,0][7.54917,3.09626,-1.14227][0.558377,0.231002,0.796777][0.977807,0.962182,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.976335,0.961968,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.59659,2.92735,-1.34249][0.0897813,-0.552426,-0.828713][0.96975,0.96706,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.969638,0.966798,0][7.80923,3.32573,-1.56504][0.303191,-0.0864365,-0.949001][0.971149,0.966972,0][7.59659,2.92735,-1.34249][0.0897813,-0.552426,-0.828713][0.96975,0.96706,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.969638,0.966798,0][7.35968,2.63676,-1.20584][-0.0478613,-0.461504,-0.885846][0.968589,0.96699,0][7.24233,2.72313,-1.2445][-0.0478613,-0.461504,-0.885846][0.968609,0.966702,0][7.59659,2.92735,-1.34249][0.0897813,-0.552426,-0.828713][0.96975,0.96706,0][7.35968,2.63676,-1.20584][-0.0478613,-0.461504,-0.885846][0.968589,0.96699,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.969638,0.966798,0][7.44269,3.1246,-1.17845][-0.126865,0.564534,0.815602][0.977875,0.961956,0][7.24691,2.86859,-0.984941][0.079459,0.561711,0.823509][0.979038,0.961982,0][7.32535,2.81765,-0.957759][0.079459,0.561711,0.823509][0.979057,0.962172,0][7.44269,3.1246,-1.17845][-0.126865,0.564534,0.815602][0.977875,0.961956,0][7.32535,2.81765,-0.957759][0.079459,0.561711,0.823509][0.979057,0.962172,0][7.54917,3.09626,-1.14227][0.558377,0.231002,0.796777][0.977807,0.962182,0][7.24691,2.86859,-0.984941][0.079459,0.561711,0.823509][0.979038,0.961982,0][7.06897,2.77844,-0.881034][0.142627,0.613593,0.776635][0.979678,0.96184,0][7.14267,2.70068,-0.833137][0.142627,0.613593,0.776635][0.979793,0.962059,0][7.24691,2.86859,-0.984941][0.079459,0.561711,0.823509][0.979038,0.961982,0][7.14267,2.70068,-0.833137][0.142627,0.613593,0.776635][0.979793,0.962059,0][7.32535,2.81765,-0.957759][0.079459,0.561711,0.823509][0.979057,0.962172,0][7.24233,2.72313,-1.2445][-0.0478613,-0.461504,-0.885846][0.968609,0.966702,0][7.10935,2.42205,-1.07766][0.00437077,-0.486152,-0.873863][0.9676,0.966815,0][7.00271,2.5503,-1.14954][0.00437077,-0.486152,-0.873863][0.967747,0.966498,0][7.35968,2.63676,-1.20584][-0.0478613,-0.461504,-0.885846][0.968589,0.96699,0][7.10935,2.42205,-1.07766][0.00437077,-0.486152,-0.873863][0.9676,0.966815,0][7.24233,2.72313,-1.2445][-0.0478613,-0.461504,-0.885846][0.968609,0.966702,0][7.10935,2.42205,-1.07766][0.00437077,-0.486152,-0.873863][0.959033,0.941828,0][6.78181,2.29347,-0.809111][-0.343193,-0.612671,-0.711936][0.957657,0.941879,0][6.67022,2.46255,-0.900827][-0.343193,-0.612671,-0.711936][0.957687,0.941438,0][7.10935,2.42205,-1.07766][0.00437077,-0.486152,-0.873863][0.973533,0.953049,0][6.67022,2.46255,-0.900827][-0.343193,-0.612671,-0.711936][0.972129,0.953031,0][7.00271,2.5503,-1.14954][0.00437077,-0.486152,-0.873863][0.973196,0.952796,0][7.14267,2.70068,-0.833137][0.142627,0.613593,0.776635][0.979793,0.962059,0][6.93784,2.76145,-0.722691][0.495739,0.672709,0.549278][0.980145,0.961762,0][7.0174,2.65625,-0.665657][0.495739,0.672709,0.549278][0.980324,0.962019,0][7.06897,2.77844,-0.881034][0.142627,0.613593,0.776635][0.979678,0.96184,0][6.93784,2.76145,-0.722691][0.495739,0.672709,0.549278][0.980145,0.961762,0][7.14267,2.70068,-0.833137][0.142627,0.613593,0.776635][0.979793,0.962059,0][6.72779,1.74738,-1.6019][-0.79153,-0.609149,0.0491607][0.974956,0.965426,0][6.73144,1.75152,-1.49177][-0.79153,-0.609149,0.0491607][0.975272,0.965341,0][6.63197,1.87627,-1.54765][-0.79153,-0.609149,0.0491607][0.975277,0.965645,0][6.72779,1.74738,-1.6019][-0.79153,-0.609149,0.0491607][0.974956,0.965426,0][6.63197,1.87627,-1.54765][-0.79153,-0.609149,0.0491607][0.975277,0.965645,0][6.66829,1.82415,-1.63606][-0.796299,-0.604208,0.028998][0.974958,0.96561,0][6.66829,1.82415,-1.63606][-0.707148,0.442584,-0.551417][0.92881,0.96071,0][6.63197,1.87627,-1.54765][-0.707148,0.442584,-0.551417][0.929081,0.960585,0][6.79139,1.951,-1.69211][-0.707148,0.442584,-0.551417][0.92907,0.961036,0][6.66829,1.82415,-1.63606][-0.707148,0.442584,-0.551417][0.92881,0.96071,0][6.79139,1.951,-1.69211][-0.707148,0.442584,-0.551417][0.92907,0.961036,0][6.73756,1.85662,-1.69882][-0.707147,0.442582,-0.55142][0.928805,0.960906,0][6.73756,1.85662,-1.69882][-0.450467,-0.486326,-0.74871][0.929351,0.96399,0][6.79139,1.951,-1.69211][0.34757,-0.132226,-0.928284][0.929028,0.964054,0][6.88675,1.83625,-1.64006][0.34757,-0.132226,-0.928284][0.929055,0.963759,0][6.73756,1.85662,-1.69882][-0.450467,-0.486326,-0.74871][0.929351,0.96399,0][6.88675,1.83625,-1.64006][0.34757,-0.132226,-0.928284][0.929055,0.963759,0][6.79527,1.78419,-1.66633][-0.196952,-0.527644,-0.826318][0.929374,0.963807,0][6.72779,1.74738,-1.6019][0.490913,-0.871053,0.0164482][0.402031,0.597869,0][6.88675,1.83625,-1.64006][0.490913,-0.871053,0.0164482][0.39806,0.595422,0][6.73144,1.75152,-1.49177][0.490913,-0.871053,0.0164482][0.404346,0.595418,0][6.79527,1.78419,-1.66633][0.490913,-0.871053,0.0164505][0.3993,0.59787,0][6.88675,1.83625,-1.64006][0.490913,-0.871053,0.0164482][0.39806,0.595422,0][6.72779,1.74738,-1.6019][0.490913,-0.871053,0.0164482][0.402031,0.597869,0][6.88675,1.83625,-1.64006][0.647549,-0.712076,0.271345][0.929029,0.949815,0][6.95983,1.9505,-1.51464][0.647549,-0.712076,0.271345][0.929526,0.949996,0][6.79107,1.85842,-1.35351][0.647549,-0.712076,0.271345][0.929171,0.950377,0][6.88675,1.83625,-1.64006][0.647549,-0.712076,0.271345][0.929029,0.949815,0][6.79107,1.85842,-1.35351][0.647549,-0.712076,0.271345][0.929171,0.950377,0][6.73144,1.75152,-1.49177][0.647548,-0.712077,0.271345][0.928703,0.950165,0][6.79139,1.951,-1.69211][0.696442,0.281178,-0.660233][0.933648,0.939191,0][6.8587,2.07173,-1.56969][0.696442,0.281178,-0.660233][0.934221,0.939165,0][6.95983,1.9505,-1.51464][0.696442,0.281178,-0.660233][0.934239,0.939496,0][6.79139,1.951,-1.69211][0.696442,0.281178,-0.660233][0.933648,0.939191,0][6.95983,1.9505,-1.51464][0.696442,0.281178,-0.660233][0.934239,0.939496,0][6.88675,1.83625,-1.64006][0.696807,0.279442,-0.660585][0.933665,0.939504,0][6.63197,1.87627,-1.54765][-0.707148,0.442584,-0.551417][0.980286,0.963601,0][6.68547,1.99052,-1.41271][-0.63307,0.696174,-0.338472][0.979772,0.963765,0][6.8587,2.07173,-1.56969][-0.63307,0.696174,-0.338472][0.979556,0.963418,0][6.63197,1.87627,-1.54765][-0.707148,0.442584,-0.551417][0.980286,0.963601,0][6.8587,2.07173,-1.56969][-0.63307,0.696174,-0.338472][0.979556,0.963418,0][6.79139,1.951,-1.69211][-0.707148,0.442584,-0.551417][0.980088,0.963282,0][6.63197,1.87627,-1.54765][-0.79153,-0.609149,0.0491607][0.969584,0.945147,0][6.79107,1.85842,-1.35351][-0.743594,-0.335106,0.578595][0.970204,0.944842,0][6.68547,1.99052,-1.41271][-0.743594,-0.335106,0.578595][0.970154,0.945196,0][6.73144,1.75152,-1.49177][-0.79153,-0.609149,0.0491607][0.969631,0.944813,0][6.79107,1.85842,-1.35351][-0.743594,-0.335106,0.578595][0.970204,0.944842,0][6.63197,1.87627,-1.54765][-0.79153,-0.609149,0.0491607][0.969584,0.945147,0][6.68547,1.99052,-1.41271][-0.743594,-0.335106,0.578595][0.966831,0.949346,0][6.83015,2.03652,-1.05412][-0.813555,-0.436467,0.384219][0.966317,0.948677,0][6.71498,2.19038,-1.12319][-0.813555,-0.436467,0.384219][0.966871,0.948761,0][6.79107,1.85842,-1.35351][-0.743594,-0.335106,0.578595][0.966337,0.949276,0][6.83015,2.03652,-1.05412][-0.813555,-0.436467,0.384219][0.966317,0.948677,0][6.68547,1.99052,-1.41271][-0.743594,-0.335106,0.578595][0.966831,0.949346,0][6.68547,1.99052,-1.41271][-0.63307,0.696174,-0.338472][0.979772,0.963765,0][6.71498,2.19038,-1.12319][-0.618522,0.674723,-0.402716][0.978917,0.964201,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][6.68547,1.99052,-1.41271][-0.63307,0.696174,-0.338472][0.979772,0.963765,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][6.8587,2.07173,-1.56969][-0.63307,0.696174,-0.338472][0.979556,0.963418,0][6.8587,2.07173,-1.56969][0.696442,0.281178,-0.660233][0.934221,0.939165,0][6.96168,2.23999,-1.41898][0.67703,0.21587,-0.703584][0.934989,0.939128,0][7.0722,2.09896,-1.3559][0.67703,0.21587,-0.703584][0.934999,0.939504,0][6.8587,2.07173,-1.56969][0.696442,0.281178,-0.660233][0.934221,0.939165,0][7.0722,2.09896,-1.3559][0.67703,0.21587,-0.703584][0.934999,0.939504,0][6.95983,1.9505,-1.51464][0.696442,0.281178,-0.660233][0.934239,0.939496,0][6.79107,1.85842,-1.35351][0.647549,-0.712076,0.271345][0.929171,0.950377,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][6.83015,2.03652,-1.05412][0.612194,-0.712109,0.343685][0.929922,0.950874,0][6.95983,1.9505,-1.51464][0.647549,-0.712076,0.271345][0.929526,0.949996,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][6.79107,1.85842,-1.35351][0.647549,-0.712076,0.271345][0.929171,0.950377,0][7.20258,2.16555,-1.60335][0.755465,-0.654567,0.028538][0.954119,0.955983,0][7.27535,2.25385,-1.50429][0.755465,-0.654567,0.028538][0.953713,0.955841,0][7.15708,2.11575,-1.54111][0.755465,-0.654567,0.028538][0.95427,0.955833,0][7.25582,2.22772,-1.58677][0.420616,-0.0720149,-0.904376][0.953869,0.955986,0][7.27535,2.25385,-1.50429][0.755465,-0.654567,0.028538][0.953713,0.955841,0][7.20258,2.16555,-1.60335][0.755465,-0.654567,0.028538][0.954119,0.955983,0][7.20247,2.29501,-1.61694][0.420616,-0.0720149,-0.904376][0.951539,0.955833,0][7.192,2.35459,-1.54998][0.795471,0.509189,-0.328563][0.951633,0.956002,0][7.27535,2.25385,-1.50429][0.755465,-0.654567,0.028538][0.951202,0.95601,0][7.20247,2.29501,-1.61694][0.420616,-0.0720149,-0.904376][0.951539,0.955833,0][7.27535,2.25385,-1.50429][0.755465,-0.654567,0.028538][0.951202,0.95601,0][7.25582,2.22772,-1.58677][0.420616,-0.0720149,-0.904376][0.951256,0.955838,0][7.20247,2.29501,-1.61694][-0.466816,0.623204,-0.627454][0.978579,0.963062,0][7.07422,2.22581,-1.59026][-0.466816,0.623204,-0.627454][0.978908,0.963216,0][7.192,2.35459,-1.54998][-0.466816,0.623204,-0.627454][0.978399,0.963199,0][7.14946,2.23704,-1.63508][-0.466815,0.623201,-0.627459][0.978808,0.96307,0][7.07422,2.22581,-1.59026][-0.466816,0.623204,-0.627454][0.978908,0.963216,0][7.20247,2.29501,-1.61694][-0.466816,0.623204,-0.627454][0.978579,0.963062,0][7.20258,2.16555,-1.60335][0.415288,-0.115077,-0.902382][0.936295,0.935997,0][7.15708,2.11575,-1.54111][-0.350747,-0.589156,-0.727923][0.936087,0.936018,0][7.07422,2.22581,-1.59026][-0.350747,-0.589156,-0.727923][0.9361,0.935745,0][7.20258,2.16555,-1.60335][0.415288,-0.115077,-0.902382][0.936295,0.935997,0][7.07422,2.22581,-1.59026][-0.350747,-0.589156,-0.727923][0.9361,0.935745,0][7.14946,2.23704,-1.63508][0.393065,-0.0726938,-0.916633][0.936305,0.935821,0][7.15708,2.11575,-1.54111][-0.350747,-0.589156,-0.727923][0.947344,0.948695,0][7.0722,2.09896,-1.3559][-0.650101,-0.669877,-0.358656][0.946728,0.948704,0][6.96168,2.23999,-1.41898][-0.650101,-0.669877,-0.358656][0.946724,0.948363,0][7.15708,2.11575,-1.54111][-0.350747,-0.589156,-0.727923][0.947344,0.948695,0][6.96168,2.23999,-1.41898][-0.650101,-0.669877,-0.358656][0.946724,0.948363,0][7.07422,2.22581,-1.59026][-0.350747,-0.589156,-0.727923][0.947344,0.948435,0][7.192,2.35459,-1.54998][-0.466816,0.623204,-0.627454][0.978399,0.963199,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][7.1054,2.41569,-1.34341][-0.58904,0.673738,-0.446216][0.978137,0.963596,0][7.07422,2.22581,-1.59026][-0.466816,0.623204,-0.627454][0.978908,0.963216,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][7.192,2.35459,-1.54998][-0.466816,0.623204,-0.627454][0.978399,0.963199,0][7.192,2.35459,-1.54998][0.725515,0.680477,0.102856][0.978805,0.949176,0][7.1054,2.41569,-1.34341][0.725515,0.680477,0.102856][0.978097,0.949092,0][7.21617,2.28867,-1.2844][0.725515,0.680477,0.102856][0.978241,0.948778,0][7.192,2.35459,-1.54998][0.725515,0.680477,0.102856][0.978805,0.949176,0][7.21617,2.28867,-1.2844][0.725515,0.680477,0.102856][0.978241,0.948778,0][7.27535,2.25385,-1.50429][0.745077,0.660033,0.0960005][0.978915,0.948935,0][7.27535,2.25385,-1.50429][0.705616,-0.645582,0.292114][0.930771,0.949832,0][7.21617,2.28867,-1.2844][0.705616,-0.645582,0.292114][0.930946,0.950253,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][7.27535,2.25385,-1.50429][0.705616,-0.645582,0.292114][0.930771,0.949832,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][7.15708,2.11575,-1.54111][0.698254,-0.667151,0.259521][0.930214,0.94984,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][7.09131,2.26211,-1.07285][0.624996,-0.693834,0.357735][0.930863,0.950696,0][6.83015,2.03652,-1.05412][0.612194,-0.712109,0.343685][0.929922,0.950874,0][7.21617,2.28867,-1.2844][0.705616,-0.645582,0.292114][0.930946,0.950253,0][7.09131,2.26211,-1.07285][0.624996,-0.693834,0.357735][0.930863,0.950696,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][7.21617,2.28867,-1.2844][0.725515,0.680477,0.102856][0.978241,0.948778,0][6.97519,2.40107,-1.13592][0.58592,0.685679,0.431904][0.977372,0.949019,0][7.09131,2.26211,-1.07285][0.58592,0.685679,0.431904][0.977525,0.948685,0][7.1054,2.41569,-1.34341][0.725515,0.680477,0.102856][0.978097,0.949092,0][6.97519,2.40107,-1.13592][0.58592,0.685679,0.431904][0.977372,0.949019,0][7.21617,2.28867,-1.2844][0.725515,0.680477,0.102856][0.978241,0.948778,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][6.71498,2.19038,-1.12319][-0.618522,0.674723,-0.402716][0.978917,0.964201,0][6.97519,2.40107,-1.13592][-0.59409,0.710976,-0.376259][0.978077,0.963992,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][6.97519,2.40107,-1.13592][-0.59409,0.710976,-0.376259][0.978077,0.963992,0][7.1054,2.41569,-1.34341][-0.58904,0.673738,-0.446216][0.978137,0.963596,0][6.71498,2.19038,-1.12319][-0.495793,-0.629207,-0.598571][0.949494,0.957245,0][6.38365,2.05237,-0.703684][-0.495793,-0.629207,-0.598571][0.948208,0.957745,0][6.27649,2.24017,-0.812335][-0.495793,-0.629207,-0.598571][0.947887,0.957389,0][6.83015,2.03652,-1.05412][-0.490719,-0.635117,-0.596507][0.949854,0.957525,0][6.38365,2.05237,-0.703684][-0.495793,-0.629207,-0.598571][0.948208,0.957745,0][6.71498,2.19038,-1.12319][-0.495793,-0.629207,-0.598571][0.949494,0.957245,0][6.71498,2.19038,-1.12319][-0.618522,0.674723,-0.402716][0.978917,0.964201,0][6.27649,2.24017,-0.812335][-0.455081,0.517299,-0.724778][0.979244,0.965205,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.71498,2.19038,-1.12319][-0.618522,0.674723,-0.402716][0.978917,0.964201,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.97519,2.40107,-1.13592][-0.59409,0.710976,-0.376259][0.978077,0.963992,0][6.97519,2.40107,-1.13592][0.58592,0.685679,0.431904][0.977372,0.949019,0][6.67022,2.46255,-0.900827][0.542626,0.648015,0.534446][0.976219,0.949212,0][6.78181,2.29347,-0.809111][0.542626,0.648015,0.534446][0.976318,0.94883,0][6.97519,2.40107,-1.13592][0.58592,0.685679,0.431904][0.977372,0.949019,0][6.78181,2.29347,-0.809111][0.542626,0.648015,0.534446][0.976318,0.94883,0][7.09131,2.26211,-1.07285][0.58592,0.685679,0.431904][0.977525,0.948685,0][6.83015,2.03652,-1.05412][0.612194,-0.712109,0.343685][0.959096,0.947863,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.958467,0.94845,0][6.38365,2.05237,-0.703684][0.506304,-0.543306,0.669683][0.957328,0.947842,0][7.09131,2.26211,-1.07285][0.624996,-0.693834,0.357735][0.959735,0.948414,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.958467,0.94845,0][6.83015,2.03652,-1.05412][0.612194,-0.712109,0.343685][0.959096,0.947863,0][7.65975,3.42796,-0.448834][0.943058,-0.316407,0.102611][0.960412,0.959108,0][7.6139,3.31432,-0.3778][0.943058,-0.316407,0.102611][0.960069,0.959284,0][7.62629,3.30649,-0.515803][0.943058,-0.316407,0.102611][0.959998,0.959014,0][7.65507,3.43091,-0.396663][0.943057,-0.316411,0.102604][0.960439,0.95921,0][7.6139,3.31432,-0.3778][0.943058,-0.316407,0.102611][0.960069,0.959284,0][7.65975,3.42796,-0.448834][0.943058,-0.316407,0.102611][0.960412,0.959108,0][7.63043,3.4587,-0.365979][0.707619,-0.137749,0.693037][0.950103,0.938813,0][7.54871,3.38783,-0.296635][0.707619,-0.137749,0.693037][0.950458,0.938714,0][7.6139,3.31432,-0.3778][0.707619,-0.137749,0.693037][0.950475,0.938966,0][7.63043,3.4587,-0.365979][0.707619,-0.137749,0.693037][0.950103,0.938813,0][7.6139,3.31432,-0.3778][0.707619,-0.137749,0.693037][0.950475,0.938966,0][7.65507,3.43091,-0.396663][0.707617,-0.137748,0.693039][0.950109,0.938908,0][7.60508,3.49012,-0.391192][-0.201198,0.950525,-0.236691][0.973859,0.964804,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.48168,3.47094,-0.363328][-0.201198,0.950525,-0.236691][0.974103,0.964994,0][7.61501,3.48064,-0.437717][-0.201199,0.950525,-0.23669][0.973932,0.964732,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.60508,3.49012,-0.391192][-0.201198,0.950525,-0.236691][0.973859,0.964804,0][7.64007,3.45398,-0.462943][0.0775024,0.722644,-0.686861][0.973961,0.964646,0][7.57423,3.37532,-0.553122][0.0775024,0.722645,-0.686861][0.974372,0.964578,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.64007,3.45398,-0.462943][0.0775024,0.722644,-0.686861][0.973961,0.964646,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.61501,3.48064,-0.437717][-0.201199,0.950525,-0.23669][0.973932,0.964732,0][7.65975,3.42796,-0.448834][0.943058,-0.316407,0.102611][0.952041,0.955928,0][7.62629,3.30649,-0.515803][0.943058,-0.316407,0.102611][0.952459,0.955833,0][7.57423,3.37532,-0.553122][0.716096,0.175221,-0.675651][0.952468,0.95602,0][7.65975,3.42796,-0.448834][0.943058,-0.316407,0.102611][0.952041,0.955928,0][7.57423,3.37532,-0.553122][0.716096,0.175221,-0.675651][0.952468,0.95602,0][7.64007,3.45398,-0.462943][0.716097,0.175219,-0.67565][0.952044,0.955999,0][7.63043,3.4587,-0.365979][0.763558,0.644733,0.0360274][0.979552,0.956204,0][7.48168,3.47094,-0.363328][0.0674357,0.656939,0.750922][0.979883,0.956411,0][7.54871,3.38783,-0.296635][0.0674357,0.656939,0.750922][0.979551,0.956418,0][7.60508,3.49012,-0.391192][0.763558,0.644733,0.0360274][0.979677,0.956201,0][7.48168,3.47094,-0.363328][0.0674357,0.656939,0.750922][0.979883,0.956411,0][7.63043,3.4587,-0.365979][0.763558,0.644733,0.0360274][0.979552,0.956204,0][7.62629,3.30649,-0.515803][0.943058,-0.316407,0.102611][0.959998,0.959014,0][7.41819,3.09667,-0.387886][0.737157,-0.667662,0.104055][0.959203,0.959349,0][7.43456,3.08632,-0.570257][0.737157,-0.667662,0.104055][0.959109,0.958993,0][7.6139,3.31432,-0.3778][0.943058,-0.316407,0.102611][0.960069,0.959284,0][7.41819,3.09667,-0.387886][0.737157,-0.667662,0.104055][0.959203,0.959349,0][7.62629,3.30649,-0.515803][0.943058,-0.316407,0.102611][0.959998,0.959014,0][7.6139,3.31432,-0.3778][0.707619,-0.137749,0.693037][0.950475,0.938966,0][7.33205,3.19381,-0.280625][0.456168,-0.445868,0.770138][0.951353,0.938671,0][7.41819,3.09667,-0.387886][0.456168,-0.445868,0.770138][0.951376,0.939004,0][7.54871,3.38783,-0.296635][0.707619,-0.137749,0.693037][0.950458,0.938714,0][7.33205,3.19381,-0.280625][0.456168,-0.445868,0.770138][0.951353,0.938671,0][7.6139,3.31432,-0.3778][0.707619,-0.137749,0.693037][0.950475,0.938966,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.930466,0.946617,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.93125,0.946489,0][7.24346,3.30364,-0.368761][-0.547852,0.789117,-0.277762][0.931241,0.946813,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.930466,0.946617,0][7.24346,3.30364,-0.368761][-0.547852,0.789117,-0.277762][0.931241,0.946813,0][7.48168,3.47094,-0.363328][-0.201198,0.950525,-0.236691][0.930459,0.946862,0][7.57423,3.37532,-0.553122][0.0775024,0.722645,-0.686861][0.974372,0.964578,0][7.36577,3.17728,-0.619574][-0.247954,0.532553,-0.809263][0.975221,0.964639,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.97512,0.964938,0][7.57423,3.37532,-0.553122][0.0775024,0.722645,-0.686861][0.974372,0.964578,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.97512,0.964938,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.62629,3.30649,-0.515803][0.43123,-0.155719,-0.888702][0.973135,0.96493,0][7.43456,3.08632,-0.570257][0.43123,-0.155719,-0.888702][0.973229,0.965505,0][7.36577,3.17728,-0.619574][0.43123,-0.155719,-0.888702][0.972876,0.965482,0][7.62629,3.30649,-0.515803][0.43123,-0.155719,-0.888702][0.973135,0.96493,0][7.36577,3.17728,-0.619574][0.43123,-0.155719,-0.888702][0.972876,0.965482,0][7.57423,3.37532,-0.553122][0.431231,-0.155721,-0.888702][0.972868,0.964912,0][7.54871,3.38783,-0.296635][0.0674357,0.656939,0.750922][0.979551,0.956418,0][7.24346,3.30364,-0.368761][-0.317419,0.424441,0.847994][0.979974,0.956985,0][7.33205,3.19381,-0.280625][-0.317419,0.424441,0.847994][0.979535,0.956994,0][7.48168,3.47094,-0.363328][0.0674357,0.656939,0.750922][0.979883,0.956411,0][7.24346,3.30364,-0.368761][-0.317419,0.424441,0.847994][0.979974,0.956985,0][7.54871,3.38783,-0.296635][0.0674357,0.656939,0.750922][0.979551,0.956418,0][7.43456,3.08632,-0.570257][0.737157,-0.667662,0.104055][0.959109,0.958993,0][7.18578,2.91298,-0.413487][0.610241,-0.785959,0.0993704][0.958377,0.959379,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.958294,0.959065,0][7.41819,3.09667,-0.387886][0.737157,-0.667662,0.104055][0.959203,0.959349,0][7.18578,2.91298,-0.413487][0.610241,-0.785959,0.0993704][0.958377,0.959379,0][7.43456,3.08632,-0.570257][0.737157,-0.667662,0.104055][0.959109,0.958993,0][7.41819,3.09667,-0.387886][0.456168,-0.445868,0.770138][0.951376,0.939004,0][7.10991,2.99854,-0.319018][0.343823,-0.541909,0.76689][0.952243,0.938692,0][7.18578,2.91298,-0.413487][0.343823,-0.541909,0.76689][0.952263,0.938986,0][7.33205,3.19381,-0.280625][0.456168,-0.445868,0.770138][0.951353,0.938671,0][7.10991,2.99854,-0.319018][0.343823,-0.541909,0.76689][0.952243,0.938692,0][7.41819,3.09667,-0.387886][0.456168,-0.445868,0.770138][0.951376,0.939004,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.93125,0.946489,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.932106,0.94643,0][7.03189,3.09527,-0.396643][-0.653927,0.701797,-0.282596][0.932097,0.946715,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.93125,0.946489,0][7.03189,3.09527,-0.396643][-0.653927,0.701797,-0.282596][0.932097,0.946715,0][7.24346,3.30364,-0.368761][-0.547852,0.789117,-0.277762][0.931241,0.946813,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.97512,0.964938,0][7.13961,2.98398,-0.617546][-0.373183,0.427982,-0.823144][0.975981,0.964802,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.975893,0.965066,0][7.36577,3.17728,-0.619574][-0.247954,0.532553,-0.809263][0.975221,0.964639,0][7.13961,2.98398,-0.617546][-0.373183,0.427982,-0.823144][0.975981,0.964802,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.97512,0.964938,0][7.43456,3.08632,-0.570257][0.43123,-0.155719,-0.888702][0.973229,0.965505,0][7.2002,2.90387,-0.57411][0.25331,-0.306002,-0.917713][0.973145,0.966092,0][7.13961,2.98398,-0.617546][0.25331,-0.306002,-0.917713][0.972834,0.966071,0][7.43456,3.08632,-0.570257][0.43123,-0.155719,-0.888702][0.973229,0.965505,0][7.13961,2.98398,-0.617546][0.25331,-0.306002,-0.917713][0.972834,0.966071,0][7.36577,3.17728,-0.619574][0.43123,-0.155719,-0.888702][0.972876,0.965482,0][7.33205,3.19381,-0.280625][-0.43206,0.326196,0.840786][0.939395,0.960354,0][7.03189,3.09527,-0.396643][-0.43206,0.326196,0.840786][0.938487,0.960595,0][7.10991,2.99854,-0.319018][-0.43206,0.326196,0.840786][0.938474,0.960349,0][7.24346,3.30364,-0.368761][-0.43206,0.326197,0.840785][0.93941,0.960633,0][7.03189,3.09527,-0.396643][-0.43206,0.326196,0.840786][0.938487,0.960595,0][7.33205,3.19381,-0.280625][-0.43206,0.326196,0.840786][0.939395,0.960354,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.958294,0.959065,0][6.99846,2.66822,-0.454749][0.878938,-0.465168,0.105293][0.957431,0.959389,0][7.0174,2.65625,-0.665657][0.909295,-0.375003,0.180433][0.957322,0.958977,0][7.18578,2.91298,-0.413487][0.610241,-0.785959,0.0993704][0.958377,0.959379,0][6.99846,2.66822,-0.454749][0.878938,-0.465168,0.105293][0.957431,0.959389,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.958294,0.959065,0][7.18578,2.91298,-0.413487][0.343823,-0.541909,0.76689][0.952263,0.938986,0][6.89884,2.78055,-0.330705][0.552231,-0.347215,0.757946][0.953174,0.938716,0][6.99846,2.66822,-0.454749][0.552544,-0.346161,0.7582][0.953201,0.939102,0][7.10991,2.99854,-0.319018][0.343823,-0.541909,0.76689][0.952243,0.938692,0][6.89884,2.78055,-0.330705][0.552231,-0.347215,0.757946][0.953174,0.938716,0][7.18578,2.91298,-0.413487][0.343823,-0.541909,0.76689][0.952263,0.938986,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.932106,0.94643,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.932936,0.946229,0][6.79639,2.90758,-0.432631][-0.447483,0.852775,-0.269321][0.932926,0.946603,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.932106,0.94643,0][6.79639,2.90758,-0.432631][-0.447483,0.852775,-0.269321][0.932926,0.946603,0][7.03189,3.09527,-0.396643][-0.653927,0.701797,-0.282596][0.932097,0.946715,0][7.13961,2.98398,-0.617546][-0.373183,0.427982,-0.823144][0.975981,0.964802,0][6.93784,2.76145,-0.722691][-0.346883,0.918735,-0.188674][0.976918,0.964792,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.976801,0.965138,0][7.13961,2.98398,-0.617546][-0.373183,0.427982,-0.823144][0.975981,0.964802,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.976801,0.965138,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.975893,0.965066,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.939126,0.935901,0][7.0174,2.65625,-0.665657][0.909295,-0.375003,0.180433][0.938168,0.935919,0][6.93784,2.76145,-0.722691][0.519632,-0.0687628,-0.851619][0.938273,0.935666,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.939126,0.935901,0][6.93784,2.76145,-0.722691][0.519632,-0.0687628,-0.851619][0.938273,0.935666,0][7.13961,2.98398,-0.617546][0.519632,-0.0687639,-0.851618][0.939205,0.935708,0][7.10991,2.99854,-0.319018][-0.407125,0.348957,0.844085][0.940838,0.939198,0][6.79639,2.90758,-0.432631][-0.373506,0.378372,0.846952][0.941816,0.939022,0][6.89884,2.78055,-0.330705][-0.372374,0.380715,0.8464][0.941755,0.939343,0][7.03189,3.09527,-0.396643][-0.407124,0.348955,0.844086][0.940884,0.938954,0][6.79639,2.90758,-0.432631][-0.373506,0.378372,0.846952][0.941816,0.939022,0][7.10991,2.99854,-0.319018][-0.407125,0.348957,0.844085][0.940838,0.939198,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.962127,0.953901,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.963305,0.953474,0][6.38365,2.05237,-0.703684][0.506304,-0.543306,0.669683][0.963316,0.954143,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.96237,0.953301,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.963305,0.953474,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.962127,0.953901,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.954423,0.951886,0][6.53829,2.48607,-0.267657][0.519427,-0.419724,0.74433][0.955265,0.951682,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.955333,0.952262,0][6.75345,2.59342,-0.310498][0.401993,-0.584362,0.704928][0.953914,0.938737,0][6.53829,2.48607,-0.267657][0.519427,-0.419724,0.74433][0.95461,0.938568,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.954214,0.939276,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.933775,0.945932,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.934654,0.946013,0][6.39245,2.68114,-0.427641][-0.491868,0.818926,-0.295679][0.934094,0.946556,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.933775,0.945932,0][6.39245,2.68114,-0.427641][-0.491868,0.818926,-0.295679][0.934094,0.946556,0][6.5977,2.79196,-0.468601][-0.466186,0.862453,-0.197093][0.933503,0.946504,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.27649,2.24017,-0.812335][-0.455081,0.517299,-0.724778][0.979244,0.965205,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.978635,0.965577,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.978635,0.965577,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.977845,0.965204,0][6.5977,2.79196,-0.468601][-0.37295,0.381115,0.845967][0.942531,0.939007,0][6.39245,2.68114,-0.427641][-0.141155,0.562555,0.814621][0.943255,0.938977,0][6.53829,2.48607,-0.267657][-0.141155,0.562555,0.814621][0.943193,0.939458,0][6.5977,2.79196,-0.468601][-0.37295,0.381115,0.845967][0.942531,0.939007,0][6.53829,2.48607,-0.267657][-0.141155,0.562555,0.814621][0.943193,0.939458,0][6.75345,2.59342,-0.310498][-0.372949,0.381115,0.845967][0.942448,0.939504,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.938256,0.951746,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.939678,0.951762,0][6.00537,2.0507,-0.452028][0.238028,-0.927081,0.289592][0.939275,0.952237,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.938256,0.951746,0][6.00537,2.0507,-0.452028][0.238028,-0.927081,0.289592][0.939275,0.952237,0][6.38365,2.05237,-0.703684][0.506304,-0.543306,0.669683][0.937955,0.952286,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.955333,0.952262,0][6.09408,2.42915,-0.112362][0.479101,-0.23852,0.844731][0.956652,0.951774,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.956723,0.952319,0][6.53829,2.48607,-0.267657][0.519427,-0.419724,0.74433][0.955265,0.951682,0][6.09408,2.42915,-0.112362][0.479101,-0.23852,0.844731][0.956652,0.951774,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.955333,0.952262,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.978635,0.965577,0][5.88771,2.45311,-0.479328][-0.301001,0.910372,-0.28394][0.979189,0.9663,0][5.9929,2.55897,-0.251421][-0.301001,0.910372,-0.28394][0.978415,0.966481,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.934654,0.946013,0][5.9929,2.55897,-0.251421][-0.301001,0.910372,-0.28394][0.935003,0.946862,0][6.39245,2.68114,-0.427641][-0.491868,0.818926,-0.295679][0.934094,0.946556,0][6.27294,2.51564,-0.68722][-0.48997,0.189893,-0.850805][0.949654,0.966863,0][5.92979,2.20554,-0.558816][-0.48997,0.189893,-0.850805][0.951005,0.966457,0][5.88771,2.45311,-0.479328][-0.48997,0.189893,-0.850805][0.951019,0.966979,0][6.27649,2.24017,-0.812335][-0.455081,0.517299,-0.724778][0.979244,0.965205,0][5.92979,2.20554,-0.558816][-0.578278,0.331175,-0.745599][0.979596,0.965945,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.978635,0.965577,0][6.27649,2.24017,-0.812335][-0.495793,-0.629207,-0.598571][0.947887,0.957389,0][6.00537,2.0507,-0.452028][-0.408112,-0.644876,-0.646204][0.946898,0.957859,0][5.92979,2.20554,-0.558816][-0.408112,-0.644876,-0.646204][0.946691,0.957546,0][6.38365,2.05237,-0.703684][-0.495793,-0.629207,-0.598571][0.948208,0.957745,0][6.00537,2.0507,-0.452028][-0.408112,-0.644876,-0.646204][0.946898,0.957859,0][6.27649,2.24017,-0.812335][-0.495793,-0.629207,-0.598571][0.947887,0.957389,0][6.39245,2.68114,-0.427641][-0.141155,0.562555,0.814621][0.972675,0.967972,0][5.9929,2.55897,-0.251421][0.060266,0.751134,0.657394][0.971277,0.967849,0][6.09408,2.42915,-0.112362][0.060266,0.751134,0.657394][0.97137,0.967426,0][6.39245,2.68114,-0.427641][-0.141155,0.562555,0.814621][0.972675,0.967972,0][6.09408,2.42915,-0.112362][0.060266,0.751134,0.657394][0.97137,0.967426,0][6.53829,2.48607,-0.267657][-0.141155,0.562555,0.814621][0.972841,0.967409,0][6.00537,2.0507,-0.452028][0.238028,-0.927081,0.289592][0.939275,0.952237,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.942489,0.951973,0][4.68792,2.03185,0.175305][0.208189,-0.88776,0.410535][0.943435,0.952472,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.939678,0.951762,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.942489,0.951973,0][6.00537,2.0507,-0.452028][0.238028,-0.927081,0.289592][0.939275,0.952237,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.956723,0.952319,0][5.62536,2.43137,0.109422][0.389895,-0.281373,0.876819][0.95811,0.951748,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.9595,0.952247,0][6.09408,2.42915,-0.112362][0.479101,-0.23852,0.844731][0.956652,0.951774,0][5.62536,2.43137,0.109422][0.389895,-0.281373,0.876819][0.95811,0.951748,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.956723,0.952319,0][5.88771,2.45311,-0.479328][-0.301001,0.910372,-0.28394][0.979189,0.9663,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.980324,0.968103,0][5.46847,2.65554,-0.0388378][-0.153999,0.833996,-0.529844][0.979029,0.967545,0][5.88771,2.45311,-0.479328][-0.301001,0.910372,-0.28394][0.979189,0.9663,0][5.46847,2.65554,-0.0388378][-0.153999,0.833996,-0.529844][0.979029,0.967545,0][5.9929,2.55897,-0.251421][-0.301001,0.910372,-0.28394][0.978415,0.966481,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][5.88771,2.45311,-0.479328][-0.301001,0.910372,-0.28394][0.967772,0.95403,0][5.92979,2.20554,-0.558816][-0.578278,0.331175,-0.745599][0.967446,0.954482,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][5.92979,2.20554,-0.558816][-0.578278,0.331175,-0.745599][0.967446,0.954482,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.952604,0.947896,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.951727,0.948185,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.950793,0.947642,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.942489,0.951973,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.944089,0.95184,0][4.68792,2.03185,0.175305][0.208189,-0.88776,0.410535][0.943435,0.952472,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.952604,0.947896,0][5.51048,2.35297,0.585269][0.320996,-0.929628,0.18098][0.952662,0.948728,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.951727,0.948185,0][5.62536,2.43137,0.109422][0.506917,-0.861772,-0.0196009][0.942938,0.954482,0][5.51048,2.35297,0.585269][0.506917,-0.861772,-0.0196009][0.942846,0.953512,0][5.18478,2.16966,0.221354][0.506917,-0.861772,-0.0196009][0.944089,0.954018,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.965492,0.952191,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.966712,0.952298,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.966712,0.952298,0][5.46847,2.65554,-0.0388378][-0.153999,0.833996,-0.529844][0.967049,0.95323,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.964448,0.952105,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.965492,0.952191,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.965492,0.952191,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][5.183,2.62143,0.756428][0.119134,-0.42636,0.896674][0.941264,0.966232,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.940188,0.965766,0][5.51048,2.35297,0.585269][0.320996,-0.929628,0.18098][0.941389,0.965396,0][4.88843,2.50951,0.73965][0.110472,-0.425436,0.89822][0.940371,0.96649,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.940188,0.965766,0][5.183,2.62143,0.756428][0.119134,-0.42636,0.896674][0.941264,0.966232,0][4.88843,2.50951,0.73965][0.110472,-0.425436,0.89822][0.940371,0.96649,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.938987,0.966136,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.940188,0.965766,0][4.59387,2.3976,0.722873][0.107486,-0.418144,0.901999][0.939478,0.966748,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.938987,0.966136,0][4.88843,2.50951,0.73965][0.110472,-0.425436,0.89822][0.940371,0.96649,0][4.98474,2.93669,0.492019][-0.246556,0.527043,0.813287][0.962628,0.942934,0][4.88843,2.50951,0.73965][-0.246556,0.527043,0.813287][0.963492,0.943765,0][5.183,2.62143,0.756428][-0.246556,0.527043,0.813287][0.962516,0.943837,0][4.72838,2.81357,0.49918][-0.229943,0.526364,0.818576][0.963513,0.942935,0][4.88843,2.50951,0.73965][-0.246556,0.527043,0.813287][0.963492,0.943765,0][4.98474,2.93669,0.492019][-0.246556,0.527043,0.813287][0.962628,0.942934,0][4.72838,2.81357,0.49918][-0.229943,0.526364,0.818576][0.963513,0.942935,0][4.59387,2.3976,0.722873][-0.243951,0.519334,0.819011][0.964468,0.943694,0][4.88843,2.50951,0.73965][-0.246556,0.527043,0.813287][0.963492,0.943765,0][4.47202,2.69044,0.50634][-0.22522,0.516956,0.825853][0.964398,0.942935,0][4.59387,2.3976,0.722873][-0.243951,0.519334,0.819011][0.964468,0.943694,0][4.72838,2.81357,0.49918][-0.229943,0.526364,0.818576][0.963513,0.942935,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.95595,0.953203,0][4.72838,2.81357,0.49918][-0.433515,0.900131,-0.0427556][0.955706,0.954079,0][4.98474,2.93669,0.492019][-0.433515,0.900131,-0.0427556][0.955039,0.953982,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.95595,0.953203,0][4.98474,2.93669,0.492019][-0.433515,0.900131,-0.0427556][0.955039,0.953982,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.955001,0.953098,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.95672,0.953448,0][4.47202,2.69044,0.50634][-0.433466,0.898449,-0.0699797][0.956374,0.954177,0][4.72838,2.81357,0.49918][-0.433515,0.900131,-0.0427556][0.955706,0.954079,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.95672,0.953448,0][4.72838,2.81357,0.49918][-0.433515,0.900131,-0.0427556][0.955706,0.954079,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.95595,0.953203,0][4.68792,2.03185,0.175305][-0.323189,-0.639096,-0.69793][0.942722,0.957827,0][5.92979,2.20554,-0.558816][-0.408112,-0.644876,-0.646204][0.946691,0.957546,0][6.00537,2.0507,-0.452028][-0.408112,-0.644876,-0.646204][0.946898,0.957859,0][4.56608,2.32468,-0.0412286][-0.319609,-0.645741,-0.693447][0.942404,0.957228,0][5.92979,2.20554,-0.558816][-0.408112,-0.644876,-0.646204][0.946691,0.957546,0][4.68792,2.03185,0.175305][-0.323189,-0.639096,-0.69793][0.942722,0.957827,0][5.62536,2.43137,0.109422][0.379462,0.680286,0.627072][0.969799,0.967443,0][5.9929,2.55897,-0.251421][0.060266,0.751134,0.657394][0.971277,0.967849,0][5.46847,2.65554,-0.0388378][0.379462,0.680286,0.627072][0.969607,0.968035,0][6.09408,2.42915,-0.112362][0.060266,0.751134,0.657394][0.97137,0.967426,0][5.9929,2.55897,-0.251421][0.060266,0.751134,0.657394][0.971277,0.967849,0][5.62536,2.43137,0.109422][0.379462,0.680286,0.627072][0.969799,0.967443,0][7.80546,4.8208,1.30345][0.45404,-0.364681,0.81293][0.951873,0.965615,0][7.54039,4.73891,1.30882][0.138826,-0.389588,0.910466][0.951111,0.965873,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.950882,0.965274,0][7.80546,4.8208,1.30345][0.45404,-0.364681,0.81293][0.951873,0.965615,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.950882,0.965274,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.951827,0.96486,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.929831,0.961889,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.928805,0.961894,0][7.71305,4.43758,0.831923][0.223941,-0.968428,0.10953][0.929305,0.961301,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.929831,0.961889,0][7.71305,4.43758,0.831923][0.223941,-0.968428,0.10953][0.929305,0.961301,0][8.21537,4.54636,0.696088][0.518146,-0.726336,0.45162][0.930641,0.961388,0][8.03212,4.82153,0.455876][-0.129987,-0.699766,-0.702446][0.951154,0.943087,0][7.71305,4.43758,0.831923][-0.0522601,-0.676254,-0.734813][0.952794,0.942428,0][7.56032,4.66693,0.631713][-0.0522601,-0.676254,-0.734813][0.952787,0.943103,0][8.21537,4.54636,0.696088][-0.129987,-0.699766,-0.702446][0.951162,0.942278,0][7.71305,4.43758,0.831923][-0.0522601,-0.676254,-0.734813][0.952794,0.942428,0][8.03212,4.82153,0.455876][-0.129987,-0.699766,-0.702446][0.951154,0.943087,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.977135,0.951912,0][7.56032,4.66693,0.631713][-0.345047,0.258826,-0.902192][0.975956,0.952272,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.976003,0.951656,0][8.03212,4.82153,0.455876][-0.456356,0.51342,-0.726732][0.97744,0.952546,0][7.56032,4.66693,0.631713][-0.345047,0.258826,-0.902192][0.975956,0.952272,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.977135,0.951912,0][7.62221,5.09597,1.06324][-0.439532,0.848018,-0.296102][0.945314,0.95393,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.946232,0.953451,0][7.38766,4.96826,1.10861][-0.491294,0.864477,-0.106346][0.945944,0.954099,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.930286,0.967941,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.92907,0.967995,0][7.62221,5.09597,1.06324][-0.439532,0.848018,-0.296102][0.929478,0.967245,0][7.62221,5.09597,1.06324][-0.16944,0.581663,0.795587][0.94279,0.966492,0][7.38766,4.96826,1.10861][-0.164398,0.584275,0.79473][0.943633,0.966511,0][7.54039,4.73891,1.30882][-0.164398,0.584275,0.79473][0.943626,0.967185,0][7.62221,5.09597,1.06324][-0.16944,0.581663,0.795587][0.94279,0.966492,0][7.54039,4.73891,1.30882][-0.164398,0.584275,0.79473][0.943626,0.967185,0][7.80546,4.8208,1.30345][-0.16944,0.581663,0.795587][0.942782,0.967302,0][7.54039,4.73891,1.30882][0.138826,-0.389588,0.910466][0.951111,0.965873,0][6.93403,4.29057,1.24032][0.177689,-0.379082,0.908143][0.948791,0.9661,0][7.1188,4.10259,1.1257][0.177689,-0.379082,0.908143][0.948781,0.965578,0][7.54039,4.73891,1.30882][0.138826,-0.389588,0.910466][0.951111,0.965873,0][7.1188,4.10259,1.1257][0.177689,-0.379082,0.908143][0.948781,0.965578,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.950882,0.965274,0][7.70309,4.47357,1.17048][0.52866,-0.843791,0.0923825][0.933843,0.954108,0][7.1188,4.10259,1.1257][0.52866,-0.843791,0.0923824][0.935616,0.953844,0][7.16196,4.09852,0.841562][0.52866,-0.843791,0.0923824][0.935839,0.95439,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.95769,0.942178,0][7.16196,4.09852,0.841562][0.522435,-0.846151,0.105314][0.959735,0.942163,0][7.71305,4.43758,0.831923][0.223941,-0.968428,0.10953][0.958305,0.942726,0][7.56032,4.66693,0.631713][-0.0522601,-0.676254,-0.734813][0.952787,0.943103,0][7.16196,4.09852,0.841562][0.302616,-0.509468,-0.805522][0.954574,0.942462,0][7.02035,4.28243,0.672043][0.302616,-0.509468,-0.805522][0.95461,0.94303,0][7.71305,4.43758,0.831923][-0.0522601,-0.676254,-0.734813][0.952794,0.942428,0][7.16196,4.09852,0.841562][0.302616,-0.509468,-0.805522][0.954574,0.942462,0][7.56032,4.66693,0.631713][-0.0522601,-0.676254,-0.734813][0.952787,0.943103,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.976003,0.951656,0][7.02035,4.28243,0.672043][-0.269144,0.294559,-0.916949][0.973893,0.952299,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.973747,0.951785,0][7.56032,4.66693,0.631713][-0.345047,0.258826,-0.902192][0.975956,0.952272,0][7.02035,4.28243,0.672043][-0.269144,0.294559,-0.916949][0.973893,0.952299,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.976003,0.951656,0][7.38766,4.96826,1.10861][-0.491294,0.864477,-0.106346][0.945944,0.954099,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.948227,0.953732,0][6.79242,4.47448,1.0708][-0.630781,0.768574,-0.106815][0.948102,0.954291,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.946232,0.953451,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.948227,0.953732,0][7.38766,4.96826,1.10861][-0.491294,0.864477,-0.106346][0.945944,0.954099,0][7.38766,4.96826,1.10861][-0.164398,0.584275,0.79473][0.943633,0.966511,0][6.79242,4.47448,1.0708][-0.407351,0.429325,0.806068][0.945942,0.966606,0][6.93403,4.29057,1.24032][-0.407351,0.429325,0.806068][0.945888,0.967174,0][7.38766,4.96826,1.10861][-0.164398,0.584275,0.79473][0.943633,0.966511,0][6.93403,4.29057,1.24032][-0.407351,0.429325,0.806068][0.945888,0.967174,0][7.54039,4.73891,1.30882][-0.164398,0.584275,0.79473][0.943626,0.967185,0][6.93403,4.29057,1.24032][0.177689,-0.379082,0.908143][0.948791,0.9661,0][6.3239,3.72939,1.05367][0.121183,-0.429404,0.894945][0.946213,0.966174,0][6.5255,3.56733,0.948618][0.121183,-0.429404,0.894945][0.946298,0.965665,0][6.93403,4.29057,1.24032][0.177689,-0.379082,0.908143][0.948791,0.9661,0][6.5255,3.56733,0.948618][0.121183,-0.429404,0.894945][0.946298,0.965665,0][7.1188,4.10259,1.1257][0.177689,-0.379082,0.908143][0.948781,0.965578,0][7.16196,4.09852,0.841562][0.52866,-0.843791,0.0923824][0.935839,0.95439,0][6.5255,3.56733,0.948618][0.647656,-0.754256,0.107886][0.937966,0.953739,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.938061,0.954278,0][7.1188,4.10259,1.1257][0.52866,-0.843791,0.0923824][0.935616,0.953844,0][6.5255,3.56733,0.948618][0.647656,-0.754256,0.107886][0.937966,0.953739,0][7.16196,4.09852,0.841562][0.52866,-0.843791,0.0923824][0.935839,0.95439,0][7.02035,4.28243,0.672043][0.522811,-0.328586,-0.786575][0.938496,0.963367,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.936154,0.963958,0][6.46965,3.77775,0.516836][0.522811,-0.328586,-0.786575][0.936122,0.963405,0][7.16196,4.09852,0.841562][0.52866,-0.843791,0.0923824][0.938566,0.963935,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.936154,0.963958,0][7.02035,4.28243,0.672043][0.522811,-0.328586,-0.786575][0.938496,0.963367,0][7.02035,4.28243,0.672043][-0.269144,0.294559,-0.916949][0.973893,0.952299,0][6.46965,3.77775,0.516836][-0.131075,0.419296,-0.898338][0.971592,0.952511,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.971357,0.95202,0][7.02035,4.28243,0.672043][-0.269144,0.294559,-0.916949][0.973893,0.952299,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.971357,0.95202,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.973747,0.951785,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.948227,0.953732,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.950527,0.953685,0][6.19517,3.91563,0.890312][-0.660953,0.74193,-0.112609][0.950528,0.954227,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.948227,0.953732,0][6.19517,3.91563,0.890312][-0.660953,0.74193,-0.112609][0.950528,0.954227,0][6.79242,4.47448,1.0708][-0.630781,0.768574,-0.106815][0.948102,0.954291,0][6.79242,4.47448,1.0708][-0.534169,0.317888,0.783333][0.941314,0.961711,0][6.19517,3.91563,0.890312][-0.534169,0.317888,0.783333][0.938707,0.961729,0][6.3239,3.72939,1.05367][-0.534169,0.317888,0.783333][0.938706,0.961175,0][6.79242,4.47448,1.0708][-0.534169,0.317888,0.783333][0.941314,0.961711,0][6.3239,3.72939,1.05367][-0.534169,0.317888,0.783333][0.938706,0.961175,0][6.93403,4.29057,1.24032][-0.531037,0.315851,0.786281][0.94135,0.961142,0][6.5255,3.56733,0.948618][0.121183,-0.429404,0.894945][0.946298,0.965665,0][5.183,2.62143,0.756428][0.119134,-0.42636,0.896674][0.941264,0.966232,0][5.51048,2.35297,0.585269][0.320996,-0.929628,0.18098][0.941389,0.965396,0][6.3239,3.72939,1.05367][0.121183,-0.429404,0.894945][0.946213,0.966174,0][5.183,2.62143,0.756428][0.119134,-0.42636,0.896674][0.941264,0.966232,0][6.5255,3.56733,0.948618][0.121183,-0.429404,0.894945][0.946298,0.965665,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.938061,0.954278,0][5.51048,2.35297,0.585269][0.506917,-0.861772,-0.0196009][0.942846,0.953512,0][5.62536,2.43137,0.109422][0.506917,-0.861772,-0.0196009][0.942938,0.954482,0][6.5255,3.56733,0.948618][0.647656,-0.754256,0.107886][0.937966,0.953739,0][5.51048,2.35297,0.585269][0.506917,-0.861772,-0.0196009][0.942846,0.953512,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.938061,0.954278,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.936154,0.963958,0][5.62536,2.43137,0.109422][0.506917,-0.861772,-0.0196009][0.93122,0.964054,0][5.46847,2.65554,-0.0388378][0.596254,-0.108754,-0.795395][0.931211,0.963442,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.936154,0.963958,0][5.46847,2.65554,-0.0388378][0.596254,-0.108754,-0.795395][0.931211,0.963442,0][6.46965,3.77775,0.516836][0.522811,-0.328586,-0.786575][0.936122,0.963405,0][6.46965,3.77775,0.516836][-0.131075,0.419296,-0.898338][0.971592,0.952511,0][5.46847,2.65554,-0.0388378][-0.153999,0.833996,-0.529844][0.967049,0.95323,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.966712,0.952298,0][6.46965,3.77775,0.516836][-0.131075,0.419296,-0.898338][0.971592,0.952511,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.966712,0.952298,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.971357,0.95202,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.950527,0.953685,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.955001,0.953098,0][4.98474,2.93669,0.492019][-0.433515,0.900131,-0.0427556][0.955039,0.953982,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.950527,0.953685,0][4.98474,2.93669,0.492019][-0.433515,0.900131,-0.0427556][0.955039,0.953982,0][6.19517,3.91563,0.890312][-0.660953,0.74193,-0.112609][0.950528,0.954227,0][6.19517,3.91563,0.890312][-0.534169,0.317888,0.783333][0.938707,0.961729,0][4.98474,2.93669,0.492019][-0.524423,0.328894,0.785372][0.933724,0.962005,0][5.183,2.62143,0.756428][-0.524423,0.328894,0.785372][0.933672,0.961101,0][6.19517,3.91563,0.890312][-0.534169,0.317888,0.783333][0.938707,0.961729,0][5.183,2.62143,0.756428][-0.524423,0.328894,0.785372][0.933672,0.961101,0][6.3239,3.72939,1.05367][-0.534169,0.317888,0.783333][0.938706,0.961175,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.938987,0.966136,0][3.52643,1.81057,0.791623][0.256307,-0.349855,0.901059][0.93584,0.967429,0][3.77196,1.38606,0.55696][0.256307,-0.349855,0.901059][0.935441,0.966491,0][4.59387,2.3976,0.722873][0.107486,-0.418144,0.901999][0.939478,0.966748,0][3.52643,1.81057,0.791623][0.256307,-0.349855,0.901059][0.93584,0.967429,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.938987,0.966136,0][4.68792,2.03185,0.175305][0.597403,-0.797493,0.0843519][0.94501,0.940922,0][3.77196,1.38606,0.55696][0.597403,-0.797493,0.0843519][0.948036,0.940166,0][3.82016,1.36494,0.0158648][0.597403,-0.797493,0.0843519][0.948032,0.941238,0][4.70181,2.06831,0.557356][0.590637,-0.805036,0.0553506][0.944888,0.940165,0][3.77196,1.38606,0.55696][0.597403,-0.797493,0.0843519][0.948036,0.940166,0][4.68792,2.03185,0.175305][0.597403,-0.797493,0.0843519][0.94501,0.940922,0][4.68792,2.03185,0.175305][-0.323189,-0.639096,-0.69793][0.964748,0.936125,0][3.82016,1.36494,0.0158648][0.421653,-0.348514,-0.837106][0.968161,0.935838,0][3.60166,1.78669,-0.269781][0.421653,-0.348514,-0.837106][0.968258,0.936934,0][4.68792,2.03185,0.175305][-0.323189,-0.639096,-0.69793][0.964748,0.936125,0][3.60166,1.78669,-0.269781][0.421653,-0.348514,-0.837106][0.968258,0.936934,0][4.56608,2.32468,-0.0412286][-0.319609,-0.645741,-0.693447][0.96475,0.936884,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][3.60166,1.78669,-0.269781][-0.038753,0.44876,-0.892812][0.960724,0.952569,0][3.37731,2.19283,-0.0559047][-0.038753,0.44876,-0.892812][0.96086,0.951654,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][3.37731,2.19283,-0.0559047][-0.038753,0.44876,-0.892812][0.96086,0.951654,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.964448,0.952105,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.95672,0.953448,0][3.37731,2.19283,-0.0559047][-0.038753,0.44876,-0.892812][0.9595,0.953429,0][3.32911,2.21395,0.485191][-0.381586,0.921681,-0.0699723][0.959182,0.954482,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.95672,0.953448,0][3.32911,2.21395,0.485191][-0.381586,0.921681,-0.0699723][0.959182,0.954482,0][4.47202,2.69044,0.50634][-0.433466,0.898449,-0.0699797][0.956374,0.954177,0][4.59387,2.3976,0.722873][-0.243951,0.519334,0.819011][0.964468,0.943694,0][3.32911,2.21395,0.485191][-0.229963,0.514871,0.825848][0.968244,0.942771,0][3.52643,1.81057,0.791623][-0.229963,0.514871,0.825848][0.968258,0.943848,0][4.47202,2.69044,0.50634][-0.22522,0.516956,0.825853][0.964398,0.942935,0][3.32911,2.21395,0.485191][-0.229963,0.514871,0.825848][0.968244,0.942771,0][4.59387,2.3976,0.722873][-0.243951,0.519334,0.819011][0.964468,0.943694,0][8.95304,6.49426,1.37929][-0.197215,0.504097,-0.840829][0.930881,0.943078,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.932315,0.94273,0][9.18254,6.7192,1.38355][-0.544429,0.703349,-0.457054][0.931818,0.943093,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.950424,0.937519,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.949845,0.937033,0][8.95304,6.49426,1.37929][-0.197215,0.504097,-0.840829][0.951265,0.937162,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.52643,1.81057,0.791623][-0.872883,-0.48244,-0.0729891][0.97753,0.943028,0][3.32911,2.21395,0.485191][-0.872883,-0.48244,-0.0729891][0.976705,0.943785,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.32911,2.21395,0.485191][-0.872883,-0.48244,-0.0729891][0.976705,0.943785,0][3.37731,2.19283,-0.0559047][-0.870347,-0.488958,-0.0584488][0.975013,0.943803,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.37731,2.19283,-0.0559047][-0.870347,-0.488958,-0.0584488][0.975013,0.943803,0][3.60166,1.78669,-0.269781][-0.881352,-0.471565,-0.0290696][0.974219,0.943113,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.60166,1.78669,-0.269781][-0.881352,-0.471565,-0.0290696][0.974219,0.943113,0][3.82016,1.36494,0.0158648][-0.879411,-0.475185,-0.028919][0.97497,0.942308,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.82016,1.36494,0.0158648][-0.879411,-0.475185,-0.028919][0.97497,0.942308,0][3.77196,1.38606,0.55696][-0.885386,-0.460851,-0.0608857][0.976662,0.94229,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.77196,1.38606,0.55696][-0.885386,-0.460851,-0.0608857][0.976662,0.94229,0][3.52643,1.81057,0.791623][-0.872883,-0.48244,-0.0729891][0.97753,0.943028,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.20239,3.4587,-0.365979][-0.763562,0.644729,0.0360178][0.974093,0.94844,0][-7.17705,3.49012,-0.391192][-0.763562,0.644729,0.0360178][0.974236,0.948457,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.21204,3.45398,-0.462943][-0.780924,0.621942,0.0578417][0.974182,0.948624,0][-7.23172,3.42795,-0.448834][-0.780924,0.621942,0.0578417][0.974073,0.948622,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.18698,3.48064,-0.437717][-0.75166,0.657521,0.0517114][0.974253,0.948552,0][-7.21204,3.45398,-0.462943][-0.780924,0.621942,0.0578417][0.974182,0.948624,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.17705,3.49012,-0.391192][-0.763562,0.644729,0.0360178][0.974236,0.948457,0][-7.18698,3.48064,-0.437717][-0.75166,0.657521,0.0517114][0.974253,0.948552,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.22704,3.43091,-0.396663][-0.767341,0.640203,0.0364445][0.974026,0.948522,0][-7.20239,3.4587,-0.365979][-0.763562,0.644729,0.0360178][0.974093,0.94844,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.23172,3.42795,-0.448834][-0.780924,0.621942,0.0578417][0.974073,0.948622,0][-7.22704,3.43091,-0.396663][-0.767341,0.640203,0.0364445][0.974026,0.948522,0][-6.77389,2.23321,-1.61228][-0.41529,-0.115078,-0.902381][0.931589,0.936652,0][-6.77455,2.16555,-1.60335][-0.41529,-0.115078,-0.902381][0.93146,0.936546,0][-6.82779,2.22772,-1.58677][-0.41529,-0.115078,-0.902381][0.93171,0.936578,0][-6.77389,2.23321,-1.61228][-0.420618,-0.0720129,-0.904375][0.946071,0.948615,0][-6.82779,2.22772,-1.58677][-0.420618,-0.0720129,-0.904375][0.946188,0.948692,0][-6.77444,2.29501,-1.61694][-0.420618,-0.0720129,-0.904375][0.945921,0.948692,0][-6.77389,2.23321,-1.61228][-0.41529,-0.115078,-0.902381][0.931589,0.936652,0][-6.77444,2.29501,-1.61694][-0.39306,-0.0726919,-0.916635][0.931709,0.936748,0][-6.72142,2.23704,-1.63508][-0.39306,-0.0726919,-0.916635][0.931468,0.936722,0][-6.77389,2.23321,-1.61228][-0.41529,-0.115078,-0.902381][0.931589,0.936652,0][-6.72142,2.23704,-1.63508][-0.39306,-0.0726919,-0.916635][0.931468,0.936722,0][-6.77455,2.16555,-1.60335][-0.41529,-0.115078,-0.902381][0.93146,0.936546,0][-6.31126,1.79926,-1.6626][0.455915,-0.63209,-0.626581][0.954456,0.964902,0][-6.24026,1.82415,-1.63606][0.455915,-0.63209,-0.626581][0.954626,0.965017,0][-6.29975,1.74738,-1.6019][0.455915,-0.63209,-0.626581][0.954306,0.96503,0][-6.31126,1.79926,-1.6626][0.455915,-0.63209,-0.626581][0.928795,0.94671,0][-6.30952,1.85662,-1.69882][0.450468,-0.486319,-0.748713][0.928912,0.946796,0][-6.24026,1.82415,-1.63606][0.455915,-0.63209,-0.626581][0.928685,0.946842,0][-6.31126,1.79926,-1.6626][0.455915,-0.63209,-0.626581][0.928795,0.94671,0][-6.36723,1.78419,-1.66633][0.196948,-0.52764,-0.826321][0.928892,0.946613,0][-6.30952,1.85662,-1.69882][0.450468,-0.486319,-0.748713][0.928912,0.946796,0][-6.31126,1.79926,-1.6626][0.455915,-0.63209,-0.626581][0.954456,0.964902,0][-6.29975,1.74738,-1.6019][0.455915,-0.63209,-0.626581][0.954306,0.96503,0][-6.36723,1.78419,-1.66633][0.196948,-0.52764,-0.826321][0.954317,0.964834,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.30201,3.54235,-1.50494][-0.201239,0.829347,-0.521236][0.929253,0.936634,0][-7.266,3.54339,-1.51719][-0.201239,0.829347,-0.521236][0.929318,0.936571,0][-7.35007,3.46926,-1.58806][-0.264776,0.759495,-0.59419][0.929526,0.936797,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.29433,3.4744,-1.60634][-0.264775,0.759495,-0.59419][0.92962,0.936697,0][-7.24619,3.51436,-1.5765][-0.262728,0.760199,-0.594198][0.929533,0.936572,0][-7.29433,3.4744,-1.60634][-0.264775,0.759495,-0.59419][0.92962,0.936697,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.266,3.54339,-1.51719][-0.201239,0.829347,-0.521236][0.929318,0.936571,0][-7.24619,3.51436,-1.5765][-0.262728,0.760199,-0.594198][0.929533,0.936572,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.35007,3.46926,-1.58806][-0.264776,0.759495,-0.59419][0.929526,0.936797,0][-7.35919,3.50477,-1.52664][-0.346385,0.788928,-0.507552][0.929308,0.936771,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.35919,3.50477,-1.52664][-0.346385,0.788928,-0.507552][0.929308,0.936771,0][-7.30201,3.54235,-1.50494][-0.201239,0.829347,-0.521236][0.929253,0.936634,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.975668,0.957098,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.974723,0.957086,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.979408,0.950492,0][-8.191,5.27466,0.994882][-0.688478,-0.192882,0.699139][0.978904,0.949917,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.979643,0.950176,0][-9.14668,6.98361,-0.183342][0.348717,0.847598,0.399969][0.951641,0.949748,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.20396,7.00741,-0.18384][0.348717,0.847598,0.399969][0.951796,0.949821,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.13106,6.95172,-0.137436][0.278338,0.830643,0.482245][0.973787,0.958977,0][-9.09176,6.96308,-0.179688][0.278338,0.830643,0.482245][0.97395,0.958979,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.18344,6.97554,-0.142128][0.33349,0.823672,0.458638][0.97369,0.959073,0][-9.13106,6.95172,-0.137436][0.278338,0.830643,0.482245][0.973787,0.958977,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.20396,7.00741,-0.18384][0.337038,0.820772,0.461235][0.973732,0.959174,0][-9.18344,6.97554,-0.142128][0.33349,0.823672,0.458638][0.97369,0.959073,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.09176,6.96308,-0.179688][0.278338,0.830643,0.482245][0.97395,0.958979,0][-9.10991,6.99167,-0.224557][0.291403,0.855829,0.427366][0.974007,0.959078,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.10991,6.99167,-0.224557][0.291403,0.855829,0.427366][0.974007,0.959078,0][-9.15993,7.01221,-0.232407][0.286451,0.859347,0.423638][0.973924,0.959172,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.950813,0.948666,0][-9.83181,7.1158,0.277329][-0.441424,0.889751,0.116138][0.950793,0.948511,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.85127,7.11943,0.172862][-0.433549,0.893744,0.115136][0.951123,0.948499,0][-9.91252,7.0878,0.187766][-0.433549,0.893744,0.115136][0.951122,0.948639,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.91252,7.0878,0.187766][-0.433549,0.893744,0.115136][0.951122,0.948639,0][-9.93156,7.07138,0.242071][-0.435456,0.892551,0.117177][0.950971,0.948709,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.93156,7.07138,0.242071][-0.435456,0.892551,0.117177][0.950971,0.948709,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.950813,0.948666,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.81664,7.13028,0.220452][-0.436113,0.892668,0.113791][0.950954,0.948449,0][-9.85127,7.11943,0.172862][-0.433549,0.893744,0.115136][0.951123,0.948499,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.83181,7.1158,0.277329][-0.441424,0.889751,0.116138][0.950793,0.948511,0][-9.81664,7.13028,0.220452][-0.436113,0.892668,0.113791][0.950954,0.948449,0][-8.46636,7.71865,2.15757][0.371741,0.694784,0.615698][0.95824,0.942986,0][-8.48488,7.70046,2.18928][0.371741,0.694784,0.615698][0.958368,0.942986,0][-8.44856,7.68125,2.18902][0.371741,0.694784,0.615698][0.958344,0.943066,0][-8.46636,7.71865,2.15757][0.371741,0.694784,0.615698][0.95824,0.942986,0][-8.42313,7.70209,2.14484][0.43489,0.731121,0.525674][0.958173,0.943071,0][-8.44603,7.73528,2.11762][0.43489,0.731121,0.525674][0.958092,0.94299,0][-8.46636,7.71865,2.15757][0.371741,0.694784,0.615698][0.95824,0.942986,0][-8.44856,7.68125,2.18902][0.371741,0.694784,0.615698][0.958344,0.943066,0][-8.42313,7.70209,2.14484][0.43489,0.731121,0.525674][0.958173,0.943071,0][-8.46636,7.71865,2.15757][0.471956,0.617079,0.62966][0.959587,0.94299,0][-8.50623,7.73911,2.1674][0.471956,0.617079,0.62966][0.959536,0.943074,0][-8.48488,7.70046,2.18928][0.471956,0.617079,0.62966][0.959459,0.94299,0][-8.46636,7.71865,2.15757][0.471956,0.617079,0.62966][0.959587,0.94299,0][-8.48932,7.75371,2.13725][0.479768,0.653588,0.585359][0.959653,0.943072,0][-8.50623,7.73911,2.1674][0.471956,0.617079,0.62966][0.959536,0.943074,0][-8.46636,7.71865,2.15757][0.471956,0.617079,0.62966][0.959587,0.94299,0][-8.44603,7.73528,2.11762][0.524907,0.657303,0.540765][0.959735,0.942986,0][-8.48932,7.75371,2.13725][0.479768,0.653588,0.585359][0.959653,0.943072,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.940868,0.966824,0][-9.59102,8.02359,1.49437][0.0387861,0.996818,-0.0696441][0.940933,0.966775,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.59102,8.02359,1.49437][0.0387861,0.996818,-0.0696441][0.940933,0.966775,0][-9.56096,8.02487,1.55091][0.028465,0.998887,-0.0376099][0.941123,0.966801,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.50593,8.01575,1.47448][0.0907611,0.989806,-0.109761][0.94093,0.966939,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.940868,0.966824,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.48335,8.02337,1.52599][0.0294073,0.986841,-0.158999][0.941098,0.966949,0][-9.50593,8.01575,1.47448][0.0907611,0.989806,-0.109761][0.94093,0.966939,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.50669,8.02767,1.55817][0.0187966,0.992719,-0.11898][0.941179,0.96689,0][-9.48335,8.02337,1.52599][0.0294073,0.986841,-0.158999][0.941098,0.966949,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.56096,8.02487,1.55091][0.028465,0.998887,-0.0376099][0.941123,0.966801,0][-9.50669,8.02767,1.55817][0.0187966,0.992719,-0.11898][0.941179,0.96689,0][-9.56096,8.02487,1.55091][-0.124259,0.763928,0.633225][0.978421,0.956986,0][-9.59792,7.97243,1.60692][-0.124259,0.763928,0.633225][0.97843,0.956818,0][-9.4831,7.97837,1.62229][-0.124259,0.763928,0.633225][0.97876,0.956911,0][-9.50669,8.02767,1.55817][-0.124255,0.763931,0.633222][0.978576,0.95703,0][-9.56096,8.02487,1.55091][-0.124259,0.763928,0.633225][0.978421,0.956986,0][-9.4831,7.97837,1.62229][-0.124259,0.763928,0.633225][0.97876,0.956911,0][-9.50669,8.02767,1.55817][0.599368,0.725784,0.337632][0.933853,0.959693,0][-9.4831,7.97837,1.62229][0.599368,0.725784,0.337632][0.933932,0.959836,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.933672,0.959831,0][-9.48335,8.02337,1.52599][0.599368,0.725785,0.33763][0.93373,0.95969,0][-9.50669,8.02767,1.55817][0.599368,0.725784,0.337632][0.933853,0.959693,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.933672,0.959831,0][-9.48335,8.02337,1.52599][0.0294073,0.986841,-0.158999][0.941098,0.966949,0][-9.43372,7.96927,1.55419][0.768545,0.491456,-0.409645][0.941232,0.967067,0][-9.4815,7.95313,1.4452][0.768545,0.491456,-0.409645][0.940875,0.967046,0][-9.50593,8.01575,1.47448][0.0907611,0.989806,-0.109761][0.94093,0.966939,0][-9.48335,8.02337,1.52599][0.0294073,0.986841,-0.158999][0.941098,0.966949,0][-9.4815,7.95313,1.4452][0.768545,0.491456,-0.409645][0.940875,0.967046,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.970807,0.963183,0][-9.4815,7.95313,1.4452][0.768545,0.491456,-0.409645][0.970512,0.963065,0][-9.61799,7.96418,1.43196][0.122512,0.459202,-0.879843][0.970938,0.963062,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.970807,0.963183,0][-9.50593,8.01575,1.47448][0.0907611,0.989806,-0.109761][0.970605,0.963184,0][-9.4815,7.95313,1.4452][0.768545,0.491456,-0.409645][0.970512,0.963065,0][-9.59102,8.02359,1.49437][-0.597792,0.74296,0.30109][0.978263,0.957029,0][-9.66152,7.96973,1.48729][-0.597792,0.74296,0.30109][0.978098,0.956908,0][-9.59792,7.97243,1.60692][-0.124259,0.763928,0.633225][0.97843,0.956818,0][-9.56096,8.02487,1.55091][-0.124259,0.763928,0.633225][0.978421,0.956986,0][-9.59102,8.02359,1.49437][-0.597792,0.74296,0.30109][0.978263,0.957029,0][-9.59792,7.97243,1.60692][-0.124259,0.763928,0.633225][0.97843,0.956818,0][-9.59102,8.02359,1.49437][0.0387861,0.996818,-0.0696441][0.946372,0.95689,0][-9.61799,7.96418,1.43196][0.122512,0.459202,-0.879843][0.946118,0.956966,0][-9.66152,7.96973,1.48729][-0.505378,0.723432,-0.470361][0.946113,0.956826,0][-9.59102,8.02359,1.49437][0.0387861,0.996818,-0.0696441][0.946372,0.95689,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.946374,0.956956,0][-9.61799,7.96418,1.43196][0.122512,0.459202,-0.879843][0.946118,0.956966,0][-9.4831,7.97837,1.62229][-0.135768,-0.0281704,0.99034][0.963578,0.96799,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.964581,0.967538,0][-9.36285,7.6259,1.62875][-0.135768,-0.0281704,0.99034][0.964707,0.967821,0][-9.4831,7.97837,1.62229][-0.135768,-0.0281704,0.99034][0.963578,0.96799,0][-9.59792,7.97243,1.60692][-0.131194,-0.028452,0.990948][0.963404,0.967791,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.964581,0.967538,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.943325,0.964834,0][-9.36285,7.6259,1.62875][0.805937,0.279649,0.521787][0.942264,0.965053,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.942232,0.964866,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.943325,0.964834,0][-9.4831,7.97837,1.62229][0.599368,0.725784,0.337632][0.943419,0.96499,0][-9.36285,7.6259,1.62875][0.805937,0.279649,0.521787][0.942264,0.965053,0][-9.4815,7.95313,1.4452][0.809828,0.25674,-0.527507][0.968203,0.961163,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.967124,0.961422,0][-9.39349,7.61693,1.41667][0.809828,0.25674,-0.527507][0.96712,0.961116,0][-9.4815,7.95313,1.4452][0.809828,0.25674,-0.527507][0.968203,0.961163,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.968217,0.961399,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.967124,0.961422,0][-9.4815,7.95313,1.4452][0.0591003,0.0997547,-0.993255][0.950188,0.944918,0][-9.39349,7.61693,1.41667][0.0591003,0.0997547,-0.993255][0.949169,0.944686,0][-9.56876,7.58907,1.40345][0.0591003,0.0997547,-0.993255][0.949404,0.944368,0][-9.61799,7.96418,1.43196][0.103296,0.0888655,-0.990673][0.950456,0.944706,0][-9.4815,7.95313,1.4452][0.0591003,0.0997547,-0.993255][0.950188,0.944918,0][-9.56876,7.58907,1.40345][0.0591003,0.0997547,-0.993255][0.949404,0.944368,0][-9.59792,7.97243,1.60692][-0.131194,-0.028452,0.990948][0.969891,0.948546,0][-9.61122,7.57542,1.46854][-0.777673,-0.183512,0.601288][0.971169,0.948368,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.971105,0.948709,0][-9.59792,7.97243,1.60692][-0.87378,-0.133691,0.467584][0.936546,0.93783,0][-9.66152,7.96973,1.48729][-0.87378,-0.133691,0.467584][0.936537,0.938099,0][-9.61122,7.57542,1.46854][-0.87378,-0.133691,0.467584][0.935299,0.938084,0][-9.61799,7.96418,1.43196][-0.829231,-0.066644,-0.554918][0.946832,0.967692,0][-9.56876,7.58907,1.40345][-0.829231,-0.066644,-0.554918][0.947994,0.967826,0][-9.61122,7.57542,1.46854][-0.87378,-0.133691,0.467584][0.947959,0.967981,0][-9.66152,7.96973,1.48729][-0.87378,-0.133691,0.467584][0.946747,0.967821,0][-9.61799,7.96418,1.43196][-0.829231,-0.066644,-0.554918][0.946832,0.967692,0][-9.61122,7.57542,1.46854][-0.87378,-0.133691,0.467584][0.947959,0.967981,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.964581,0.967538,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.965813,0.967409,0][-9.24226,7.30305,1.60906][-0.137724,-0.125247,0.98252][0.965758,0.967684,0][-9.36285,7.6259,1.62875][-0.135768,-0.0281704,0.99034][0.964707,0.967821,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.964581,0.967538,0][-9.24226,7.30305,1.60906][-0.137724,-0.125247,0.98252][0.965758,0.967684,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.942232,0.964866,0][-9.24226,7.30305,1.60906][0.780602,0.271632,0.562917][0.941189,0.965057,0][-9.19771,7.3288,1.53486][0.780602,0.271632,0.562917][0.941201,0.964879,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.942232,0.964866,0][-9.36285,7.6259,1.62875][0.805937,0.279649,0.521787][0.942264,0.965053,0][-9.24226,7.30305,1.60906][0.780602,0.271632,0.562917][0.941189,0.965057,0][-9.39349,7.61693,1.41667][0.809828,0.25674,-0.527507][0.96712,0.961116,0][-9.19771,7.3288,1.53486][0.780602,0.271632,0.562917][0.966095,0.961439,0][-9.24771,7.27696,1.40667][0.810096,0.360981,-0.461993][0.965976,0.961159,0][-9.39349,7.61693,1.41667][0.809828,0.25674,-0.527507][0.96712,0.961116,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.967124,0.961422,0][-9.19771,7.3288,1.53486][0.780602,0.271632,0.562917][0.966095,0.961439,0][-9.39349,7.61693,1.41667][0.0591003,0.0997547,-0.993255][0.949169,0.944686,0][-9.24771,7.27696,1.40667][0.109187,0.0759892,-0.991112][0.948039,0.944546,0][-9.39055,7.18873,1.38417][0.109187,0.0759892,-0.991112][0.948062,0.944213,0][-9.56876,7.58907,1.40345][0.0591003,0.0997547,-0.993255][0.949404,0.944368,0][-9.39349,7.61693,1.41667][0.0591003,0.0997547,-0.993255][0.949169,0.944686,0][-9.39055,7.18873,1.38417][0.109187,0.0759892,-0.991112][0.948062,0.944213,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.971105,0.948709,0][-9.42858,7.16359,1.44386][-0.754983,-0.353525,0.552287][0.972499,0.948626,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.972299,0.948923,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.971105,0.948709,0][-9.61122,7.57542,1.46854][-0.777673,-0.183512,0.601288][0.971169,0.948368,0][-9.42858,7.16359,1.44386][-0.754983,-0.353525,0.552287][0.972499,0.948626,0][-9.56876,7.58907,1.40345][-0.829231,-0.066644,-0.554918][0.947994,0.967826,0][-9.39055,7.18873,1.38417][-0.741606,-0.301265,-0.599383][0.949314,0.96786,0][-9.42858,7.16359,1.44386][-0.741606,-0.301265,-0.599383][0.94932,0.968009,0][-9.61122,7.57542,1.46854][-0.87378,-0.133691,0.467584][0.947959,0.967981,0][-9.56876,7.58907,1.40345][-0.829231,-0.066644,-0.554918][0.947994,0.967826,0][-9.42858,7.16359,1.44386][-0.741606,-0.301265,-0.599383][0.94932,0.968009,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.965813,0.967409,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.967071,0.967423,0][-9.05276,6.99753,1.6144][-0.165668,-0.0833194,0.982656][0.966877,0.967681,0][-9.24226,7.30305,1.60906][-0.137724,-0.125247,0.98252][0.965758,0.967684,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.965813,0.967409,0][-9.05276,6.99753,1.6144][-0.165668,-0.0833194,0.982656][0.966877,0.967681,0][-9.24226,7.30305,1.60906][0.780602,0.271632,0.562917][0.941189,0.965057,0][-9.05276,6.99753,1.6144][0.689333,0.437631,0.577321][0.940092,0.965032,0][-9.00939,7.02897,1.53878][0.689333,0.437631,0.577321][0.940121,0.964849,0][-9.19771,7.3288,1.53486][0.780602,0.271632,0.562917][0.941201,0.964879,0][-9.24226,7.30305,1.60906][0.780602,0.271632,0.562917][0.941189,0.965057,0][-9.00939,7.02897,1.53878][0.689333,0.437631,0.577321][0.940121,0.964849,0][-9.24771,7.27696,1.40667][0.754572,0.496682,-0.428868][0.971527,0.942219,0][-9.00939,7.02897,1.53878][0.754572,0.496682,-0.428868][0.972523,0.941858,0][-9.03034,6.95081,1.41141][0.754572,0.496682,-0.428868][0.972738,0.942124,0][-9.24771,7.27696,1.40667][0.754572,0.496682,-0.428868][0.971527,0.942219,0][-9.19771,7.3288,1.53486][0.746494,0.462597,-0.478279][0.971428,0.941935,0][-9.00939,7.02897,1.53878][0.754572,0.496682,-0.428868][0.972523,0.941858,0][-9.39055,7.18873,1.38417][0.109187,0.0759892,-0.991112][0.948062,0.944213,0][-9.03034,6.95081,1.41141][0.117126,0.0638637,-0.991062][0.946819,0.944537,0][-9.14189,6.81926,1.38975][0.117126,0.0638637,-0.991062][0.946676,0.944208,0][-9.39055,7.18873,1.38417][0.109187,0.0759892,-0.991112][0.948062,0.944213,0][-9.24771,7.27696,1.40667][0.109187,0.0759892,-0.991112][0.948039,0.944546,0][-9.03034,6.95081,1.41141][0.117126,0.0638637,-0.991062][0.946819,0.944537,0][-9.42858,7.16359,1.44386][-0.754983,-0.353525,0.552287][0.939205,0.936742,0][-9.17763,6.78899,1.45097][-0.710267,-0.465804,0.527776][0.938054,0.936959,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.937903,0.936699,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.972299,0.948923,0][-9.42858,7.16359,1.44386][-0.754983,-0.353525,0.552287][0.972499,0.948626,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.973401,0.949276,0][-9.42858,7.16359,1.44386][-0.741606,-0.301265,-0.599383][0.94932,0.968009,0][-9.14189,6.81926,1.38975][-0.655731,-0.450778,-0.605654][0.950575,0.967843,0][-9.17763,6.78899,1.45097][-0.655731,-0.450778,-0.605654][0.950597,0.967995,0][-9.42858,7.16359,1.44386][-0.741606,-0.301265,-0.599383][0.94932,0.968009,0][-9.39055,7.18873,1.38417][-0.741606,-0.301265,-0.599383][0.949314,0.96786,0][-9.14189,6.81926,1.38975][-0.655731,-0.450778,-0.605654][0.950575,0.967843,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.967071,0.967423,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.968226,0.967491,0][-8.85628,6.81128,1.69462][-0.35599,-0.010512,0.934431][0.967692,0.967816,0][-9.05276,6.99753,1.6144][-0.165668,-0.0833194,0.982656][0.966877,0.967681,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.967071,0.967423,0][-8.85628,6.81128,1.69462][-0.35599,-0.010512,0.934431][0.967692,0.967816,0][-9.05276,6.99753,1.6144][0.430868,0.699895,0.569649][0.937758,0.956663,0][-8.85628,6.81128,1.69462][0.430868,0.699895,0.569649][0.938629,0.95659,0][-8.79113,6.87044,1.57265][0.430868,0.699895,0.569649][0.938602,0.956887,0][-9.00939,7.02897,1.53878][0.434799,0.715473,0.546853][0.937758,0.956847,0][-9.05276,6.99753,1.6144][0.430868,0.699895,0.569649][0.937758,0.956663,0][-8.79113,6.87044,1.57265][0.430868,0.699895,0.569649][0.938602,0.956887,0][-9.03034,6.95081,1.41141][0.754572,0.496682,-0.428868][0.972738,0.942124,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.97328,0.941663,0][-8.75451,6.7192,1.38355][0.544429,0.703347,-0.457056][0.973799,0.942012,0][-9.03034,6.95081,1.41141][0.754572,0.496682,-0.428868][0.972738,0.942124,0][-9.00939,7.02897,1.53878][0.754572,0.496682,-0.428868][0.972523,0.941858,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.97328,0.941663,0][-9.14189,6.81926,1.38975][0.117126,0.0638637,-0.991062][0.946676,0.944208,0][-8.75451,6.7192,1.38355][0.00386883,0.0767679,-0.997041][0.94574,0.94473,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.945225,0.944279,0][-9.14189,6.81926,1.38975][0.117126,0.0638637,-0.991062][0.946676,0.944208,0][-9.03034,6.95081,1.41141][0.117126,0.0638637,-0.991062][0.946819,0.944537,0][-8.75451,6.7192,1.38355][0.00386883,0.0767679,-0.997041][0.94574,0.94473,0][-9.17763,6.78899,1.45097][-0.710267,-0.465804,0.527776][0.949669,0.940316,0][-8.90061,6.39879,1.46254][-0.743081,-0.514887,0.42746][0.950933,0.940496,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.950565,0.940876,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.973401,0.949276,0][-9.17763,6.78899,1.45097][-0.710267,-0.465804,0.527776][0.973722,0.949022,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.974337,0.949735,0][-9.17763,6.78899,1.45097][-0.655731,-0.450778,-0.605654][0.950597,0.967995,0][-8.84948,6.45435,1.36278][-0.646057,-0.47636,-0.596399][0.951876,0.967726,0][-8.90061,6.39879,1.46254][-0.646057,-0.47636,-0.596399][0.951936,0.967971,0][-9.17763,6.78899,1.45097][-0.655731,-0.450778,-0.605654][0.950597,0.967995,0][-9.14189,6.81926,1.38975][-0.655731,-0.450778,-0.605654][0.950575,0.967843,0][-8.84948,6.45435,1.36278][-0.646057,-0.47636,-0.596399][0.951876,0.967726,0][-8.44603,7.73528,2.11762][0.283902,0.927195,-0.244354][0.970908,0.954322,0][-8.43974,7.71853,2.06137][0.283902,0.927195,-0.244354][0.971011,0.954416,0][-8.52347,7.75417,2.09932][0.283902,0.927195,-0.244354][0.970704,0.954414,0][-8.48932,7.75371,2.13725][0.283903,0.927194,-0.244358][0.97075,0.954321,0][-8.44603,7.73528,2.11762][0.283902,0.927195,-0.244354][0.970908,0.954322,0][-8.52347,7.75417,2.09932][0.283902,0.927195,-0.244354][0.970704,0.954414,0][-8.50623,7.73911,2.1674][-0.295268,0.91436,0.27706][0.946506,0.947981,0][-8.52347,7.75417,2.09932][-0.295268,0.91436,0.27706][0.946669,0.948078,0][-8.55617,7.72594,2.15764][-0.295268,0.91436,0.27706][0.946443,0.948077,0][-8.50623,7.73911,2.1674][-0.295268,0.91436,0.27706][0.946506,0.947981,0][-8.48932,7.75371,2.13725][-0.295276,0.914357,0.277061][0.946623,0.947981,0][-8.52347,7.75417,2.09932][-0.295268,0.91436,0.27706][0.946669,0.948078,0][-8.48488,7.70046,2.18928][-0.269002,0.357653,0.894272][0.929652,0.962255,0][-8.55617,7.72594,2.15764][-0.295268,0.91436,0.27706][0.929479,0.962154,0][-8.51488,7.65119,2.19996][-0.269002,0.357653,0.894272][0.929744,0.962157,0][-8.48488,7.70046,2.18928][-0.269002,0.357653,0.894272][0.929652,0.962255,0][-8.50623,7.73911,2.1674][-0.295268,0.91436,0.27706][0.929515,0.962253,0][-8.55617,7.72594,2.15764][-0.295268,0.91436,0.27706][0.929479,0.962154,0][-8.44856,7.68125,2.18902][0.830812,0.132511,0.540548][0.950349,0.95029,0][-8.44463,7.61403,2.19947][0.830812,0.132511,0.540548][0.950174,0.950366,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.950137,0.950157,0][-8.42313,7.70209,2.14484][0.830812,0.132524,0.540544][0.95033,0.950182,0][-8.44856,7.68125,2.18902][0.830812,0.132511,0.540548][0.950349,0.95029,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.950137,0.950157,0][-8.42313,7.70209,2.14484][0.830812,0.132524,0.540544][0.95033,0.950182,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.950137,0.950157,0][-8.43974,7.71853,2.06137][0.845079,0.530848,-0.0635828][0.950305,0.950053,0][-8.44603,7.73528,2.11762][0.845083,0.53084,-0.0635852][0.950417,0.950128,0][-8.42313,7.70209,2.14484][0.830812,0.132524,0.540544][0.95033,0.950182,0][-8.43974,7.71853,2.06137][0.845079,0.530848,-0.0635828][0.950305,0.950053,0][-8.44856,7.68125,2.18902][0.0904505,0.158053,0.983279][0.955243,0.962283,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.44463,7.61403,2.19947][0.0904505,0.158053,0.983279][0.955399,0.962194,0][-8.44856,7.68125,2.18902][0.0904505,0.158053,0.983279][0.955243,0.962283,0][-8.48488,7.70046,2.18928][0.090447,0.15806,0.983278][0.95512,0.962259,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.43974,7.71853,2.06137][0.283902,0.927195,-0.244354][0.939098,0.939504,0][-8.47002,7.61388,1.96583][-0.0544241,0.681758,-0.72955][0.938771,0.939447,0][-8.59225,7.64966,2.00839][-0.0544241,0.681758,-0.72955][0.938877,0.939204,0][-8.52347,7.75417,2.09932][0.283902,0.927195,-0.244354][0.939205,0.939337,0][-8.43974,7.71853,2.06137][0.283902,0.927195,-0.244354][0.939098,0.939504,0][-8.59225,7.64966,2.00839][-0.0544241,0.681758,-0.72955][0.938877,0.939204,0][-8.55617,7.72594,2.15764][-0.779328,0.613945,-0.125381][0.956448,0.948091,0][-8.59225,7.64966,2.00839][-0.779328,0.613945,-0.125381][0.956018,0.948293,0][-8.63566,7.61086,2.08826][-0.779327,0.613945,-0.125381][0.955968,0.948105,0][-8.55617,7.72594,2.15764][-0.779328,0.613945,-0.125381][0.956448,0.948091,0][-8.52347,7.75417,2.09932][-0.771703,0.622247,-0.131467][0.956485,0.948229,0][-8.59225,7.64966,2.00839][-0.779328,0.613945,-0.125381][0.956018,0.948293,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.63566,7.61086,2.08826][-0.686033,0.0428282,0.726308][0.954984,0.961922,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.955325,0.961889,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.55617,7.72594,2.15764][-0.684686,0.033979,0.728046][0.954907,0.962195,0][-8.63566,7.61086,2.08826][-0.686033,0.0428282,0.726308][0.954984,0.961922,0][-8.44463,7.61403,2.19947][0.830812,0.132511,0.540548][0.962978,0.957499,0][-8.46825,7.48486,2.16337][0.889304,-0.266501,0.371639][0.963387,0.957471,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.963297,0.957744,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.962912,0.957698,0][-8.44463,7.61403,2.19947][0.830812,0.132511,0.540548][0.962978,0.957499,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.963297,0.957744,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.951546,0.935522,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.951956,0.935551,0][-8.47002,7.61388,1.96583][0.84091,0.235204,-0.487391][0.951855,0.935797,0][-8.43974,7.71853,2.06137][0.845079,0.530848,-0.0635828][0.951434,0.935694,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.951546,0.935522,0][-8.47002,7.61388,1.96583][0.84091,0.235204,-0.487391][0.951855,0.935797,0][-8.44463,7.61403,2.19947][0.0904505,0.158053,0.983279][0.955399,0.962194,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.955325,0.961889,0][-8.46825,7.48486,2.16337][-0.15833,-0.238833,0.958066][0.95563,0.961979,0][-8.44463,7.61403,2.19947][0.0904505,0.158053,0.983279][0.955399,0.962194,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.955325,0.961889,0][-8.47002,7.61388,1.96583][-0.0544241,0.681758,-0.72955][0.938771,0.939447,0][-8.49948,7.41551,1.87468][-0.161103,0.431737,-0.887496][0.938152,0.939394,0][-8.62854,7.43371,1.90696][-0.161103,0.431737,-0.887496][0.938203,0.939138,0][-8.59225,7.64966,2.00839][-0.0544241,0.681758,-0.72955][0.938877,0.939204,0][-8.47002,7.61388,1.96583][-0.0544241,0.681758,-0.72955][0.938771,0.939447,0][-8.62854,7.43371,1.90696][-0.161103,0.431737,-0.887496][0.938203,0.939138,0][-8.63566,7.61086,2.08826][-0.779327,0.613945,-0.125381][0.955968,0.948105,0][-8.62854,7.43371,1.90696][-0.897832,0.296805,-0.325277][0.955289,0.948305,0][-8.6706,7.39472,1.98746][-0.897832,0.296805,-0.325277][0.955241,0.948116,0][-8.63566,7.61086,2.08826][-0.779327,0.613945,-0.125381][0.955968,0.948105,0][-8.59225,7.64966,2.00839][-0.779328,0.613945,-0.125381][0.956018,0.948293,0][-8.62854,7.43371,1.90696][-0.897832,0.296805,-0.325277][0.955289,0.948305,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.971322,0.9508,0][-8.6706,7.39472,1.98746][-0.786453,-0.164333,0.595387][0.971763,0.950434,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.971964,0.950655,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.971322,0.9508,0][-8.63566,7.61086,2.08826][-0.686033,0.0428282,0.726308][0.971063,0.950606,0][-8.6706,7.39472,1.98746][-0.786453,-0.164333,0.595387][0.971763,0.950434,0][-8.46825,7.48486,2.16337][0.889304,-0.266501,0.371639][0.963387,0.957471,0][-8.49071,7.30482,2.08285][0.894855,-0.270411,0.355123][0.963979,0.957491,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.963891,0.957765,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.963297,0.957744,0][-8.46825,7.48486,2.16337][0.889304,-0.266501,0.371639][0.963387,0.957471,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.963891,0.957765,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.951956,0.935551,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.952568,0.935574,0][-8.49948,7.41551,1.87468][0.81344,0.144859,-0.563322][0.952534,0.935827,0][-8.47002,7.61388,1.96583][0.84091,0.235204,-0.487391][0.951855,0.935797,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.951956,0.935551,0][-8.49948,7.41551,1.87468][0.81344,0.144859,-0.563322][0.952534,0.935827,0][-8.46825,7.48486,2.16337][-0.15833,-0.238833,0.958066][0.95563,0.961979,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.955701,0.961574,0][-8.49071,7.30482,2.08285][-0.208691,-0.377417,0.902222][0.955975,0.961694,0][-8.46825,7.48486,2.16337][-0.15833,-0.238833,0.958066][0.95563,0.961979,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.955325,0.961889,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.955701,0.961574,0][-8.49948,7.41551,1.87468][-0.161103,0.431737,-0.887496][0.938152,0.939394,0][-8.49199,7.2039,1.79764][-0.170466,0.331751,-0.927838][0.937494,0.939415,0][-8.62355,7.2097,1.82389][-0.170466,0.331751,-0.927838][0.937506,0.939154,0][-8.62854,7.43371,1.90696][-0.161103,0.431737,-0.887496][0.938203,0.939138,0][-8.49948,7.41551,1.87468][-0.161103,0.431737,-0.887496][0.938152,0.939394,0][-8.62355,7.2097,1.82389][-0.170466,0.331751,-0.927838][0.937506,0.939154,0][-8.6706,7.39472,1.98746][-0.897832,0.296805,-0.325277][0.955241,0.948116,0][-8.62355,7.2097,1.82389][-0.907307,0.1244,-0.401645][0.954613,0.948292,0][-8.66474,7.17074,1.90485][-0.907307,0.1244,-0.401645][0.954566,0.948103,0][-8.6706,7.39472,1.98746][-0.897832,0.296805,-0.325277][0.955241,0.948116,0][-8.62854,7.43371,1.90696][-0.897832,0.296805,-0.325277][0.955289,0.948305,0][-8.62355,7.2097,1.82389][-0.907307,0.1244,-0.401645][0.954613,0.948292,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.971964,0.950655,0][-8.66474,7.17074,1.90485][-0.792539,-0.23723,0.561787][0.972491,0.950347,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.972651,0.95058,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.971964,0.950655,0][-8.6706,7.39472,1.98746][-0.786453,-0.164333,0.595387][0.971763,0.950434,0][-8.66474,7.17074,1.90485][-0.792539,-0.23723,0.561787][0.972491,0.950347,0][-8.49071,7.30482,2.08285][0.894855,-0.270411,0.355123][0.963979,0.957491,0][-8.4807,7.10609,2.01206][0.899138,-0.105984,0.424639][0.964569,0.957491,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.964482,0.957766,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.963891,0.957765,0][-8.49071,7.30482,2.08285][0.894855,-0.270411,0.355123][0.963979,0.957491,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.964482,0.957766,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.952568,0.935574,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.953222,0.935532,0][-8.49199,7.2039,1.79764][0.817781,0.226397,-0.529131][0.953232,0.935786,0][-8.49948,7.41551,1.87468][0.81344,0.144859,-0.563322][0.952534,0.935827,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.952568,0.935574,0][-8.49199,7.2039,1.79764][0.817781,0.226397,-0.529131][0.953232,0.935786,0][-8.49071,7.30482,2.08285][-0.208691,-0.377417,0.902222][0.955975,0.961694,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.956185,0.96129,0][-8.4807,7.10609,2.01206][-0.207153,-0.337565,0.918225][0.956433,0.961429,0][-8.49071,7.30482,2.08285][-0.208691,-0.377417,0.902222][0.955975,0.961694,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.955701,0.961574,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.956185,0.96129,0][-8.49199,7.2039,1.79764][-0.170466,0.331751,-0.927838][0.937494,0.939415,0][-8.47029,6.92662,1.69326][-0.17005,0.335508,-0.926562][0.936632,0.939466,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.936645,0.939188,0][-8.62355,7.2097,1.82389][-0.170466,0.331751,-0.927838][0.937506,0.939154,0][-8.49199,7.2039,1.79764][-0.170466,0.331751,-0.927838][0.937494,0.939415,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.936645,0.939188,0][-8.62355,7.2097,1.82389][-0.907307,0.1244,-0.401645][0.954613,0.948292,0][-8.6103,6.93279,1.72119][-0.965192,0.0490846,-0.256894][0.953785,0.948278,0][-8.63915,6.9327,1.82954][-0.965192,0.0490846,-0.256894][0.953888,0.948072,0][-8.66474,7.17074,1.90485][-0.907307,0.1244,-0.401645][0.954566,0.948103,0][-8.62355,7.2097,1.82389][-0.907307,0.1244,-0.401645][0.954613,0.948292,0][-8.63915,6.9327,1.82954][-0.965192,0.0490846,-0.256894][0.953888,0.948072,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.972651,0.95058,0][-8.63915,6.9327,1.82954][-0.834664,-0.211327,0.508603][0.973265,0.950298,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.973568,0.950498,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.972651,0.95058,0][-8.66474,7.17074,1.90485][-0.792539,-0.23723,0.561787][0.972491,0.950347,0][-8.63915,6.9327,1.82954][-0.834664,-0.211327,0.508603][0.973265,0.950298,0][-8.4807,7.10609,2.01206][0.899138,-0.105984,0.424639][0.964569,0.957491,0][-8.45827,6.82254,1.92143][0.895322,-0.0697981,0.439917][0.965389,0.957475,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.965297,0.957767,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.964482,0.957766,0][-8.4807,7.10609,2.01206][0.899138,-0.105984,0.424639][0.964569,0.957491,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.965297,0.957767,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.953222,0.935532,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.954141,0.935455,0][-8.47029,6.92662,1.69326][0.817311,0.257919,-0.515248][0.954152,0.935725,0][-8.49199,7.2039,1.79764][0.817781,0.226397,-0.529131][0.953232,0.935786,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.953222,0.935532,0][-8.47029,6.92662,1.69326][0.817311,0.257919,-0.515248][0.954152,0.935725,0][-8.4807,7.10609,2.01206][-0.207153,-0.337565,0.918225][0.956433,0.961429,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.956841,0.960914,0][-8.45827,6.82254,1.92143][-0.207434,-0.312647,0.926943][0.957105,0.961062,0][-8.4807,7.10609,2.01206][-0.207153,-0.337565,0.918225][0.956433,0.961429,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.956185,0.96129,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.956841,0.960914,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.937833,0.956067,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.938514,0.956053,0][-8.70449,6.88352,1.65919][0.0113325,0.774345,-0.632663][0.937885,0.956308,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.937833,0.956067,0][-8.47029,6.92662,1.69326][-0.17005,0.335508,-0.926562][0.938132,0.955859,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.938514,0.956053,0][-8.63915,6.9327,1.82954][-0.651629,0.757898,0.0311497][0.962346,0.950247,0][-8.70449,6.88352,1.65919][-0.651629,0.757898,0.0311497][0.961776,0.950297,0][-8.76494,6.82706,1.76833][-0.651629,0.757898,0.0311497][0.961946,0.950056,0][-8.63915,6.9327,1.82954][-0.404683,0.908179,-0.106972][0.937565,0.956025,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.937833,0.956067,0][-8.70449,6.88352,1.65919][0.0113325,0.774345,-0.632663][0.937885,0.956308,0][-8.57095,6.82929,1.8985][-0.547251,0.202577,0.812083][0.930111,0.939504,0][-8.76494,6.82706,1.76833][-0.547251,0.202577,0.812083][0.929443,0.939321,0][-8.64914,6.66515,1.88675][-0.547251,0.202577,0.812083][0.930108,0.939143,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.973568,0.950498,0][-8.63915,6.9327,1.82954][-0.834664,-0.211327,0.508603][0.973265,0.950298,0][-8.76494,6.82706,1.76833][-0.549377,0.181552,0.815613][0.973578,0.950043,0][-8.45827,6.82254,1.92143][0.895322,-0.0697981,0.439917][0.965389,0.957475,0][-8.45738,6.60477,1.87588][0.884496,-0.0920555,0.457376][0.966011,0.957412,0][-8.35189,6.69532,1.6901][0.884496,-0.0920555,0.457376][0.965861,0.957848,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.965297,0.957767,0][-8.45827,6.82254,1.92143][0.895322,-0.0697981,0.439917][0.965389,0.957475,0][-8.35189,6.69532,1.6901][0.884496,-0.0920555,0.457376][0.965861,0.957848,0][-8.39182,6.88266,1.79573][0.766026,0.431801,-0.476185][0.97381,0.940933,0][-8.35189,6.69532,1.6901][0.766026,0.431801,-0.476185][0.974405,0.941141,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.9739,0.941413,0][-8.47029,6.92662,1.69326][0.817311,0.257919,-0.515248][0.954152,0.935725,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.954141,0.935455,0][-8.48794,6.8167,1.58129][0.810247,0.349294,-0.470631][0.95461,0.935835,0][-8.45827,6.82254,1.92143][-0.207434,-0.312647,0.926943][0.957105,0.961062,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.957028,0.960574,0][-8.45738,6.60477,1.87588][-0.00899945,-0.20479,0.978765][0.957584,0.960757,0][-8.45827,6.82254,1.92143][-0.207434,-0.312647,0.926943][0.957105,0.961062,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.956841,0.960914,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.957028,0.960574,0][-8.70449,6.88352,1.65919][-0.651629,0.757898,0.0311497][0.961776,0.950297,0][-8.85628,6.81128,1.69462][0.430868,0.699895,0.569649][0.961664,0.95004,0][-8.76494,6.82706,1.76833][-0.651629,0.757898,0.0311497][0.961946,0.950056,0][-8.70449,6.88352,1.65919][-0.651629,0.757898,0.0311497][0.961776,0.950297,0][-8.79113,6.87044,1.57265][0.430868,0.699895,0.569649][0.961467,0.950302,0][-8.85628,6.81128,1.69462][0.430868,0.699895,0.569649][0.961664,0.95004,0][-8.76494,6.82706,1.76833][-0.549377,0.181552,0.815613][0.967802,0.967986,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.968226,0.967491,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.96842,0.96801,0][-8.76494,6.82706,1.76833][-0.549377,0.181552,0.815613][0.967802,0.967986,0][-8.85628,6.81128,1.69462][-0.35599,-0.010512,0.934431][0.967692,0.967816,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.968226,0.967491,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.931385,0.945932,0][-8.70449,6.88352,1.65919][0.0113325,0.774345,-0.632663][0.931158,0.946103,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.930459,0.945949,0][-8.35189,6.69532,1.6901][0.884496,-0.0920555,0.457376][0.965861,0.957848,0][-8.41699,6.46326,1.83538][0.859246,0.0756708,0.505935][0.966379,0.957405,0][-8.30872,6.58547,1.63321][0.859246,0.0756708,0.505935][0.966162,0.957892,0][-8.35189,6.69532,1.6901][0.884496,-0.0920555,0.457376][0.965861,0.957848,0][-8.45738,6.60477,1.87588][0.884496,-0.0920555,0.457376][0.966011,0.957412,0][-8.41699,6.46326,1.83538][0.859246,0.0756708,0.505935][0.966379,0.957405,0][-8.35189,6.69532,1.6901][0.766026,0.431801,-0.476185][0.974405,0.941141,0][-8.30872,6.58547,1.63321][0.7501,0.511735,-0.4189][0.974783,0.941238,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.974793,0.941648,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.9739,0.941413,0][-8.35189,6.69532,1.6901][0.766026,0.431801,-0.476185][0.974405,0.941141,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.974793,0.941648,0][-8.45738,6.60477,1.87588][-0.00899945,-0.20479,0.978765][0.957584,0.960757,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.957806,0.960297,0][-8.41699,6.46326,1.83538][-0.156881,-0.312903,0.936739][0.957984,0.960614,0][-8.45738,6.60477,1.87588][-0.00899945,-0.20479,0.978765][0.957584,0.960757,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.957028,0.960574,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.957806,0.960297,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.942477,0.942501,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.943344,0.942553,0][-8.525,6.49425,1.37929][0.197215,0.504096,-0.840829][0.943333,0.942842,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.945225,0.944279,0][-8.525,6.49425,1.37929][0.0354722,0.121748,-0.991927][0.944759,0.944855,0][-8.73534,6.3855,1.35842][0.0354722,0.121748,-0.991927][0.944848,0.944389,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.945225,0.944279,0][-8.75451,6.7192,1.38355][0.00386883,0.0767679,-0.997041][0.94574,0.94473,0][-8.525,6.49425,1.37929][0.0354722,0.121748,-0.991927][0.944759,0.944855,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.974049,0.950384,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.975101,0.950073,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.974968,0.950378,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.96842,0.96801,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.968226,0.967491,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.969198,0.967641,0][-8.90061,6.39879,1.46254][-0.743081,-0.514887,0.42746][0.950933,0.940496,0][-8.78647,6.32995,1.45817][-0.475151,-0.809587,0.344674][0.95134,0.940537,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.950565,0.940876,0][-8.90061,6.39879,1.46254][-0.743081,-0.514887,0.42746][0.950933,0.940496,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.946145,0.965031,0][-8.73534,6.3855,1.35842][0.0354722,0.121748,-0.991927][0.945732,0.965029,0][-8.78647,6.32995,1.45817][-0.430824,-0.676335,-0.597463][0.945815,0.964834,0][-8.90061,6.39879,1.46254][-0.430834,-0.676335,-0.597456][0.946228,0.964835,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.946145,0.965031,0][-8.78647,6.32995,1.45817][-0.430824,-0.676335,-0.597463][0.945815,0.964834,0][-8.73534,6.3855,1.35842][-0.660826,-0.458635,-0.594106][0.972367,0.961168,0][-8.44028,6.01152,1.31892][-0.660826,-0.458635,-0.594106][0.973852,0.961225,0][-8.47727,5.97134,1.39108][-0.660826,-0.458635,-0.594106][0.973843,0.961404,0][-8.78647,6.32995,1.45817][-0.660825,-0.458634,-0.594109][0.972354,0.961415,0][-8.73534,6.3855,1.35842][-0.660826,-0.458635,-0.594106][0.972367,0.961168,0][-8.47727,5.97134,1.39108][-0.660826,-0.458635,-0.594106][0.973843,0.961404,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.47727,5.97134,1.39108][-0.70817,-0.615916,0.34517][0.9527,0.94057,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.78647,6.32995,1.45817][-0.475151,-0.809587,0.344674][0.95134,0.940537,0][-8.47727,5.97134,1.39108][-0.70817,-0.615916,0.34517][0.9527,0.94057,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.952911,0.941107,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.951668,0.941238,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.952911,0.941107,0][-8.525,6.49425,1.37929][0.0354722,0.121748,-0.991927][0.944759,0.944855,0][-8.27307,6.10128,1.30499][-0.135525,0.0994796,-0.985767][0.943306,0.944829,0][-8.44028,6.01152,1.31892][-0.135525,0.0994796,-0.985767][0.943369,0.944455,0][-8.73534,6.3855,1.35842][0.0354722,0.121748,-0.991927][0.944848,0.944389,0][-8.525,6.49425,1.37929][0.0354722,0.121748,-0.991927][0.944759,0.944855,0][-8.44028,6.01152,1.31892][-0.135525,0.0994796,-0.985767][0.943369,0.944455,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.943344,0.942553,0][-8.17659,6.14459,1.35359][0.28929,0.353631,-0.889526][0.944782,0.942518,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-8.525,6.49425,1.37929][0.197215,0.504096,-0.840829][0.943333,0.942842,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.943344,0.942553,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.957806,0.960297,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.959175,0.960097,0][-8.21002,6.06777,1.66392][0.0114449,-0.341174,0.939931][0.959308,0.960347,0][-8.41699,6.46326,1.83538][-0.156881,-0.312903,0.936739][0.957984,0.960614,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.957806,0.960297,0][-8.21002,6.06777,1.66392][0.0114449,-0.341174,0.939931][0.959308,0.960347,0][-8.39162,6.55413,1.44647][0.828847,0.494525,-0.261643][0.941795,0.936393,0][-8.1317,6.15616,1.51769][0.828847,0.494525,-0.261643][0.943244,0.936155,0][-8.17659,6.14459,1.35359][0.828847,0.494525,-0.261643][0.943255,0.936492,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.974793,0.941648,0][-8.30872,6.58547,1.63321][0.7501,0.511735,-0.4189][0.974783,0.941238,0][-8.1317,6.15616,1.51769][0.790808,0.440446,-0.425007][0.976242,0.94142,0][-8.41699,6.46326,1.83538][0.859246,0.0756708,0.505935][0.946645,0.950874,0][-8.21002,6.06777,1.66392][0.814087,0.187805,0.549537][0.945162,0.950812,0][-8.1317,6.15616,1.51769][0.814087,0.187805,0.549537][0.945159,0.950439,0][-8.30872,6.58547,1.63321][0.859246,0.0756708,0.505935][0.94664,0.950359,0][-8.41699,6.46326,1.83538][0.859246,0.0756708,0.505935][0.946645,0.950874,0][-8.1317,6.15616,1.51769][0.814087,0.187805,0.549537][0.945159,0.950439,0][-8.1317,6.15616,1.51769][0.814087,0.187805,0.549537][0.945159,0.950439,0][-7.89351,5.51045,1.42976][0.781938,0.208438,0.587475][0.943052,0.950714,0][-7.81715,5.60562,1.29435][0.781938,0.208438,0.587475][0.943081,0.950354,0][-8.1317,6.15616,1.51769][0.814087,0.187805,0.549537][0.945159,0.950439,0][-8.21002,6.06777,1.66392][0.814087,0.187805,0.549537][0.945162,0.950812,0][-7.89351,5.51045,1.42976][0.781938,0.208438,0.587475][0.943052,0.950714,0][-8.17659,6.14459,1.35359][0.802468,0.55831,-0.210558][0.977142,0.966775,0][-7.81715,5.60562,1.29435][0.802468,0.55831,-0.210558][0.976633,0.965528,0][-7.87035,5.62236,1.13597][0.802468,0.55831,-0.210558][0.977154,0.9655,0][-8.17659,6.14459,1.35359][0.791113,0.555691,-0.255632][0.973838,0.965358,0][-8.1317,6.15616,1.51769][0.791113,0.555691,-0.255632][0.974358,0.965288,0][-7.81715,5.60562,1.29435][0.791113,0.555691,-0.255632][0.974256,0.966619,0][-8.21002,6.06777,1.66392][0.0114449,-0.341174,0.939931][0.959308,0.960347,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.961049,0.959774,0][-7.89351,5.51045,1.42976][0.0131502,-0.38096,0.924498][0.96123,0.960005,0][-8.21002,6.06777,1.66392][0.0114449,-0.341174,0.939931][0.959308,0.960347,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.959175,0.960097,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.961049,0.959774,0][-8.17659,6.14459,1.35359][0.28929,0.353631,-0.889526][0.944782,0.942518,0][-7.87035,5.62236,1.13597][0.247411,0.49273,-0.834269][0.94666,0.942416,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.946594,0.942617,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-8.17659,6.14459,1.35359][0.28929,0.353631,-0.889526][0.944782,0.942518,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.946594,0.942617,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.946594,0.942617,0][-8.14293,5.52671,1.10995][-0.212496,0.270606,-0.938945][0.946563,0.942985,0][-8.44028,6.01152,1.31892][-0.221955,0.267976,-0.93751][0.944803,0.943103,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-8.14293,5.52671,1.10995][-0.212496,0.270606,-0.938945][0.946563,0.942985,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.954439,0.940676,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.95461,0.940854,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.952911,0.941107,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.95461,0.940854,0][-8.47727,5.97134,1.39108][-0.70817,-0.615916,0.34517][0.9527,0.94057,0][-8.17861,5.48285,1.17705][-0.747511,-0.590391,0.304411][0.954285,0.940335,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.954439,0.940676,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.47727,5.97134,1.39108][-0.70817,-0.615916,0.34517][0.9527,0.94057,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.954439,0.940676,0][-8.44028,6.01152,1.31892][-0.660826,-0.458635,-0.594106][0.973852,0.961225,0][-8.14293,5.52671,1.10995][-0.785861,-0.235528,-0.571795][0.975671,0.961116,0][-8.17861,5.48285,1.17705][-0.785861,-0.235528,-0.571795][0.975675,0.96129,0][-8.47727,5.97134,1.39108][-0.660826,-0.458635,-0.594106][0.973843,0.961404,0][-8.44028,6.01152,1.31892][-0.660826,-0.458635,-0.594106][0.973852,0.961225,0][-8.17861,5.48285,1.17705][-0.785861,-0.235528,-0.571795][0.975675,0.96129,0][-8.14293,5.52671,1.10995][-0.785861,-0.235528,-0.571795][0.977134,0.944481,0][-8.11746,5.38343,0.870836][-0.912522,0.300642,-0.27734][0.977383,0.944986,0][-8.191,5.27466,0.994882][-0.912522,0.300642,-0.27734][0.976825,0.944987,0][-8.17861,5.48285,1.17705][-0.785861,-0.235528,-0.571795][0.976867,0.944461,0][-8.14293,5.52671,1.10995][-0.785861,-0.235528,-0.571795][0.977134,0.944481,0][-8.191,5.27466,0.994882][-0.912522,0.300642,-0.27734][0.976825,0.944987,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.934216,0.966925,0][-8.191,5.27466,0.994882][-0.688478,-0.192882,0.699139][0.933152,0.966934,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.933697,0.966386,0][-8.09789,5.46296,1.33669][-0.866057,-0.299044,0.400648][0.940075,0.960784,0][-8.17861,5.48285,1.17705][-0.785861,-0.235528,-0.571795][0.940521,0.960568,0][-8.191,5.27466,0.994882][-0.912522,0.300642,-0.27734][0.941324,0.960768,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.978154,0.950727,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.979408,0.950492,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.979692,0.950874,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.978154,0.950727,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.978184,0.950505,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.979408,0.950492,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.942414,0.956389,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.943576,0.956447,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.942979,0.956958,0][-8.14293,5.52671,1.10995][-0.212496,0.270606,-0.938945][0.942211,0.956708,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.942414,0.956389,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.942979,0.956958,0][-7.87035,5.62236,1.13597][0.247411,0.49273,-0.834269][0.975285,0.957623,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.974723,0.957086,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.978114,0.942204,0][-7.87035,5.62236,1.13597][0.247411,0.49273,-0.834269][0.978194,0.942035,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.979115,0.942535,0][-7.89351,5.51045,1.42976][0.0131502,-0.38096,0.924498][0.96123,0.960005,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.62114,4.95677,1.25594][-0.283651,-0.411454,0.866169][0.963045,0.959607,0][-7.89351,5.51045,1.42976][0.0131502,-0.38096,0.924498][0.96123,0.960005,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.961049,0.959774,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.81715,5.60562,1.29435][0.609508,0.763525,-0.213378][0.975113,0.957937,0][-7.37549,5.18251,1.04193][0.609508,0.763525,-0.213378][0.97331,0.957437,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.87035,5.62236,1.13597][0.247411,0.49273,-0.834269][0.975285,0.957623,0][-7.81715,5.60562,1.29435][0.609508,0.763525,-0.213378][0.975113,0.957937,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.81715,5.60562,1.29435][0.781938,0.208438,0.587475][0.943081,0.950354,0][-7.62114,4.95677,1.25594][0.581851,0.128223,0.803124][0.941066,0.950743,0][-7.37549,5.18251,1.04193][0.581851,0.128223,0.803124][0.941176,0.949996,0][-7.81715,5.60562,1.29435][0.781938,0.208438,0.587475][0.943081,0.950354,0][-7.89351,5.51045,1.42976][0.781938,0.208438,0.587475][0.943052,0.950714,0][-7.62114,4.95677,1.25594][0.581851,0.128223,0.803124][0.941066,0.950743,0][-8.25554,5.25384,0.933799][-0.559994,0.758561,0.333153][0.942972,0.937532,0][-8.191,5.27466,0.994882][-0.559994,0.758561,0.333153][0.943255,0.937544,0][-8.11746,5.38343,0.870836][-0.559994,0.758561,0.333153][0.943199,0.9379,0][-8.18257,5.3617,0.809441][-0.562614,0.758859,0.328022][0.942913,0.937887,0][-8.25554,5.25384,0.933799][-0.559994,0.758561,0.333153][0.942972,0.937532,0][-8.11746,5.38343,0.870836][-0.559994,0.758561,0.333153][0.943199,0.9379,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.968671,0.966056,0][-9.89754,7.00112,0.333299][-0.133514,0.495453,0.858312][0.968777,0.966198,0][-9.76197,7.07089,0.314115][-0.133514,0.495453,0.858312][0.968302,0.9662,0][-9.83181,7.1158,0.277329][-0.441424,0.889751,0.116138][0.96843,0.966057,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.968671,0.966056,0][-9.76197,7.07089,0.314115][-0.133514,0.495453,0.858312][0.968302,0.9662,0][-9.85127,7.11943,0.172862][-0.451872,0.540586,-0.709633][0.980012,0.947037,0][-9.8002,7.07803,0.108805][-0.451872,0.540586,-0.709633][0.979893,0.946872,0][-9.92056,7.01587,0.138097][-0.451872,0.540586,-0.709633][0.980324,0.946876,0][-9.91252,7.0878,0.187766][-0.451874,0.540587,-0.70963][0.980231,0.947039,0][-9.85127,7.11943,0.172862][-0.451872,0.540586,-0.709633][0.980012,0.947037,0][-9.92056,7.01587,0.138097][-0.451872,0.540586,-0.709633][0.980324,0.946876,0][-9.93156,7.07138,0.242071][-0.930646,0.272675,-0.244023][0.973158,0.959144,0][-9.92056,7.01587,0.138097][-0.930646,0.272675,-0.244023][0.972921,0.958977,0][-9.958,6.9836,0.244822][-0.930646,0.272675,-0.244023][0.973282,0.958982,0][-9.93156,7.07138,0.242071][-0.930646,0.272675,-0.244023][0.973158,0.959144,0][-9.91252,7.0878,0.187766][-0.930663,0.272633,-0.244002][0.972975,0.959141,0][-9.92056,7.01587,0.138097][-0.930646,0.272675,-0.244023][0.972921,0.958977,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.974956,0.96712,0][-9.958,6.9836,0.244822][-0.820061,0.26293,0.508298][0.975232,0.966959,0][-9.89754,7.00112,0.333299][-0.133514,0.495453,0.858312][0.975228,0.967175,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.974956,0.96712,0][-9.93156,7.07138,0.242071][-0.435456,0.892551,0.117177][0.974958,0.96701,0][-9.958,6.9836,0.244822][-0.820061,0.26293,0.508298][0.975232,0.966959,0][-9.85127,7.11943,0.172862][-0.451872,0.540586,-0.709633][0.93724,0.960568,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.937386,0.960787,0][-9.8002,7.07803,0.108805][-0.451872,0.540586,-0.709633][0.937074,0.960712,0][-9.85127,7.11943,0.172862][-0.451872,0.540586,-0.709633][0.93724,0.960568,0][-9.81664,7.13028,0.220452][0.244479,0.891559,-0.381251][0.937399,0.960606,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.937386,0.960787,0][-9.81664,7.13028,0.220452][0.244479,0.891559,-0.381251][0.937399,0.960606,0][-9.76197,7.07089,0.314115][0.385509,0.864309,0.323036][0.937723,0.960724,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.937386,0.960787,0][-9.81664,7.13028,0.220452][0.244479,0.891559,-0.381251][0.937399,0.960606,0][-9.83181,7.1158,0.277329][0.385511,0.864309,0.323034][0.937571,0.960574,0][-9.76197,7.07089,0.314115][0.385509,0.864309,0.323036][0.937723,0.960724,0][-9.76197,7.07089,0.314115][0.821214,0.480393,0.307945][0.952387,0.96774,0][-9.64516,6.88107,0.298737][0.821214,0.480393,0.307945][0.953078,0.967787,0][-9.62002,6.91569,0.177688][0.821214,0.480393,0.307945][0.95301,0.968038,0][-9.73213,7.09936,0.202335][0.82325,0.457393,0.33623][0.952344,0.967974,0][-9.76197,7.07089,0.314115][0.821214,0.480393,0.307945][0.952387,0.96774,0][-9.62002,6.91569,0.177688][0.821214,0.480393,0.307945][0.95301,0.968038,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.971604,0.944812,0][-9.62002,6.91569,0.177688][0.641718,0.472741,-0.603915][0.972278,0.944815,0][-9.70491,6.91084,0.0836871][0.641718,0.472741,-0.603915][0.972186,0.945054,0][-9.8002,7.07803,0.108805][-0.451872,0.540586,-0.709633][0.971582,0.945041,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.971604,0.944812,0][-9.70491,6.91084,0.0836871][0.641718,0.472741,-0.603915][0.972186,0.945054,0][-9.89754,7.00112,0.333299][-0.691743,-0.404798,0.598021][0.973414,0.946442,0][-9.87398,6.82368,0.240447][-0.691743,-0.404798,0.598021][0.974011,0.946361,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.973983,0.946592,0][-9.89754,7.00112,0.333299][-0.691743,-0.404798,0.598021][0.973414,0.946442,0][-9.958,6.9836,0.244822][-0.720536,-0.394204,0.570466][0.973493,0.946235,0][-9.87398,6.82368,0.240447][-0.691743,-0.404798,0.598021][0.974011,0.946361,0][-9.958,6.9836,0.244822][-0.930646,0.272675,-0.244023][0.955303,0.950305,0][-9.83966,6.86077,0.124217][-0.823751,-0.422486,-0.378075][0.955301,0.9507,0][-9.87398,6.82368,0.240447][-0.823751,-0.422486,-0.378075][0.955042,0.950536,0][-9.958,6.9836,0.244822][-0.930646,0.272675,-0.244023][0.973196,0.94246,0][-9.92056,7.01587,0.138097][-0.930646,0.272675,-0.244023][0.973558,0.942426,0][-9.83966,6.86077,0.124217][-0.823751,-0.422486,-0.378075][0.973626,0.942771,0][-9.8002,7.07803,0.108805][-0.282268,-0.0167767,-0.959189][0.939382,0.950774,0][-9.70491,6.91084,0.0836871][-0.282268,-0.0167767,-0.959189][0.938785,0.950743,0][-9.83966,6.86077,0.124217][-0.282268,-0.0167767,-0.959189][0.938892,0.950467,0][-9.92056,7.01587,0.138097][-0.222309,-0.0287571,-0.974552][0.939433,0.950508,0][-9.8002,7.07803,0.108805][-0.282268,-0.0167767,-0.959189][0.939382,0.950774,0][-9.83966,6.86077,0.124217][-0.282268,-0.0167767,-0.959189][0.938892,0.950467,0][-9.76197,7.07089,0.314115][0.185667,0.0346999,0.982][0.937591,0.940937,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.936935,0.941194,0][-9.64516,6.88107,0.298737][0.185667,0.0346999,0.982][0.936904,0.940873,0][-9.76197,7.07089,0.314115][0.185667,0.0346999,0.982][0.937591,0.940937,0][-9.89754,7.00112,0.333299][-0.691743,-0.404798,0.598021][0.937558,0.941238,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.936935,0.941194,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.19052,6.98973,-0.303714][-0.291852,0.940957,-0.171528][0.951973,0.949609,0][-9.27539,6.98047,-0.210099][-0.291852,0.940957,-0.171528][0.951977,0.949844,0][-9.20396,7.00741,-0.18384][0.348717,0.847598,0.399969][0.951796,0.949821,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.27539,6.98047,-0.210099][-0.291852,0.940957,-0.171528][0.951977,0.949844,0][-9.13106,6.95172,-0.137436][0.712135,0.113434,0.692818][0.955365,0.964892,0][-9.13486,6.87313,-0.120654][0.712135,0.113434,0.692818][0.955609,0.964855,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.955559,0.965077,0][-9.09176,6.96308,-0.179688][0.712134,0.113433,0.692819][0.95534,0.965008,0][-9.13106,6.95172,-0.137436][0.712135,0.113434,0.692818][0.955365,0.964892,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.955559,0.965077,0][-9.13106,6.95172,-0.137436][0.00719419,0.208472,0.978002][0.963025,0.936461,0][-9.23583,6.91904,-0.129699][0.00719419,0.208472,0.978002][0.962956,0.936674,0][-9.13486,6.87313,-0.120654][0.00719419,0.208472,0.978002][0.962783,0.936484,0][-9.13106,6.95172,-0.137436][0.00719419,0.208472,0.978002][0.963025,0.936461,0][-9.18344,6.97554,-0.142128][0.00719277,0.208476,0.978001][0.963115,0.936559,0][-9.23583,6.91904,-0.129699][0.00719419,0.208472,0.978002][0.962956,0.936674,0][-9.20396,7.00741,-0.18384][0.337038,0.820772,0.461235][0.956761,0.950774,0][-9.27539,6.98047,-0.210099][-0.464648,0.578385,0.670502][0.956525,0.950829,0][-9.23583,6.91904,-0.129699][-0.464648,0.578385,0.670502][0.956537,0.950614,0][-9.18344,6.97554,-0.142128][0.33349,0.823672,0.458638][0.956767,0.950662,0][-9.20396,7.00741,-0.18384][0.337038,0.820772,0.461235][0.956761,0.950774,0][-9.23583,6.91904,-0.129699][-0.464648,0.578385,0.670502][0.956537,0.950614,0][-9.09176,6.96308,-0.179688][0.712134,0.113433,0.692819][0.950667,0.956453,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.950585,0.956306,0][-9.09411,6.95013,-0.288583][0.889697,0.450706,-0.0728229][0.950922,0.956309,0][-9.10991,6.99167,-0.224557][0.889698,0.450705,-0.0728228][0.950842,0.956455,0][-9.09176,6.96308,-0.179688][0.712134,0.113433,0.692819][0.950667,0.956453,0][-9.09411,6.95013,-0.288583][0.889697,0.450706,-0.0728229][0.950922,0.956309,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.09411,6.95013,-0.288583][0.400071,0.810787,-0.42728][0.951687,0.949508,0][-9.19052,6.98973,-0.303714][-0.291852,0.940957,-0.171528][0.951973,0.949609,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.10991,6.99167,-0.224557][0.400068,0.810786,-0.427283][0.951645,0.949647,0][-9.09411,6.95013,-0.288583][0.400071,0.810787,-0.42728][0.951687,0.949508,0][-9.19052,6.98973,-0.303714][-0.291852,0.940957,-0.171528][0.963386,0.948505,0][-9.12552,6.8334,-0.366388][0.320279,0.464227,-0.825781][0.963623,0.948829,0][-9.23994,6.88039,-0.384346][0.320279,0.464227,-0.825781][0.963243,0.948776,0][-9.19052,6.98973,-0.303714][-0.291852,0.940957,-0.171528][0.963386,0.948505,0][-9.09411,6.95013,-0.288583][0.400071,0.810787,-0.42728][0.963706,0.948549,0][-9.12552,6.8334,-0.366388][0.320279,0.464227,-0.825781][0.963623,0.948829,0][-9.09411,6.95013,-0.288583][0.889697,0.450706,-0.0728229][0.971941,0.942516,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.12552,6.8334,-0.366388][0.927079,0.00038614,-0.374867][0.971657,0.942733,0][-9.09411,6.95013,-0.288583][0.889697,0.450706,-0.0728229][0.971941,0.942516,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.972195,0.942605,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.23583,6.91904,-0.129699][-0.464648,0.578385,0.670502][0.956537,0.950614,0][-9.34066,6.86941,-0.273241][-0.822951,0.176748,0.539918][0.956147,0.950836,0][-9.29372,6.7965,-0.17782][-0.822951,0.176748,0.539918][0.95616,0.950581,0][-9.23583,6.91904,-0.129699][-0.464648,0.578385,0.670502][0.956537,0.950614,0][-9.27539,6.98047,-0.210099][-0.464648,0.578385,0.670502][0.956525,0.950829,0][-9.34066,6.86941,-0.273241][-0.822951,0.176748,0.539918][0.956147,0.950836,0][-9.13486,6.87313,-0.120654][0.00719419,0.208472,0.978002][0.962783,0.936484,0][-9.29372,6.7965,-0.17782][-0.207488,-0.27109,0.939925][0.962595,0.936812,0][-9.17389,6.74201,-0.167086][-0.207488,-0.27109,0.939925][0.962389,0.936586,0][-9.13486,6.87313,-0.120654][0.00719419,0.208472,0.978002][0.962783,0.936484,0][-9.23583,6.91904,-0.129699][0.00719419,0.208472,0.978002][0.962956,0.936674,0][-9.29372,6.7965,-0.17782][-0.207488,-0.27109,0.939925][0.962595,0.936812,0][-9.13486,6.87313,-0.120654][0.712135,0.113434,0.692818][0.972429,0.942726,0][-9.17389,6.74201,-0.167086][0.7198,-0.412079,0.55864][0.972236,0.942982,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.972195,0.942605,0][-9.13486,6.87313,-0.120654][0.712135,0.113434,0.692818][0.972429,0.942726,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.19052,6.98973,-0.303714][-0.604549,0.631423,-0.48562][0.941996,0.957444,0][-9.23994,6.88039,-0.384346][-0.604549,0.631423,-0.48562][0.941643,0.957621,0][-9.34066,6.86941,-0.273241][-0.604549,0.631423,-0.48562][0.941453,0.95741,0][-9.27539,6.98047,-0.210099][-0.604548,0.631421,-0.485623][0.941836,0.957265,0][-9.19052,6.98973,-0.303714][-0.604549,0.631423,-0.48562][0.941996,0.957444,0][-9.34066,6.86941,-0.273241][-0.604549,0.631423,-0.48562][0.941453,0.95741,0][-9.23994,6.88039,-0.384346][-0.604549,0.631423,-0.48562][0.941643,0.957621,0][-9.24052,6.70533,-0.479124][-0.611784,0.378161,-0.694776][0.941172,0.957832,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.34066,6.86941,-0.273241][-0.604549,0.631423,-0.48562][0.941453,0.95741,0][-9.23994,6.88039,-0.384346][-0.604549,0.631423,-0.48562][0.941643,0.957621,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.17389,6.74201,-0.167086][0.7198,-0.412079,0.55864][0.955993,0.964853,0][-9.18507,6.5968,-0.187366][0.657638,-0.153616,0.737506][0.956435,0.964851,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.956346,0.96516,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.955935,0.965117,0][-9.17389,6.74201,-0.167086][0.7198,-0.412079,0.55864][0.955993,0.964853,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.956346,0.96516,0][-9.17389,6.74201,-0.167086][-0.207488,-0.27109,0.939925][0.962389,0.936586,0][-9.33191,6.62585,-0.234845][-0.324882,-0.106238,0.939769][0.962078,0.936921,0][-9.18507,6.5968,-0.187366][-0.324882,-0.106238,0.939769][0.961943,0.936637,0][-9.17389,6.74201,-0.167086][-0.207488,-0.27109,0.939925][0.962389,0.936586,0][-9.29372,6.7965,-0.17782][-0.207488,-0.27109,0.939925][0.962595,0.936812,0][-9.33191,6.62585,-0.234845][-0.324882,-0.106238,0.939769][0.962078,0.936921,0][-9.29372,6.7965,-0.17782][-0.926964,0.0853975,0.365301][0.941287,0.957228,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.33191,6.62585,-0.234845][-0.926964,0.0853975,0.365301][0.94077,0.957367,0][-9.29372,6.7965,-0.17782][-0.926964,0.0853975,0.365301][0.941287,0.957228,0][-9.34066,6.86941,-0.273241][-0.604549,0.631423,-0.48562][0.941453,0.95741,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.971851,0.943053,0][-9.10333,6.68454,-0.42589][0.964324,0.170305,-0.202673][0.971428,0.942966,0][-9.12552,6.8334,-0.366388][0.927079,0.00038614,-0.374867][0.971657,0.942733,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.10333,6.68454,-0.42589][0.964324,0.170305,-0.202673][0.971428,0.942966,0][-9.12552,6.8334,-0.366388][0.320279,0.464227,-0.825781][0.963623,0.948829,0][-9.10333,6.68454,-0.42589][0.383846,0.391508,-0.836292][0.963733,0.949141,0][-9.24052,6.70533,-0.479124][0.383846,0.391508,-0.836292][0.963274,0.94917,0][-9.23994,6.88039,-0.384346][0.320279,0.464227,-0.825781][0.963243,0.948776,0][-9.12552,6.8334,-0.366388][0.320279,0.464227,-0.825781][0.963623,0.948829,0][-9.24052,6.70533,-0.479124][0.383846,0.391508,-0.836292][0.963274,0.94917,0][-9.10333,6.68454,-0.42589][0.64882,0.0132444,-0.760827][0.980055,0.940005,0][-9.04238,6.38811,-0.379075][0.64882,0.0132444,-0.760827][0.979161,0.939817,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.24052,6.70533,-0.479124][0.370748,0.0764206,-0.925584][0.980324,0.93979,0][-9.10333,6.68454,-0.42589][0.64882,0.0132444,-0.760827][0.980055,0.940005,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.971851,0.943053,0][-9.04906,6.39049,-0.22633][0.99618,0.0763857,0.0423262][0.971958,0.943491,0][-9.04238,6.38811,-0.379075][0.99618,0.0763857,0.0423262][0.971486,0.943455,0][-9.10333,6.68454,-0.42589][0.964324,0.170305,-0.202673][0.971428,0.942966,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.971851,0.943053,0][-9.04238,6.38811,-0.379075][0.99618,0.0763857,0.0423262][0.971486,0.943455,0][-9.33191,6.62585,-0.234845][-0.926964,0.0853975,0.365301][0.94077,0.957367,0][-9.31296,6.31317,-0.405731][-0.996075,-0.0804985,0.0368023][0.939956,0.957746,0][-9.30701,6.3096,-0.252583][-0.996075,-0.0804985,0.0368023][0.939918,0.957444,0][-9.33191,6.62585,-0.234845][-0.926964,0.0853975,0.365301][0.94077,0.957367,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.31296,6.31317,-0.405731][-0.996075,-0.0804985,0.0368023][0.939956,0.957746,0][-9.18507,6.5968,-0.187366][-0.324882,-0.106238,0.939769][0.961943,0.936637,0][-9.30701,6.3096,-0.252583][-0.623484,0.0883176,0.776832][0.961091,0.936934,0][-9.18531,6.34125,-0.15851][-0.623484,0.0883176,0.776832][0.961151,0.936688,0][-9.18507,6.5968,-0.187366][-0.324882,-0.106238,0.939769][0.961943,0.936637,0][-9.33191,6.62585,-0.234845][-0.324882,-0.106238,0.939769][0.962078,0.936921,0][-9.30701,6.3096,-0.252583][-0.623484,0.0883176,0.776832][0.961091,0.936934,0][-9.18507,6.5968,-0.187366][-0.324882,-0.106238,0.939769][0.961943,0.936637,0][-9.18531,6.34125,-0.15851][-0.623484,0.0883176,0.776832][0.961151,0.936688,0][-9.04906,6.39049,-0.22633][0.413567,0.101769,0.904768][0.961262,0.93641,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.956346,0.96516,0][-9.18507,6.5968,-0.187366][0.657638,-0.153616,0.737506][0.956435,0.964851,0][-9.04906,6.39049,-0.22633][0.99618,0.0763857,0.0423262][0.957118,0.965071,0][-9.24052,6.70533,-0.479124][0.370748,0.0764206,-0.925584][0.980324,0.93979,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.31296,6.31317,-0.405731][-0.359872,-0.106984,-0.926848][0.979378,0.939278,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.965412,0.948505,0][-9.24052,6.70533,-0.479124][-0.611784,0.378161,-0.694776][0.965402,0.948859,0][-9.31296,6.31317,-0.405731][-0.996075,-0.0804985,0.0368023][0.964239,0.948547,0][-9.31296,6.31317,-0.405731][-0.359872,-0.106984,-0.926848][0.979378,0.939278,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.977309,0.939226,0][-9.20273,5.6555,-0.284773][-0.16945,-0.205669,-0.96384][0.977433,0.938818,0][-9.31296,6.31317,-0.405731][-0.359872,-0.106984,-0.926848][0.979378,0.939278,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.977309,0.939226,0][-9.18531,6.34125,-0.15851][0.183771,0.314302,0.931366][0.932834,0.944574,0][-9.1243,5.76063,0.0253895][0.183771,0.314302,0.931366][0.931099,0.944918,0][-8.95735,5.8368,-0.0332535][0.183771,0.314302,0.931366][0.931112,0.944554,0][-9.04906,6.39049,-0.22633][0.308996,0.358375,0.880959][0.932808,0.944288,0][-9.18531,6.34125,-0.15851][0.183771,0.314302,0.931366][0.932834,0.944574,0][-8.95735,5.8368,-0.0332535][0.183771,0.314302,0.931366][0.931112,0.944554,0][-9.30701,6.3096,-0.252583][-0.77723,0.0585418,0.626487][0.976022,0.946529,0][-9.23522,5.67971,-0.104656][-0.77723,0.0585418,0.626487][0.977892,0.946885,0][-9.1243,5.76063,0.0253895][-0.77723,0.0585418,0.626487][0.977614,0.947215,0][-9.18531,6.34125,-0.15851][0.183771,0.314302,0.931366][0.932834,0.944574,0][-9.30701,6.3096,-0.252583][-0.630173,0.173485,0.756826][0.932894,0.944821,0][-9.1243,5.76063,0.0253895][0.183771,0.314302,0.931366][0.931099,0.944918,0][-9.30701,6.3096,-0.252583][-0.996075,-0.0804985,0.0368023][0.939918,0.957444,0][-9.20273,5.6555,-0.284773][-0.976568,-0.147999,-0.156243][0.938222,0.95759,0][-9.23522,5.67971,-0.104656][-0.976568,-0.147999,-0.156243][0.938205,0.957233,0][-9.30701,6.3096,-0.252583][-0.996075,-0.0804985,0.0368023][0.939918,0.957444,0][-9.31296,6.31317,-0.405731][-0.996075,-0.0804985,0.0368023][0.939956,0.957746,0][-9.20273,5.6555,-0.284773][-0.976568,-0.147999,-0.156243][0.938222,0.95759,0][-9.04906,6.39049,-0.22633][0.99618,0.0763857,0.0423262][0.971958,0.943491,0][-8.95735,5.8368,-0.0332535][0.946551,0.234134,0.22186][0.972388,0.944447,0][-8.90923,5.80854,-0.208733][0.946551,0.234134,0.22186][0.971844,0.944417,0][-9.04238,6.38811,-0.379075][0.99618,0.0763857,0.0423262][0.971486,0.943455,0][-9.04906,6.39049,-0.22633][0.99618,0.0763857,0.0423262][0.971958,0.943491,0][-8.90923,5.80854,-0.208733][0.946551,0.234134,0.22186][0.971844,0.944417,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.978156,0.948269,0][-8.90923,5.80854,-0.208733][0.780486,0.0450749,-0.623546][0.976138,0.948353,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.97615,0.947999,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.04238,6.38811,-0.379075][0.64882,0.0132444,-0.760827][0.979161,0.939817,0][-8.90923,5.80854,-0.208733][0.780486,0.0450749,-0.623546][0.97739,0.939473,0][-9.00452,5.72356,-0.334142][0.730903,0.209493,-0.649534][0.948986,0.966837,0][-8.66703,5.44223,-0.0451085][0.730903,0.209493,-0.649534][0.947456,0.967208,0][-8.74325,5.28415,-0.181867][0.730903,0.209493,-0.649534][0.947328,0.966775,0][-9.00452,5.72356,-0.334142][0.730903,0.209493,-0.649534][0.948986,0.966837,0][-8.90923,5.80854,-0.208733][0.721552,0.178255,-0.66902][0.948914,0.967189,0][-8.66703,5.44223,-0.0451085][0.730903,0.209493,-0.649534][0.947456,0.967208,0][-8.90923,5.80854,-0.208733][0.946551,0.234134,0.22186][0.958969,0.965174,0][-8.77074,5.52447,0.141666][0.784213,0.595853,0.173114][0.959941,0.964834,0][-8.66703,5.44223,-0.0451085][0.784213,0.595853,0.173114][0.96021,0.965233,0][-8.90923,5.80854,-0.208733][0.946551,0.234134,0.22186][0.958969,0.965174,0][-8.95735,5.8368,-0.0332535][0.946551,0.234134,0.22186][0.958885,0.964861,0][-8.77074,5.52447,0.141666][0.784213,0.595853,0.173114][0.959941,0.964834,0][-9.20273,5.6555,-0.284773][-0.976568,-0.147999,-0.156243][0.959735,0.938189,0][-8.98835,5.18519,-0.139692][-0.87025,-0.454952,-0.188901][0.958474,0.938402,0][-9.07373,5.26681,0.0570909][-0.87025,-0.454952,-0.188901][0.958407,0.937955,0][-9.23522,5.67971,-0.104656][-0.976568,-0.147999,-0.156243][0.959513,0.937852,0][-9.20273,5.6555,-0.284773][-0.976568,-0.147999,-0.156243][0.959735,0.938189,0][-9.07373,5.26681,0.0570909][-0.87025,-0.454952,-0.188901][0.958407,0.937955,0][-9.23522,5.67971,-0.104656][-0.77723,0.0585418,0.626487][0.977892,0.946885,0][-9.07373,5.26681,0.0570909][-0.797935,-0.0779336,0.597683][0.979121,0.94737,0][-8.97918,5.42427,0.203858][-0.797935,-0.0779336,0.597683][0.978596,0.947694,0][-9.1243,5.76063,0.0253895][-0.77723,0.0585418,0.626487][0.977614,0.947215,0][-9.23522,5.67971,-0.104656][-0.77723,0.0585418,0.626487][0.977892,0.946885,0][-8.97918,5.42427,0.203858][-0.797935,-0.0779336,0.597683][0.978596,0.947694,0][-9.1243,5.76063,0.0253895][0.183771,0.314302,0.931366][0.931099,0.944918,0][-8.97918,5.42427,0.203858][0.0314711,0.479021,0.877239][0.929959,0.944917,0][-8.77074,5.52447,0.141666][0.0314711,0.479021,0.877239][0.929989,0.944459,0][-8.95735,5.8368,-0.0332535][0.183771,0.314302,0.931366][0.931112,0.944554,0][-9.1243,5.76063,0.0253895][0.183771,0.314302,0.931366][0.931099,0.944918,0][-8.77074,5.52447,0.141666][0.0314711,0.479021,0.877239][0.929989,0.944459,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.977309,0.939226,0][-8.74325,5.28415,-0.181867][-0.0243656,-0.340252,-0.940019][0.975718,0.93924,0][-8.98835,5.18519,-0.139692][-0.0243656,-0.340252,-0.940019][0.975831,0.938721,0][-9.20273,5.6555,-0.284773][-0.16945,-0.205669,-0.96384][0.977433,0.938818,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.977309,0.939226,0][-8.98835,5.18519,-0.139692][-0.0243656,-0.340252,-0.940019][0.975831,0.938721,0][-8.74325,5.28415,-0.181867][-0.0243656,-0.340252,-0.940019][0.975718,0.93924,0][-8.42135,5.03412,0.0928628][0.106677,-0.669946,-0.734705][0.974544,0.939546,0][-8.62698,4.85389,0.227357][0.106677,-0.669947,-0.734705][0.974376,0.939015,0][-8.98835,5.18519,-0.139692][-0.0243656,-0.340252,-0.940019][0.975831,0.938721,0][-8.74325,5.28415,-0.181867][-0.0243656,-0.340252,-0.940019][0.975718,0.93924,0][-8.62698,4.85389,0.227357][0.106677,-0.669947,-0.734705][0.974376,0.939015,0][-8.97918,5.42427,0.203858][0.0314711,0.479021,0.877239][0.929959,0.944917,0][-8.79098,5.12092,0.509137][-0.0837447,0.68057,0.727881][0.92886,0.944812,0][-8.55137,5.33613,0.335486][-0.0837447,0.68057,0.727881][0.929181,0.944207,0][-8.77074,5.52447,0.141666][0.0314711,0.479021,0.877239][0.929989,0.944459,0][-8.97918,5.42427,0.203858][0.0314711,0.479021,0.877239][0.929959,0.944917,0][-8.55137,5.33613,0.335486][-0.0837447,0.68057,0.727881][0.929181,0.944207,0][-9.07373,5.26681,0.0570909][-0.797935,-0.0779336,0.597683][0.979121,0.94737,0][-8.77382,4.93529,0.392556][-0.84272,-0.340002,0.417399][0.980059,0.948285,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.979426,0.948407,0][-8.97918,5.42427,0.203858][-0.797935,-0.0779336,0.597683][0.978596,0.947694,0][-9.07373,5.26681,0.0570909][-0.797935,-0.0779336,0.597683][0.979121,0.94737,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.979426,0.948407,0][-8.98835,5.18519,-0.139692][-0.87025,-0.454952,-0.188901][0.958474,0.938402,0][-8.62698,4.85389,0.227357][-0.591899,-0.794701,-0.13456][0.956627,0.938339,0][-8.77382,4.93529,0.392556][-0.591899,-0.794701,-0.13456][0.956757,0.937881,0][-9.07373,5.26681,0.0570909][-0.87025,-0.454952,-0.188901][0.958407,0.937955,0][-8.98835,5.18519,-0.139692][-0.87025,-0.454952,-0.188901][0.958474,0.938402,0][-8.77382,4.93529,0.392556][-0.591899,-0.794701,-0.13456][0.956757,0.937881,0][-8.66703,5.44223,-0.0451085][0.723618,0.689647,-0.0276413][0.977295,0.955283,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.976399,0.955709,0][-8.66703,5.44223,-0.0451085][0.723618,0.689647,-0.0276413][0.977295,0.955283,0][-8.77074,5.52447,0.141666][0.641699,0.766728,0.0187402][0.977696,0.955653,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-8.74325,5.28415,-0.181867][0.749792,0.344838,-0.564711][0.97812,0.945196,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.978634,0.944346,0][-8.42135,5.03412,0.0928628][0.749792,0.344838,-0.564711][0.979211,0.944512,0][-8.74325,5.28415,-0.181867][0.772208,0.159679,-0.614977][0.961885,0.940459,0][-8.66703,5.44223,-0.0451085][0.772208,0.159679,-0.614977][0.962264,0.94009,0][-8.45097,5.22413,0.169557][0.772208,0.159679,-0.614977][0.963317,0.940409,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.936935,0.941194,0][-9.53473,6.19174,0.373819][0.274929,0.180023,0.944461][0.934797,0.941211,0][-9.36697,6.27746,0.308647][0.274929,0.180023,0.944461][0.934836,0.940839,0][-9.64516,6.88107,0.298737][0.185667,0.0346999,0.982][0.936904,0.940873,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.936935,0.941194,0][-9.36697,6.27746,0.308647][0.274929,0.180023,0.944461][0.934836,0.940839,0][-9.83966,6.86077,0.124217][-0.282268,-0.0167767,-0.959189][0.938892,0.950467,0][-9.39413,6.18519,0.0471945][-0.307513,-0.0948514,-0.946805][0.936374,0.950442,0][-9.56162,6.10186,0.10994][-0.307513,-0.0948514,-0.946805][0.936453,0.950075,0][-9.83966,6.86077,0.124217][-0.282268,-0.0167767,-0.959189][0.938892,0.950467,0][-9.70491,6.91084,0.0836871][-0.282268,-0.0167767,-0.959189][0.938785,0.950743,0][-9.39413,6.18519,0.0471945][-0.307513,-0.0948514,-0.946805][0.936374,0.950442,0][-9.83966,6.86077,0.124217][-0.823751,-0.422486,-0.378075][0.953198,0.952033,0][-9.56162,6.10186,0.10994][-0.938865,-0.343548,-0.022525][0.951472,0.952319,0][-9.5771,6.13419,0.262429][-0.938865,-0.343548,-0.022525][0.951448,0.952012,0][-9.87398,6.82368,0.240447][-0.823751,-0.422486,-0.378075][0.973238,0.942817,0][-9.83966,6.86077,0.124217][-0.823751,-0.422486,-0.378075][0.973626,0.942771,0][-9.5771,6.13419,0.262429][-0.938865,-0.343548,-0.022525][0.973227,0.944305,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.973983,0.946592,0][-9.5771,6.13419,0.262429][-0.824523,-0.309574,0.47363][0.976202,0.946869,0][-9.53473,6.19174,0.373819][0.274929,0.180023,0.944461][0.975983,0.947078,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.973983,0.946592,0][-9.87398,6.82368,0.240447][-0.691743,-0.404798,0.598021][0.974011,0.946361,0][-9.5771,6.13419,0.262429][-0.824523,-0.309574,0.47363][0.976202,0.946869,0][-9.70491,6.91084,0.0836871][0.641718,0.472741,-0.603915][0.972186,0.945054,0][-9.34243,6.25207,0.173353][0.780695,0.360038,-0.510772][0.974486,0.944783,0][-9.39413,6.18519,0.0471945][0.780695,0.360038,-0.510772][0.974621,0.945069,0][-9.70491,6.91084,0.0836871][0.641718,0.472741,-0.603915][0.972186,0.945054,0][-9.62002,6.91569,0.177688][0.641718,0.472741,-0.603915][0.972278,0.944815,0][-9.34243,6.25207,0.173353][0.780695,0.360038,-0.510772][0.974486,0.944783,0][-9.62002,6.91569,0.177688][0.821214,0.480393,0.307945][0.95301,0.968038,0][-9.36697,6.27746,0.308647][0.918628,0.383632,0.0945969][0.955139,0.967776,0][-9.34243,6.25207,0.173353][0.918628,0.383632,0.0945969][0.955231,0.968039,0][-9.62002,6.91569,0.177688][0.821214,0.480393,0.307945][0.95301,0.968038,0][-9.64516,6.88107,0.298737][0.821214,0.480393,0.307945][0.953078,0.967787,0][-9.36697,6.27746,0.308647][0.918628,0.383632,0.0945969][0.955139,0.967776,0][-9.34243,6.25207,0.173353][0.918628,0.383632,0.0945969][0.955231,0.968039,0][-9.10446,5.84983,0.37578][0.79188,0.573752,0.209129][0.956706,0.967692,0][-9.00105,5.74308,0.277109][0.79188,0.573752,0.209129][0.957143,0.96791,0][-9.34243,6.25207,0.173353][0.918628,0.383632,0.0945969][0.955231,0.968039,0][-9.36697,6.27746,0.308647][0.918628,0.383632,0.0945969][0.955139,0.967776,0][-9.10446,5.84983,0.37578][0.79188,0.573752,0.209129][0.956706,0.967692,0][-9.39413,6.18519,0.0471945][0.780695,0.360038,-0.510772][0.980324,0.955466,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.978634,0.955922,0][-8.96555,5.57766,0.141278][0.779266,0.489045,-0.391893][0.978316,0.955652,0][-9.39413,6.18519,0.0471945][0.780695,0.360038,-0.510772][0.974621,0.945069,0][-9.34243,6.25207,0.173353][0.780695,0.360038,-0.510772][0.974486,0.944783,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.97635,0.944461,0][-9.5771,6.13419,0.262429][-0.824523,-0.309574,0.47363][0.976202,0.946869,0][-9.24261,5.53321,0.434166][-0.696107,-0.189566,0.692459][0.978058,0.947629,0][-9.23448,5.72401,0.494565][-0.696107,-0.189566,0.692459][0.977447,0.947708,0][-9.53473,6.19174,0.373819][0.274929,0.180023,0.944461][0.975983,0.947078,0][-9.5771,6.13419,0.262429][-0.824523,-0.309574,0.47363][0.976202,0.946869,0][-9.23448,5.72401,0.494565][-0.696107,-0.189566,0.692459][0.977447,0.947708,0][-9.56162,6.10186,0.10994][-0.938865,-0.343548,-0.022525][0.951472,0.952319,0][-9.14804,5.41375,0.273536][-0.841856,-0.530091,-0.101399][0.949339,0.952303,0][-9.24261,5.53321,0.434166][-0.841856,-0.530091,-0.101399][0.949638,0.951932,0][-9.5771,6.13419,0.262429][-0.938865,-0.343548,-0.022525][0.951448,0.952012,0][-9.56162,6.10186,0.10994][-0.938865,-0.343548,-0.022525][0.951472,0.952319,0][-9.24261,5.53321,0.434166][-0.841856,-0.530091,-0.101399][0.949638,0.951932,0][-9.56162,6.10186,0.10994][-0.307513,-0.0948514,-0.946805][0.936453,0.950075,0][-8.96555,5.57766,0.141278][-0.29101,-0.38331,-0.876577][0.93406,0.950466,0][-9.14804,5.41375,0.273536][-0.29101,-0.38331,-0.876577][0.933958,0.949984,0][-9.56162,6.10186,0.10994][-0.307513,-0.0948514,-0.946805][0.936453,0.950075,0][-9.39413,6.18519,0.0471945][-0.307513,-0.0948514,-0.946805][0.936374,0.950442,0][-8.96555,5.57766,0.141278][-0.29101,-0.38331,-0.876577][0.93406,0.950466,0][-9.53473,6.19174,0.373819][0.341296,0.434282,0.833617][0.932447,0.959539,0][-9.23448,5.72401,0.494565][0.341296,0.434282,0.833617][0.930734,0.959694,0][-9.10446,5.84983,0.37578][0.341296,0.434282,0.833617][0.930766,0.959336,0][-9.36697,6.27746,0.308647][0.219238,0.281255,0.934254][0.932308,0.959176,0][-9.53473,6.19174,0.373819][0.341296,0.434282,0.833617][0.932447,0.959539,0][-9.10446,5.84983,0.37578][0.341296,0.434282,0.833617][0.930766,0.959336,0][-9.23448,5.72401,0.494565][0.341296,0.434282,0.833617][0.930734,0.959694,0][-8.83524,5.47049,0.695786][0.054535,0.672039,0.738505][0.929325,0.959424,0][-8.72501,5.5798,0.588168][0.054535,0.672039,0.738505][0.929358,0.959117,0][-9.10446,5.84983,0.37578][0.341296,0.434282,0.833617][0.930766,0.959336,0][-9.23448,5.72401,0.494565][0.341296,0.434282,0.833617][0.930734,0.959694,0][-8.72501,5.5798,0.588168][0.054535,0.672039,0.738505][0.929358,0.959117,0][-9.14804,5.41375,0.273536][-0.29101,-0.38331,-0.876577][0.933958,0.949984,0][-8.55137,5.33613,0.335486][-0.000776419,-0.627442,-0.778663][0.932712,0.950874,0][-8.79098,5.12092,0.509137][-0.000776419,-0.627442,-0.778663][0.932579,0.950242,0][-9.14804,5.41375,0.273536][-0.29101,-0.38331,-0.876577][0.933958,0.949984,0][-8.96555,5.57766,0.141278][-0.29101,-0.38331,-0.876577][0.93406,0.950466,0][-8.55137,5.33613,0.335486][-0.000776419,-0.627442,-0.778663][0.932712,0.950874,0][-9.14804,5.41375,0.273536][-0.716752,-0.624751,0.309763][0.975768,0.962163,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.974195,0.962138,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.97434,0.961783,0][-9.24261,5.53321,0.434166][-0.696107,-0.189566,0.692459][0.975926,0.961758,0][-9.14804,5.41375,0.273536][-0.716752,-0.624751,0.309763][0.975768,0.962163,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.97434,0.961783,0][-9.24261,5.53321,0.434166][-0.696107,-0.189566,0.692459][0.980117,0.959331,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.978688,0.959522,0][-8.83524,5.47049,0.695786][-0.549891,-0.130029,0.825053][0.978872,0.959132,0][-9.23448,5.72401,0.494565][-0.696107,-0.189566,0.692459][0.980324,0.958977,0][-9.24261,5.53321,0.434166][-0.696107,-0.189566,0.692459][0.980117,0.959331,0][-8.83524,5.47049,0.695786][-0.549891,-0.130029,0.825053][0.978872,0.959132,0][-8.96555,5.57766,0.141278][0.779266,0.489045,-0.391893][0.978316,0.955652,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-8.96555,5.57766,0.141278][0.779266,0.489045,-0.391893][0.978316,0.955652,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.978634,0.955922,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.978634,0.955922,0][-8.72501,5.5798,0.588168][0.53598,0.843592,-0.0328348][0.97764,0.956538,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.978634,0.955922,0][-9.10446,5.84983,0.37578][0.630453,0.759373,-0.160878][0.979066,0.956117,0][-8.72501,5.5798,0.588168][0.53598,0.843592,-0.0328348][0.97764,0.956538,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.978634,0.944346,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.979691,0.943198,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.980324,0.943226,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.976399,0.955709,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.974565,0.956446,0][-8.42135,5.03412,0.0928628][0.749792,0.344838,-0.564711][0.934077,0.96084,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-7.60408,4.82153,0.455876][0.456356,0.513418,-0.726733][0.93656,0.96029,0][-8.42135,5.03412,0.0928628][0.749792,0.344838,-0.564711][0.934077,0.96084,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.933672,0.96056,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-8.62698,4.85389,0.227357][-0.518145,-0.726339,0.451617][0.93559,0.957882,0][-7.78734,4.54636,0.696088][-0.518145,-0.726339,0.451617][0.932506,0.957529,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-8.77382,4.93529,0.392556][-0.84272,-0.340002,0.417399][0.935932,0.95747,0][-8.62698,4.85389,0.227357][-0.518145,-0.726339,0.451617][0.93559,0.957882,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-8.77382,4.93529,0.392556][-0.84272,-0.340002,0.417399][0.935932,0.95747,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.933388,0.956961,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.979426,0.948407,0][-8.77382,4.93529,0.392556][-0.84272,-0.340002,0.417399][0.980059,0.948285,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.980324,0.95001,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.962726,0.95902,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.963387,0.958977,0][-7.62114,4.95677,1.25594][-0.283651,-0.411454,0.866169][0.963045,0.959607,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.963387,0.958977,0][-7.37743,4.8208,1.30345][-0.45404,-0.36468,0.812931][0.963882,0.959756,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.963387,0.958977,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.96392,0.959001,0][-7.37743,4.8208,1.30345][-0.45404,-0.36468,0.812931][0.963882,0.959756,0][-7.62114,4.95677,1.25594][-0.283651,-0.411454,0.866169][0.963045,0.959607,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.963387,0.958977,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.932836,0.956747,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.933388,0.956961,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.932292,0.956918,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.932836,0.956747,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.932292,0.956918,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-7.78734,4.54636,0.696088][-0.518145,-0.726339,0.451617][0.932506,0.957529,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.931781,0.956974,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.932292,0.956918,0][-7.78734,4.54636,0.696088][-0.518145,-0.726339,0.451617][0.932506,0.957529,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.935724,0.959717,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.936404,0.959708,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.935393,0.960005,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.935724,0.959717,0][-7.60408,4.82153,0.455876][0.456356,0.513418,-0.726733][0.93656,0.96029,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.936404,0.959708,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.936874,0.959657,0][-7.60408,4.82153,0.455876][0.456356,0.513418,-0.726733][0.93656,0.96029,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.936404,0.959708,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.973495,0.956652,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.37549,5.18251,1.04193][0.609508,0.763525,-0.213378][0.97331,0.957437,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.973495,0.956652,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.974169,0.956699,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.973019,0.956671,0][-7.37549,5.18251,1.04193][0.609508,0.763525,-0.213378][0.97331,0.957437,0][-7.19417,5.09597,1.06324][0.439532,0.848018,-0.296103][0.972685,0.957479,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.973019,0.956671,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.973495,0.956652,0][-7.37549,5.18251,1.04193][0.609508,0.763525,-0.213378][0.97331,0.957437,0][-7.19417,5.09597,1.06324][0.169441,0.581662,0.795587][0.964086,0.950564,0][-7.62114,4.95677,1.25594][0.169441,0.581662,0.795587][0.963188,0.949783,0][-7.37743,4.8208,1.30345][0.169441,0.581662,0.795587][0.964068,0.949755,0][-7.19417,5.09597,1.06324][0.169441,0.581662,0.795587][0.964086,0.950564,0][-7.37549,5.18251,1.04193][0.177082,0.568773,0.803206][0.963457,0.950549,0][-7.62114,4.95677,1.25594][0.169441,0.581662,0.795587][0.963188,0.949783,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-8.18257,5.3617,0.809441][0.372077,0.923786,-0.0904329][0.975823,0.956976,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-8.72501,5.5798,0.588168][0.53598,0.843592,-0.0328348][0.97764,0.956538,0][-8.18257,5.3617,0.809441][0.372077,0.923786,-0.0904329][0.975823,0.956976,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.974565,0.956446,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.979426,0.948407,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.980324,0.95001,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.979704,0.949904,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.97434,0.961783,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.974195,0.962138,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.97188,0.961952,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.978688,0.959522,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.976356,0.959405,0][-8.25554,5.25384,0.933799][-0.418383,-0.250499,0.873044][0.976948,0.959082,0][-8.83524,5.47049,0.695786][-0.549891,-0.130029,0.825053][0.978872,0.959132,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.978688,0.959522,0][-8.25554,5.25384,0.933799][-0.418383,-0.250499,0.873044][0.976948,0.959082,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.961962,0.959334,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.961874,0.95909,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.962726,0.95902,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.961962,0.959334,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.962726,0.95902,0][-8.191,5.27466,0.994882][-0.688478,-0.192882,0.699139][0.976788,0.958994,0][-8.25554,5.25384,0.933799][-0.418383,-0.250499,0.873044][0.976948,0.959082,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.976356,0.959405,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.979643,0.950176,0][-8.191,5.27466,0.994882][-0.688478,-0.192882,0.699139][0.978904,0.949917,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.979704,0.949904,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.933558,0.956589,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.933859,0.956785,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.933388,0.956961,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.932836,0.956747,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.933558,0.956589,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.933388,0.956961,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.975668,0.957098,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-8.18257,5.3617,0.809441][0.372077,0.923786,-0.0904329][0.975823,0.956976,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.975668,0.957098,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.974565,0.956446,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.974169,0.956699,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.974565,0.956446,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.974169,0.956699,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.974723,0.957086,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.974169,0.956699,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.974723,0.957086,0][-8.42135,5.03412,0.0928628][0.106677,-0.669946,-0.734705][0.961942,0.938007,0][-7.60408,4.82153,0.455876][0.129987,-0.699766,-0.702447][0.964802,0.937984,0][-7.78734,4.54636,0.696088][0.129987,-0.699766,-0.702447][0.964805,0.938794,0][-8.62698,4.85389,0.227357][0.106677,-0.669947,-0.734705][0.974376,0.939015,0][-8.42135,5.03412,0.0928628][0.106677,-0.669946,-0.734705][0.974544,0.939546,0][-7.78734,4.54636,0.696088][0.129987,-0.699766,-0.702447][0.972244,0.940154,0][-8.72501,5.5798,0.588168][0.054535,0.672039,0.738505][0.941407,0.937915,0][-8.25554,5.25384,0.933799][-0.559994,0.758561,0.333153][0.942972,0.937532,0][-8.18257,5.3617,0.809441][-0.562614,0.758859,0.328022][0.942913,0.937887,0][-8.72501,5.5798,0.588168][0.054535,0.672039,0.738505][0.941407,0.937915,0][-8.83524,5.47049,0.695786][0.054535,0.672039,0.738505][0.941349,0.937543,0][-8.25554,5.25384,0.933799][-0.559994,0.758561,0.333153][0.942972,0.937532,0][-7.266,3.54339,-1.51719][-0.201239,0.829347,-0.521236][0.949999,0.935568,0][-7.17719,3.49414,-1.40896][0.660319,0.719738,-0.214376][0.95021,0.93583,0][-7.149,3.42566,-1.55203][0.660319,0.719738,-0.214376][0.949733,0.935835,0][-7.24619,3.51436,-1.5765][-0.262728,0.760199,-0.594198][0.949794,0.935585,0][-7.266,3.54339,-1.51719][-0.201239,0.829347,-0.521236][0.949999,0.935568,0][-7.149,3.42566,-1.55203][0.660319,0.719738,-0.214376][0.949733,0.935835,0][-7.29433,3.4744,-1.60634][0.38015,0.11043,-0.918309][0.939222,0.965238,0][-7.149,3.42566,-1.55203][0.38015,0.11043,-0.918309][0.938842,0.965422,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.29433,3.4744,-1.60634][0.38015,0.11043,-0.918309][0.939222,0.965238,0][-7.24619,3.51436,-1.5765][0.398781,0.189437,-0.897266][0.93924,0.965362,0][-7.149,3.42566,-1.55203][0.38015,0.11043,-0.918309][0.938842,0.965422,0][-7.35007,3.46926,-1.58806][-0.951462,0.164645,-0.260024][0.92935,0.96506,0][-7.3812,3.32573,-1.56504][-0.951462,0.164645,-0.260024][0.929484,0.965335,0][-7.40476,3.40293,-1.42995][-0.951462,0.164645,-0.260024][0.929024,0.965347,0][-7.35919,3.50477,-1.52664][-0.949904,0.187974,-0.249698][0.92914,0.965064,0][-7.35007,3.46926,-1.58806][-0.951462,0.164645,-0.260024][0.92935,0.96506,0][-7.40476,3.40293,-1.42995][-0.951462,0.164645,-0.260024][0.929024,0.965347,0][-7.35919,3.50477,-1.52664][-0.662172,0.650132,0.372636][0.97864,0.946394,0][-7.40476,3.40293,-1.42995][-0.662172,0.650132,0.372636][0.979026,0.946235,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.979119,0.946545,0][-7.30201,3.54235,-1.50494][-0.603656,0.715978,0.350678][0.978673,0.946534,0][-7.35919,3.50477,-1.52664][-0.662172,0.650132,0.372636][0.97864,0.946394,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.979119,0.946545,0][-7.3812,3.32573,-1.56504][-0.951462,0.164645,-0.260024][0.930708,0.965003,0][-7.16856,2.92735,-1.34249][-0.879507,-0.475753,-0.0112942][0.932023,0.965081,0][-7.20031,2.98312,-1.21927][-0.879507,-0.475753,-0.0112942][0.932047,0.965346,0][-7.40476,3.40293,-1.42995][-0.951462,0.164645,-0.260024][0.930744,0.96529,0][-7.3812,3.32573,-1.56504][-0.951462,0.164645,-0.260024][0.930708,0.965003,0][-7.20031,2.98312,-1.21927][-0.879507,-0.475753,-0.0112942][0.932047,0.965346,0][-7.40476,3.40293,-1.42995][-0.705742,0.0117857,0.708371][0.961493,0.946824,0][-7.20031,2.98312,-1.21927][-0.705742,0.0117857,0.708371][0.962076,0.947769,0][-7.12114,3.09626,-1.14227][-0.705742,0.0117857,0.708371][0.961592,0.947827,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.979119,0.946545,0][-7.40476,3.40293,-1.42995][-0.662172,0.650132,0.372636][0.979026,0.946235,0][-7.12114,3.09626,-1.14227][-0.558376,0.231003,0.796777][0.980324,0.946375,0][-7.17719,3.49414,-1.40896][0.902514,0.427808,0.0494794][0.967792,0.94826,0][-7.01466,3.1246,-1.17845][0.902514,0.427808,0.0494794][0.967704,0.947507,0][-6.97683,3.06082,-1.3169][0.902514,0.427808,0.0494794][0.968169,0.947555,0][-7.149,3.42566,-1.55203][0.909102,0.416092,-0.0200108][0.968258,0.948324,0][-7.17719,3.49414,-1.40896][0.902514,0.427808,0.0494794][0.967792,0.94826,0][-6.97683,3.06082,-1.3169][0.902514,0.427808,0.0494794][0.968169,0.947555,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.96297,0.961129,0][-6.97683,3.06082,-1.3169][0.731781,0.0224297,-0.68117][0.964487,0.961116,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.964415,0.961367,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.149,3.42566,-1.55203][0.38015,0.11043,-0.918309][0.938842,0.965422,0][-6.97683,3.06082,-1.3169][0.731781,0.0224297,-0.68117][0.937602,0.965297,0][-6.97683,3.06082,-1.3169][0.902514,0.427808,0.0494794][0.968169,0.947555,0][-6.81888,2.86859,-0.984941][0.718127,0.69334,0.0597743][0.967682,0.946824,0][-6.77067,2.83281,-1.14907][0.718127,0.69334,0.0597743][0.968211,0.946903,0][-6.97683,3.06082,-1.3169][0.902514,0.427808,0.0494794][0.968169,0.947555,0][-7.01466,3.1246,-1.17845][0.902514,0.427808,0.0494794][0.967704,0.947507,0][-6.81888,2.86859,-0.984941][0.718127,0.69334,0.0597743][0.967682,0.946824,0][-7.03813,2.97097,-1.38571][0.712993,0.276876,-0.64419][0.956262,0.943103,0][-6.77067,2.83281,-1.14907][0.712992,0.276876,-0.64419][0.956308,0.942344,0][-6.8143,2.72313,-1.2445][0.712992,0.276876,-0.64419][0.956748,0.942454,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.964415,0.961367,0][-6.97683,3.06082,-1.3169][0.731781,0.0224297,-0.68117][0.964487,0.961116,0][-6.77067,2.83281,-1.14907][0.68491,0.08678,-0.723441][0.965567,0.961185,0][-7.16856,2.92735,-1.34249][-0.879507,-0.475753,-0.0112942][0.932023,0.965081,0][-6.93165,2.63676,-1.20584][-0.791835,-0.604436,0.0874963][0.933153,0.965027,0][-6.95787,2.69268,-1.05684][-0.791835,-0.604436,0.0874963][0.933226,0.965333,0][-7.20031,2.98312,-1.21927][-0.879507,-0.475753,-0.0112942][0.932047,0.965346,0][-7.16856,2.92735,-1.34249][-0.879507,-0.475753,-0.0112942][0.932023,0.965081,0][-6.95787,2.69268,-1.05684][-0.791835,-0.604436,0.0874963][0.933226,0.965333,0][-7.20031,2.98312,-1.21927][-0.705742,0.0117857,0.708371][0.962076,0.947769,0][-6.95787,2.69268,-1.05684][-0.700904,-0.202623,0.68387][0.962333,0.948559,0][-6.89732,2.81764,-0.957759][-0.700904,-0.202623,0.68387][0.961815,0.948609,0][-7.12114,3.09626,-1.14227][-0.705742,0.0117857,0.708371][0.961592,0.947827,0][-7.20031,2.98312,-1.21927][-0.705742,0.0117857,0.708371][0.962076,0.947769,0][-6.89732,2.81764,-0.957759][-0.700904,-0.202623,0.68387][0.961815,0.948609,0][-6.93165,2.63676,-1.20584][-0.791835,-0.604436,0.0874963][0.933153,0.965027,0][-6.68131,2.42205,-1.07766][-0.68964,-0.704822,0.166199][0.934216,0.964976,0][-6.73738,2.51567,-0.913245][-0.68964,-0.704822,0.166199][0.934191,0.965347,0][-6.95787,2.69268,-1.05684][-0.791835,-0.604436,0.0874963][0.933226,0.965333,0][-6.93165,2.63676,-1.20584][-0.791835,-0.604436,0.0874963][0.933153,0.965027,0][-6.73738,2.51567,-0.913245][-0.68964,-0.704822,0.166199][0.934191,0.965347,0][-6.95787,2.69268,-1.05684][-0.700904,-0.202623,0.68387][0.962333,0.948559,0][-6.73738,2.51567,-0.913245][-0.654466,-0.231263,0.719855][0.962346,0.949178,0][-6.71464,2.70068,-0.833137][-0.654466,-0.231263,0.719855][0.961743,0.949095,0][-6.89732,2.81764,-0.957759][-0.700904,-0.202623,0.68387][0.961815,0.948609,0][-6.95787,2.69268,-1.05684][-0.700904,-0.202623,0.68387][0.962333,0.948559,0][-6.71464,2.70068,-0.833137][-0.654466,-0.231263,0.719855][0.961743,0.949095,0][-6.77067,2.83281,-1.14907][0.712992,0.276876,-0.64419][0.953373,0.966272,0][-6.64094,2.77844,-0.881034][0.591282,0.796788,-0.124553][0.952519,0.966525,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.952624,0.966139,0][-6.77067,2.83281,-1.14907][0.712992,0.276876,-0.64419][0.953373,0.966272,0][-6.81888,2.86859,-0.984941][0.475294,0.878296,-0.0518784][0.953209,0.966601,0][-6.64094,2.77844,-0.881034][0.591282,0.796788,-0.124553][0.952519,0.966525,0][-6.8143,2.72313,-1.2445][0.712992,0.276876,-0.64419][0.956748,0.942454,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.95653,0.941872,0][-6.57468,2.5503,-1.14954][0.582449,0.427777,-0.691201][0.957082,0.94189,0][-6.8143,2.72313,-1.2445][0.712992,0.276876,-0.64419][0.956748,0.942454,0][-6.77067,2.83281,-1.14907][0.712992,0.276876,-0.64419][0.956308,0.942344,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.95653,0.941872,0][-6.64094,2.77844,-0.881034][0.591282,0.796788,-0.124553][0.952519,0.966525,0][-6.50981,2.76145,-0.722691][0.346883,0.918735,-0.188676][0.951909,0.966623,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.951722,0.966273,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.952624,0.966139,0][-6.64094,2.77844,-0.881034][0.591282,0.796788,-0.124553][0.952519,0.966525,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.951722,0.966273,0][-6.57468,2.5503,-1.14954][0.582449,0.427777,-0.691201][0.954398,0.957897,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.953844,0.957201,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-6.57468,2.5503,-1.14954][0.582449,0.427777,-0.691201][0.957082,0.94189,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.95653,0.941872,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.956242,0.941294,0][-6.68131,2.42205,-1.07766][-0.544417,-0.788356,0.286539][0.970938,0.964399,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.969572,0.964297,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.969933,0.96391,0][-6.73738,2.51567,-0.913245][-0.654466,-0.231263,0.719855][0.970919,0.964027,0][-6.68131,2.42205,-1.07766][-0.544417,-0.788356,0.286539][0.970938,0.964399,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.969933,0.96391,0][-6.73738,2.51567,-0.913245][-0.654466,-0.231263,0.719855][0.962346,0.949178,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.962005,0.94978,0][-6.58936,2.65625,-0.665657][-0.694146,-0.363448,0.621342][0.961502,0.949486,0][-6.71464,2.70068,-0.833137][-0.654466,-0.231263,0.719855][0.961743,0.949095,0][-6.73738,2.51567,-0.913245][-0.654466,-0.231263,0.719855][0.962346,0.949178,0][-6.58936,2.65625,-0.665657][-0.694146,-0.363448,0.621342][0.961502,0.949486,0][-6.49437,2.52194,-0.466107][-0.909295,-0.375003,0.180433][0.935773,0.955798,0][-6.58936,2.65625,-0.665657][-0.909294,-0.375003,0.180433][0.935403,0.955372,0][-6.5064,2.43837,-0.700427][-0.909295,-0.375003,0.180433][0.935932,0.955342,0][-6.49437,2.52194,-0.466107][-0.909295,-0.375003,0.180433][0.935773,0.955798,0][-6.57043,2.66821,-0.454749][-0.878938,-0.465168,0.105294][0.935364,0.95579,0][-6.58936,2.65625,-0.665657][-0.909294,-0.375003,0.180433][0.935403,0.955372,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.96928,0.963724,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.969933,0.96391,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.969572,0.964297,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.96928,0.963724,0][-6.49437,2.52194,-0.466107][-0.687515,-0.672087,0.274994][0.969626,0.963486,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.969933,0.96391,0][-6.39811,2.68699,-0.320602][-0.552545,-0.346161,0.7582][0.936843,0.942539,0][-6.57043,2.66821,-0.454749][-0.552545,-0.346161,0.7582][0.937206,0.942907,0][-6.49437,2.52194,-0.466107][-0.687515,-0.672087,0.274994][0.936716,0.943008,0][-6.39811,2.68699,-0.320602][-0.552545,-0.346161,0.7582][0.936843,0.942539,0][-6.47081,2.78055,-0.330705][-0.552233,-0.347214,0.757946][0.937212,0.942521,0][-6.57043,2.66821,-0.454749][-0.552545,-0.346161,0.7582][0.937206,0.942907,0][-6.32542,2.59342,-0.310499][-0.401993,-0.584362,0.704928][0.936474,0.942557,0][-6.49437,2.52194,-0.466107][-0.687515,-0.672087,0.274994][0.936716,0.943008,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.936202,0.943103,0][-6.32542,2.59342,-0.310499][-0.401993,-0.584362,0.704928][0.936474,0.942557,0][-6.39811,2.68699,-0.320602][-0.552545,-0.346161,0.7582][0.936843,0.942539,0][-6.49437,2.52194,-0.466107][-0.687515,-0.672087,0.274994][0.936716,0.943008,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.97449,0.937617,0][-6.36836,2.90758,-0.432631][0.447481,0.852776,-0.269322][0.97462,0.937251,0][-6.26902,2.84977,-0.450616][0.447481,0.852776,-0.269322][0.974968,0.937313,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.974972,0.937819,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.97449,0.937617,0][-6.26902,2.84977,-0.450616][0.447481,0.852776,-0.269322][0.974968,0.937313,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.974972,0.937819,0][-6.26902,2.84977,-0.450616][0.447481,0.852776,-0.269322][0.974968,0.937313,0][-6.16967,2.79196,-0.468601][0.46619,0.862451,-0.197093][0.975315,0.937374,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.975405,0.937942,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.974972,0.937819,0][-6.16967,2.79196,-0.468601][0.46619,0.862451,-0.197093][0.975315,0.937374,0][-6.50981,2.76145,-0.722691][0.346883,0.918735,-0.188676][0.953285,0.957296,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.953065,0.956972,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.953609,0.95685,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.953844,0.957201,0][-6.50981,2.76145,-0.722691][0.346883,0.918735,-0.188676][0.953285,0.957296,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.953609,0.95685,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.953844,0.957201,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.953609,0.95685,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.954068,0.956777,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.953844,0.957201,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.954068,0.956777,0][-6.26902,2.84977,-0.450616][0.372374,0.380714,0.846401][0.940446,0.956462,0][-6.47081,2.78055,-0.330705][0.372374,0.380714,0.846401][0.940827,0.956808,0][-6.39811,2.68699,-0.320602][0.372374,0.380714,0.846401][0.940473,0.956873,0][-6.26902,2.84977,-0.450616][0.372374,0.380714,0.846401][0.940446,0.956462,0][-6.36836,2.90758,-0.432631][0.373505,0.378373,0.846952][0.940802,0.956485,0][-6.47081,2.78055,-0.330705][0.372374,0.380714,0.846401][0.940827,0.956808,0][-6.16967,2.79196,-0.468601][0.372949,0.381116,0.845967][0.94009,0.956439,0][-6.39811,2.68699,-0.320602][0.372374,0.380714,0.846401][0.940473,0.956873,0][-6.32542,2.59342,-0.310499][0.372949,0.381116,0.845967][0.940118,0.956938,0][-6.16967,2.79196,-0.468601][0.372949,0.381116,0.845967][0.94009,0.956439,0][-6.26902,2.84977,-0.450616][0.372374,0.380714,0.846401][0.940446,0.956462,0][-6.39811,2.68699,-0.320602][0.372374,0.380714,0.846401][0.940473,0.956873,0][-7.35007,3.46926,-1.58806][-0.303193,-0.0864369,-0.949001][0.939306,0.965141,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.3812,3.32573,-1.56504][-0.303193,-0.0864369,-0.949001][0.938992,0.96493,0][-7.35007,3.46926,-1.58806][-0.303193,-0.0864369,-0.949001][0.939306,0.965141,0][-7.29433,3.4744,-1.60634][0.38015,0.11043,-0.918309][0.939222,0.965238,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.266,3.54339,-1.51719][0.091856,0.932624,0.348963][0.975113,0.966179,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.974956,0.965909,0][-7.17719,3.49414,-1.40896][0.091856,0.932624,0.348963][0.975279,0.965905,0][-7.266,3.54339,-1.51719][0.091856,0.932624,0.348963][0.975113,0.966179,0][-7.30201,3.54235,-1.50494][-0.603656,0.715978,0.350678][0.975005,0.96618,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.974956,0.965909,0][-7.17719,3.49414,-1.40896][0.091856,0.932624,0.348963][0.975822,0.957778,0][-7.12114,3.09626,-1.14227][-0.558376,0.231003,0.796777][0.977183,0.957375,0][-7.01466,3.1246,-1.17845][0.126865,0.564534,0.815602][0.977242,0.957602,0][-7.17719,3.49414,-1.40896][0.091856,0.932624,0.348963][0.975822,0.957778,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.975703,0.957566,0][-7.12114,3.09626,-1.14227][-0.558376,0.231003,0.796777][0.977183,0.957375,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.937478,0.965096,0][-7.16856,2.92735,-1.34249][-0.0897812,-0.552426,-0.828712][0.937594,0.964834,0][-7.3812,3.32573,-1.56504][-0.303193,-0.0864369,-0.949001][0.938992,0.96493,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.16856,2.92735,-1.34249][-0.0897812,-0.552426,-0.828712][0.937594,0.964834,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.937478,0.965096,0][-6.8143,2.72313,-1.2445][0.0478592,-0.461505,-0.885846][0.936448,0.965186,0][-6.93165,2.63676,-1.20584][0.0478592,-0.461505,-0.885846][0.936432,0.964897,0][-7.16856,2.92735,-1.34249][-0.0897812,-0.552426,-0.828712][0.937594,0.964834,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.937478,0.965096,0][-6.93165,2.63676,-1.20584][0.0478592,-0.461505,-0.885846][0.936432,0.964897,0][-7.01466,3.1246,-1.17845][0.126865,0.564534,0.815602][0.977242,0.957602,0][-6.89732,2.81764,-0.957759][-0.0794588,0.561711,0.823509][0.978433,0.957404,0][-6.81888,2.86859,-0.984941][-0.0794587,0.561711,0.823509][0.978406,0.957593,0][-7.01466,3.1246,-1.17845][0.126865,0.564534,0.815602][0.977242,0.957602,0][-7.12114,3.09626,-1.14227][-0.558376,0.231003,0.796777][0.977183,0.957375,0][-6.89732,2.81764,-0.957759][-0.0794588,0.561711,0.823509][0.978433,0.957404,0][-6.81888,2.86859,-0.984941][-0.0794587,0.561711,0.823509][0.978406,0.957593,0][-6.71464,2.70068,-0.833137][-0.142625,0.613593,0.776635][0.979164,0.957528,0][-6.64094,2.77844,-0.881034][-0.142625,0.613593,0.776635][0.979041,0.957745,0][-6.81888,2.86859,-0.984941][-0.0794587,0.561711,0.823509][0.978406,0.957593,0][-6.89732,2.81764,-0.957759][-0.0794588,0.561711,0.823509][0.978433,0.957404,0][-6.71464,2.70068,-0.833137][-0.142625,0.613593,0.776635][0.979164,0.957528,0][-6.8143,2.72313,-1.2445][0.0478592,-0.461505,-0.885846][0.936448,0.965186,0][-6.57468,2.5503,-1.14954][-0.00437005,-0.486152,-0.873863][0.935584,0.965385,0][-6.68131,2.42205,-1.07766][-0.00437005,-0.486152,-0.873863][0.935441,0.965067,0][-6.93165,2.63676,-1.20584][0.0478592,-0.461505,-0.885846][0.936432,0.964897,0][-6.8143,2.72313,-1.2445][0.0478592,-0.461505,-0.885846][0.936448,0.965186,0][-6.68131,2.42205,-1.07766][-0.00437005,-0.486152,-0.873863][0.935441,0.965067,0][-6.68131,2.42205,-1.07766][-0.00437005,-0.486152,-0.873863][0.929493,0.960964,0][-6.24218,2.46255,-0.900827][0.343194,-0.612671,-0.711936][0.930842,0.960577,0][-6.35377,2.29346,-0.809111][0.343194,-0.612671,-0.711936][0.930869,0.961018,0][-6.68131,2.42205,-1.07766][-0.00437005,-0.486152,-0.873863][0.929493,0.960964,0][-6.57468,2.5503,-1.14954][-0.00437005,-0.486152,-0.873863][0.929522,0.960605,0][-6.24218,2.46255,-0.900827][0.343194,-0.612671,-0.711936][0.930842,0.960577,0][-6.71464,2.70068,-0.833137][-0.142625,0.613593,0.776635][0.979164,0.957528,0][-6.58936,2.65625,-0.665657][-0.49574,0.672707,0.549278][0.979693,0.957577,0][-6.50981,2.76145,-0.722691][-0.49574,0.672707,0.549278][0.979504,0.957831,0][-6.64094,2.77844,-0.881034][-0.142625,0.613593,0.776635][0.979041,0.957745,0][-6.71464,2.70068,-0.833137][-0.142625,0.613593,0.776635][0.979164,0.957528,0][-6.50981,2.76145,-0.722691][-0.49574,0.672707,0.549278][0.979504,0.957831,0][-6.29975,1.74738,-1.6019][0.791531,-0.609149,0.0491606][0.951722,0.967137,0][-6.20393,1.87627,-1.54765][0.791531,-0.609149,0.0491606][0.952104,0.966915,0][-6.30341,1.75152,-1.49177][0.791531,-0.609149,0.0491606][0.952026,0.967238,0][-6.29975,1.74738,-1.6019][0.791531,-0.609149,0.0491606][0.951722,0.967137,0][-6.24026,1.82415,-1.63606][0.796299,-0.604207,0.0289986][0.951769,0.96694,0][-6.20393,1.87627,-1.54765][0.791531,-0.609149,0.0491606][0.952104,0.966915,0][-6.24026,1.82415,-1.63606][0.707148,0.442584,-0.551417][0.959735,0.941568,0][-6.36336,1.951,-1.69211][0.707148,0.442584,-0.551417][0.959466,0.941892,0][-6.20393,1.87627,-1.54765][0.707148,0.442584,-0.551417][0.959467,0.94144,0][-6.24026,1.82415,-1.63606][0.707148,0.442584,-0.551417][0.959735,0.941568,0][-6.30952,1.85662,-1.69882][0.707146,0.442578,-0.551425][0.959734,0.941764,0][-6.36336,1.951,-1.69211][0.707148,0.442584,-0.551417][0.959466,0.941892,0][-6.30952,1.85662,-1.69882][0.450468,-0.486319,-0.748713][0.928912,0.946796,0][-6.45872,1.83625,-1.64006][-0.347571,-0.132225,-0.928284][0.929211,0.946567,0][-6.36336,1.951,-1.69211][-0.347571,-0.132225,-0.928284][0.929234,0.946862,0][-6.30952,1.85662,-1.69882][0.450468,-0.486319,-0.748713][0.928912,0.946796,0][-6.36723,1.78419,-1.66633][0.196948,-0.52764,-0.826321][0.928892,0.946613,0][-6.45872,1.83625,-1.64006][-0.347571,-0.132225,-0.928284][0.929211,0.946567,0][-6.29975,1.74738,-1.6019][-0.490915,-0.871052,0.0164481][0.199401,0.616112,0][-6.30341,1.75152,-1.49177][-0.490915,-0.871052,0.0164481][0.197379,0.613416,0][-6.45872,1.83625,-1.64006][-0.490915,-0.871052,0.0164481][0.204429,0.613481,0][-6.36723,1.78419,-1.66633][-0.490915,-0.871052,0.0164514][0.202464,0.616141,0][-6.29975,1.74738,-1.6019][-0.490915,-0.871052,0.0164481][0.199401,0.616112,0][-6.45872,1.83625,-1.64006][-0.490915,-0.871052,0.0164481][0.204429,0.613481,0][-6.45872,1.83625,-1.64006][-0.647548,-0.712077,0.271344][0.971376,0.963321,0][-6.36303,1.85842,-1.35351][-0.647548,-0.712077,0.271344][0.9723,0.963325,0][-6.5318,1.95049,-1.51464][-0.647548,-0.712077,0.271344][0.971658,0.963606,0][-6.45872,1.83625,-1.64006][-0.647548,-0.712077,0.271344][0.971376,0.963321,0][-6.30341,1.75152,-1.49177][-0.647549,-0.712076,0.271344][0.971967,0.963062,0][-6.36303,1.85842,-1.35351][-0.647548,-0.712077,0.271344][0.9723,0.963325,0][-6.36336,1.951,-1.69211][-0.696441,0.281181,-0.660232][0.979716,0.942019,0][-6.5318,1.95049,-1.51464][-0.696441,0.281181,-0.660232][0.980195,0.942396,0][-6.43067,2.07173,-1.56969][-0.696441,0.281181,-0.660232][0.979675,0.942384,0][-6.36336,1.951,-1.69211][-0.696441,0.281181,-0.660232][0.979716,0.942019,0][-6.45872,1.83625,-1.64006][-0.696808,0.27944,-0.660585][0.980208,0.94203,0][-6.5318,1.95049,-1.51464][-0.696441,0.281181,-0.660232][0.980195,0.942396,0][-6.20393,1.87627,-1.54765][0.707148,0.442584,-0.551417][0.952475,0.961639,0][-6.43067,2.07173,-1.56969][0.633071,0.696174,-0.338472][0.951591,0.961747,0][-6.25743,1.99052,-1.41271][0.633071,0.696174,-0.338472][0.952127,0.961395,0][-6.20393,1.87627,-1.54765][0.707148,0.442584,-0.551417][0.952475,0.961639,0][-6.36336,1.951,-1.69211][0.707148,0.442584,-0.551417][0.951981,0.961963,0][-6.43067,2.07173,-1.56969][0.633071,0.696174,-0.338472][0.951591,0.961747,0][-6.20393,1.87627,-1.54765][0.791531,-0.609149,0.0491606][0.952104,0.966915,0][-6.25743,1.99052,-1.41271][0.743594,-0.335106,0.578595][0.952594,0.966902,0][-6.36303,1.85842,-1.35351][0.743594,-0.335106,0.578595][0.952511,0.967244,0][-6.30341,1.75152,-1.49177][0.791531,-0.609149,0.0491606][0.952026,0.967238,0][-6.20393,1.87627,-1.54765][0.791531,-0.609149,0.0491606][0.952104,0.966915,0][-6.36303,1.85842,-1.35351][0.743594,-0.335106,0.578595][0.952511,0.967244,0][-6.25743,1.99052,-1.41271][0.743594,-0.335106,0.578595][0.952594,0.966902,0][-6.28695,2.19038,-1.12319][0.813556,-0.436466,0.384218][0.953636,0.966883,0][-6.40211,2.03652,-1.05412][0.813556,-0.436466,0.384218][0.953545,0.967276,0][-6.36303,1.85842,-1.35351][0.743594,-0.335106,0.578595][0.952511,0.967244,0][-6.25743,1.99052,-1.41271][0.743594,-0.335106,0.578595][0.952594,0.966902,0][-6.40211,2.03652,-1.05412][0.813556,-0.436466,0.384218][0.953545,0.967276,0][-6.25743,1.99052,-1.41271][0.633071,0.696174,-0.338472][0.952127,0.961395,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.28695,2.19038,-1.12319][0.618521,0.674723,-0.402716][0.951681,0.96085,0][-6.25743,1.99052,-1.41271][0.633071,0.696174,-0.338472][0.952127,0.961395,0][-6.43067,2.07173,-1.56969][0.633071,0.696174,-0.338472][0.951591,0.961747,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.43067,2.07173,-1.56969][-0.696441,0.281181,-0.660232][0.979675,0.942384,0][-6.64416,2.09896,-1.3559][-0.677029,0.21587,-0.703585][0.980207,0.942879,0][-6.53364,2.23998,-1.41898][-0.677029,0.21587,-0.703585][0.979616,0.942873,0][-6.43067,2.07173,-1.56969][-0.696441,0.281181,-0.660232][0.979675,0.942384,0][-6.5318,1.95049,-1.51464][-0.696441,0.281181,-0.660232][0.980195,0.942396,0][-6.64416,2.09896,-1.3559][-0.677029,0.21587,-0.703585][0.980207,0.942879,0][-6.36303,1.85842,-1.35351][-0.647548,-0.712077,0.271344][0.9723,0.963325,0][-6.40211,2.03652,-1.05412][-0.612194,-0.712109,0.343686][0.973107,0.963694,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.5318,1.95049,-1.51464][-0.647548,-0.712077,0.271344][0.971658,0.963606,0][-6.36303,1.85842,-1.35351][-0.647548,-0.712077,0.271344][0.9723,0.963325,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.77455,2.16555,-1.60335][-0.755466,-0.654566,0.0285363][0.953381,0.956306,0][-6.72904,2.11575,-1.54111][-0.755466,-0.654566,0.0285363][0.953534,0.956451,0][-6.84731,2.25385,-1.50429][-0.755466,-0.654566,0.0285363][0.953006,0.95646,0][-6.82779,2.22772,-1.58677][-0.420618,-0.0720129,-0.904375][0.953143,0.95631,0][-6.77455,2.16555,-1.60335][-0.755466,-0.654566,0.0285363][0.953381,0.956306,0][-6.84731,2.25385,-1.50429][-0.755466,-0.654566,0.0285363][0.953006,0.95646,0][-6.77444,2.29501,-1.61694][-0.420618,-0.0720129,-0.904375][0.974526,0.958977,0][-6.84731,2.25385,-1.50429][-0.755466,-0.654566,0.0285363][0.974833,0.959149,0][-6.76396,2.35459,-1.54998][-0.795471,0.509189,-0.328561][0.974415,0.959138,0][-6.77444,2.29501,-1.61694][-0.420618,-0.0720129,-0.904375][0.974526,0.958977,0][-6.82779,2.22772,-1.58677][-0.420618,-0.0720129,-0.904375][0.974802,0.958984,0][-6.84731,2.25385,-1.50429][-0.755466,-0.654566,0.0285363][0.974833,0.959149,0][-6.77444,2.29501,-1.61694][0.466816,0.623205,-0.627453][0.950353,0.961932,0][-6.76396,2.35459,-1.54998][0.466816,0.623205,-0.627453][0.950281,0.961803,0][-6.64619,2.2258,-1.59026][0.466816,0.623205,-0.627453][0.950793,0.961846,0][-6.72142,2.23704,-1.63508][0.466815,0.623201,-0.627458][0.950584,0.961951,0][-6.77444,2.29501,-1.61694][0.466816,0.623205,-0.627453][0.950353,0.961932,0][-6.64619,2.2258,-1.59026][0.466816,0.623205,-0.627453][0.950793,0.961846,0][-6.77455,2.16555,-1.60335][-0.41529,-0.115078,-0.902381][0.93146,0.936546,0][-6.64619,2.2258,-1.59026][0.350747,-0.589159,-0.72792][0.931262,0.936797,0][-6.72904,2.11575,-1.54111][0.350747,-0.589159,-0.72792][0.931253,0.936524,0][-6.77455,2.16555,-1.60335][-0.41529,-0.115078,-0.902381][0.93146,0.936546,0][-6.72142,2.23704,-1.63508][-0.39306,-0.0726919,-0.916635][0.931468,0.936722,0][-6.64619,2.2258,-1.59026][0.350747,-0.589159,-0.72792][0.931262,0.936797,0][-6.72904,2.11575,-1.54111][0.350747,-0.589159,-0.72792][0.969905,0.937583,0][-6.53364,2.23998,-1.41898][0.6501,-0.669877,-0.358658][0.970348,0.937941,0][-6.64416,2.09896,-1.3559][0.6501,-0.669877,-0.358658][0.96977,0.937942,0][-6.72904,2.11575,-1.54111][0.350747,-0.589159,-0.72792][0.969905,0.937583,0][-6.64619,2.2258,-1.59026][0.350747,-0.589159,-0.72792][0.970351,0.937582,0][-6.53364,2.23998,-1.41898][0.6501,-0.669877,-0.358658][0.970348,0.937941,0][-6.76396,2.35459,-1.54998][0.466816,0.623205,-0.627453][0.950281,0.961803,0][-6.67737,2.41569,-1.34341][0.58904,0.673738,-0.446216][0.95037,0.961385,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.64619,2.2258,-1.59026][0.466816,0.623205,-0.627453][0.950793,0.961846,0][-6.76396,2.35459,-1.54998][0.466816,0.623205,-0.627453][0.950281,0.961803,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.76396,2.35459,-1.54998][-0.725515,0.680477,0.102856][0.96327,0.941239,0][-6.78814,2.28867,-1.2844][-0.725515,0.680477,0.102856][0.962626,0.941596,0][-6.67737,2.41569,-1.34341][-0.725515,0.680477,0.102856][0.962567,0.941257,0][-6.76396,2.35459,-1.54998][-0.725515,0.680477,0.102856][0.96327,0.941239,0][-6.84731,2.25385,-1.50429][-0.745077,0.660033,0.0960006][0.963317,0.941504,0][-6.78814,2.28867,-1.2844][-0.725515,0.680477,0.102856][0.962626,0.941596,0][-6.84731,2.25385,-1.50429][-0.705616,-0.645582,0.292114][0.971346,0.964403,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.78814,2.28867,-1.2844][-0.705616,-0.645582,0.292114][0.972038,0.964444,0][-6.84731,2.25385,-1.50429][-0.705616,-0.645582,0.292114][0.971346,0.964403,0][-6.72904,2.11575,-1.54111][-0.698254,-0.66715,0.259522][0.971373,0.964067,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.40211,2.03652,-1.05412][-0.612194,-0.712109,0.343686][0.973107,0.963694,0][-6.66328,2.26211,-1.07285][-0.624995,-0.693835,0.357735][0.972776,0.964318,0][-6.78814,2.28867,-1.2844][-0.705616,-0.645582,0.292114][0.972038,0.964444,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.66328,2.26211,-1.07285][-0.624995,-0.693835,0.357735][0.972776,0.964318,0][-6.78814,2.28867,-1.2844][-0.725515,0.680477,0.102856][0.962626,0.941596,0][-6.66328,2.26211,-1.07285][-0.585921,0.685679,0.431903][0.961996,0.941731,0][-6.54715,2.40107,-1.13592][-0.585921,0.685679,0.431903][0.961931,0.941365,0][-6.67737,2.41569,-1.34341][-0.725515,0.680477,0.102856][0.962567,0.941257,0][-6.78814,2.28867,-1.2844][-0.725515,0.680477,0.102856][0.962626,0.941596,0][-6.54715,2.40107,-1.13592][-0.585921,0.685679,0.431903][0.961931,0.941365,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.54715,2.40107,-1.13592][0.59409,0.710976,-0.376259][0.950681,0.960948,0][-6.28695,2.19038,-1.12319][0.618521,0.674723,-0.402716][0.951681,0.96085,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.67737,2.41569,-1.34341][0.58904,0.673738,-0.446216][0.95037,0.961385,0][-6.54715,2.40107,-1.13592][0.59409,0.710976,-0.376259][0.950681,0.960948,0][-6.28695,2.19038,-1.12319][0.495793,-0.629208,-0.598571][0.952314,0.944352,0][-5.84846,2.24017,-0.812336][0.495793,-0.629208,-0.598571][0.953994,0.944377,0][-5.95561,2.05237,-0.703684][0.495793,-0.629208,-0.598571][0.953846,0.944847,0][-6.40211,2.03652,-1.05412][0.49072,-0.635117,-0.596507][0.952088,0.94473,0][-6.28695,2.19038,-1.12319][0.495793,-0.629208,-0.598571][0.952314,0.944352,0][-5.95561,2.05237,-0.703684][0.495793,-0.629208,-0.598571][0.953846,0.944847,0][-6.28695,2.19038,-1.12319][0.618521,0.674723,-0.402716][0.955426,0.957628,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-5.84846,2.24017,-0.812336][0.455081,0.517299,-0.724778][0.955439,0.956602,0][-6.28695,2.19038,-1.12319][0.618521,0.674723,-0.402716][0.955426,0.957628,0][-6.54715,2.40107,-1.13592][0.59409,0.710976,-0.376259][0.954666,0.957937,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-6.54715,2.40107,-1.13592][-0.585921,0.685679,0.431903][0.961931,0.941365,0][-6.35377,2.29346,-0.809111][-0.542626,0.648015,0.534447][0.96104,0.94168,0][-6.24218,2.46255,-0.900827][-0.542626,0.648015,0.534447][0.96102,0.941244,0][-6.54715,2.40107,-1.13592][-0.585921,0.685679,0.431903][0.961931,0.941365,0][-6.66328,2.26211,-1.07285][-0.585921,0.685679,0.431903][0.961996,0.941731,0][-6.35377,2.29346,-0.809111][-0.542626,0.648015,0.534447][0.96104,0.94168,0][-6.40211,2.03652,-1.05412][-0.612194,-0.712109,0.343686][0.974488,0.963069,0][-5.95561,2.05237,-0.703684][-0.506304,-0.543307,0.669682][0.976256,0.963062,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.975106,0.963661,0][-6.66328,2.26211,-1.07285][-0.624995,-0.693835,0.357735][0.973838,0.963615,0][-6.40211,2.03652,-1.05412][-0.612194,-0.712109,0.343686][0.974488,0.963069,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.975106,0.963661,0][-7.23172,3.42795,-0.448834][-0.943058,-0.316407,0.102611][0.980014,0.938722,0][-7.19825,3.30649,-0.515803][-0.943058,-0.316407,0.102611][0.98023,0.938969,0][-7.18586,3.31432,-0.3778][-0.943058,-0.316407,0.102611][0.979798,0.938967,0][-7.22704,3.43091,-0.396663][-0.943058,-0.316405,0.102614][0.979851,0.938721,0][-7.23172,3.42795,-0.448834][-0.943058,-0.316407,0.102611][0.980014,0.938722,0][-7.18586,3.31432,-0.3778][-0.943058,-0.316407,0.102611][0.979798,0.938967,0][-7.20239,3.4587,-0.365979][-0.707617,-0.137748,0.69304][0.940287,0.942553,0][-7.18586,3.31432,-0.3778][-0.707617,-0.137748,0.69304][0.939923,0.942714,0][-7.12068,3.38783,-0.296635][-0.707617,-0.137748,0.69304][0.939927,0.942461,0][-7.20239,3.4587,-0.365979][-0.707617,-0.137748,0.69304][0.940287,0.942553,0][-7.22704,3.43091,-0.396663][-0.707623,-0.137748,0.693033][0.940285,0.942649,0][-7.18586,3.31432,-0.3778][-0.707617,-0.137748,0.69304][0.939923,0.942714,0][-7.17705,3.49012,-0.391192][0.201198,0.950524,-0.236692][0.971608,0.936945,0][-7.05365,3.47094,-0.363328][0.201198,0.950524,-0.236692][0.971989,0.936918,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.971904,0.937157,0][-7.18698,3.48064,-0.437717][0.2012,0.950524,-0.23669][0.971576,0.937036,0][-7.17705,3.49012,-0.391192][0.201198,0.950524,-0.236692][0.971608,0.936945,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.971904,0.937157,0][-7.21204,3.45398,-0.462943][-0.0775015,0.722645,-0.686861][0.950429,0.957806,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.950709,0.957609,0][-7.1462,3.37532,-0.553122][-0.0775015,0.722645,-0.686861][0.950853,0.957822,0][-7.21204,3.45398,-0.462943][-0.0775015,0.722645,-0.686861][0.950429,0.957806,0][-7.18698,3.48064,-0.437717][0.2012,0.950524,-0.23669][0.950375,0.957726,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.950709,0.957609,0][-7.23172,3.42795,-0.448834][-0.943058,-0.316407,0.102611][0.953302,0.955914,0][-7.1462,3.37532,-0.553122][-0.716096,0.175221,-0.675651][0.952884,0.95602,0][-7.19825,3.30649,-0.515803][-0.943058,-0.316407,0.102611][0.952876,0.955833,0][-7.23172,3.42795,-0.448834][-0.943058,-0.316407,0.102611][0.953302,0.955914,0][-7.21204,3.45398,-0.462943][-0.716097,0.175218,-0.67565][0.953305,0.955984,0][-7.1462,3.37532,-0.553122][-0.716096,0.175221,-0.675651][0.952884,0.95602,0][-7.20239,3.4587,-0.365979][-0.763562,0.644729,0.0360178][0.928747,0.940975,0][-7.12068,3.38783,-0.296635][-0.0674353,0.656939,0.750921][0.929084,0.940973,0][-7.05365,3.47094,-0.363328][-0.0674353,0.656939,0.750921][0.929075,0.941185,0][-7.17705,3.49012,-0.391192][-0.763562,0.644729,0.0360178][0.928744,0.941055,0][-7.20239,3.4587,-0.365979][-0.763562,0.644729,0.0360178][0.928747,0.940975,0][-7.05365,3.47094,-0.363328][-0.0674353,0.656939,0.750921][0.929075,0.941185,0][-7.19825,3.30649,-0.515803][-0.943058,-0.316407,0.102611][0.932793,0.955478,0][-7.00653,3.08632,-0.570257][-0.737157,-0.667662,0.104055][0.933637,0.955432,0][-6.99015,3.09667,-0.387886][-0.737157,-0.667662,0.104055][0.933604,0.955793,0][-7.18586,3.31432,-0.3778][-0.943058,-0.316407,0.102611][0.932768,0.955752,0][-7.19825,3.30649,-0.515803][-0.943058,-0.316407,0.102611][0.932793,0.955478,0][-6.99015,3.09667,-0.387886][-0.737157,-0.667662,0.104055][0.933604,0.955793,0][-7.18586,3.31432,-0.3778][-0.707617,-0.137748,0.69304][0.939923,0.942714,0][-6.99015,3.09667,-0.387886][-0.456168,-0.445868,0.770138][0.939025,0.942771,0][-6.90401,3.1938,-0.280626][-0.456168,-0.445868,0.770138][0.93903,0.942437,0][-7.12068,3.38783,-0.296635][-0.707617,-0.137748,0.69304][0.939927,0.942461,0][-7.18586,3.31432,-0.3778][-0.707617,-0.137748,0.69304][0.939923,0.942714,0][-6.90401,3.1938,-0.280626][-0.456168,-0.445868,0.770138][0.93903,0.942437,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.971904,0.937157,0][-6.81543,3.30364,-0.368761][0.547852,0.789118,-0.277762][0.972873,0.936994,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.972761,0.93731,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.971904,0.937157,0][-7.05365,3.47094,-0.363328][0.201198,0.950524,-0.236692][0.971989,0.936918,0][-6.81543,3.30364,-0.368761][0.547852,0.789118,-0.277762][0.972873,0.936994,0][-7.1462,3.37532,-0.553122][-0.0775015,0.722645,-0.686861][0.950853,0.957822,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.951476,0.957376,0][-6.93774,3.17728,-0.619574][0.247954,0.532553,-0.809263][0.951667,0.957657,0][-7.1462,3.37532,-0.553122][-0.0775015,0.722645,-0.686861][0.950853,0.957822,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.950709,0.957609,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.951476,0.957376,0][-7.19825,3.30649,-0.515803][-0.43123,-0.155718,-0.888703][0.96309,0.935449,0][-6.93774,3.17728,-0.619574][-0.43123,-0.155718,-0.888703][0.96222,0.935609,0][-7.00653,3.08632,-0.570257][-0.43123,-0.155718,-0.888703][0.962187,0.935384,0][-7.19825,3.30649,-0.515803][-0.43123,-0.155718,-0.888703][0.96309,0.935449,0][-7.1462,3.37532,-0.553122][-0.431231,-0.155721,-0.888702][0.963115,0.935619,0][-6.93774,3.17728,-0.619574][-0.43123,-0.155718,-0.888703][0.96222,0.935609,0][-7.12068,3.38783,-0.296635][-0.0674353,0.656939,0.750921][0.929084,0.940973,0][-6.90401,3.1938,-0.280626][0.31742,0.424441,0.847994][0.929989,0.940959,0][-6.81543,3.30364,-0.368761][0.31742,0.424441,0.847994][0.929977,0.941238,0][-7.05365,3.47094,-0.363328][-0.0674353,0.656939,0.750921][0.929075,0.941185,0][-7.12068,3.38783,-0.296635][-0.0674353,0.656939,0.750921][0.929084,0.940973,0][-6.81543,3.30364,-0.368761][0.31742,0.424441,0.847994][0.929977,0.941238,0][-7.00653,3.08632,-0.570257][-0.737157,-0.667662,0.104055][0.933637,0.955432,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.934534,0.955491,0][-6.75774,2.91298,-0.413487][-0.610241,-0.785959,0.0993704][0.934505,0.955809,0][-6.99015,3.09667,-0.387886][-0.737157,-0.667662,0.104055][0.933604,0.955793,0][-7.00653,3.08632,-0.570257][-0.737157,-0.667662,0.104055][0.933637,0.955432,0][-6.75774,2.91298,-0.413487][-0.610241,-0.785959,0.0993704][0.934505,0.955809,0][-6.99015,3.09667,-0.387886][-0.456168,-0.445868,0.770138][0.939025,0.942771,0][-6.75774,2.91298,-0.413487][-0.343823,-0.541908,0.766891][0.938137,0.942771,0][-6.68188,2.99854,-0.319018][-0.343823,-0.541908,0.766891][0.938142,0.942478,0][-6.90401,3.1938,-0.280626][-0.456168,-0.445868,0.770138][0.93903,0.942437,0][-6.99015,3.09667,-0.387886][-0.456168,-0.445868,0.770138][0.939025,0.942771,0][-6.68188,2.99854,-0.319018][-0.343823,-0.541908,0.766891][0.938142,0.942478,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.972761,0.93731,0][-6.60386,3.09527,-0.396643][0.653927,0.701796,-0.282598][0.973728,0.937113,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.973629,0.937392,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.972761,0.93731,0][-6.81543,3.30364,-0.368761][0.547852,0.789118,-0.277762][0.972873,0.936994,0][-6.60386,3.09527,-0.396643][0.653927,0.701796,-0.282598][0.973728,0.937113,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.951476,0.957376,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.952195,0.957155,0][-6.71158,2.98398,-0.617546][0.373185,0.427983,-0.823142][0.952363,0.957402,0][-6.93774,3.17728,-0.619574][0.247954,0.532553,-0.809263][0.951667,0.957657,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.951476,0.957376,0][-6.71158,2.98398,-0.617546][0.373185,0.427983,-0.823142][0.952363,0.957402,0][-7.00653,3.08632,-0.570257][-0.43123,-0.155718,-0.888703][0.962187,0.935384,0][-6.71158,2.98398,-0.617546][-0.253309,-0.306001,-0.917714][0.961295,0.93563,0][-6.77216,2.90387,-0.57411][-0.253309,-0.306001,-0.917714][0.961265,0.935432,0][-7.00653,3.08632,-0.570257][-0.43123,-0.155718,-0.888703][0.962187,0.935384,0][-6.93774,3.17728,-0.619574][-0.43123,-0.155718,-0.888703][0.96222,0.935609,0][-6.71158,2.98398,-0.617546][-0.253309,-0.306001,-0.917714][0.961295,0.93563,0][-6.90401,3.1938,-0.280626][0.432061,0.326197,0.840785][0.974341,0.95259,0][-6.68188,2.99854,-0.319018][0.432061,0.326197,0.840785][0.975262,0.95258,0][-6.60386,3.09527,-0.396643][0.432061,0.326197,0.840785][0.975252,0.952826,0][-6.81543,3.30364,-0.368761][0.432061,0.326198,0.840785][0.97433,0.952869,0][-6.90401,3.1938,-0.280626][0.432061,0.326197,0.840785][0.974341,0.95259,0][-6.60386,3.09527,-0.396643][0.432061,0.326197,0.840785][0.975252,0.952826,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.934534,0.955491,0][-6.58936,2.65625,-0.665657][-0.909294,-0.375003,0.180433][0.935403,0.955372,0][-6.57043,2.66821,-0.454749][-0.878938,-0.465168,0.105294][0.935364,0.95579,0][-6.75774,2.91298,-0.413487][-0.610241,-0.785959,0.0993704][0.934505,0.955809,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.934534,0.955491,0][-6.57043,2.66821,-0.454749][-0.878938,-0.465168,0.105294][0.935364,0.95579,0][-6.75774,2.91298,-0.413487][-0.343823,-0.541908,0.766891][0.938137,0.942771,0][-6.57043,2.66821,-0.454749][-0.552545,-0.346161,0.7582][0.937206,0.942907,0][-6.47081,2.78055,-0.330705][-0.552233,-0.347214,0.757946][0.937212,0.942521,0][-6.68188,2.99854,-0.319018][-0.343823,-0.541908,0.766891][0.938142,0.942478,0][-6.75774,2.91298,-0.413487][-0.343823,-0.541908,0.766891][0.938137,0.942771,0][-6.47081,2.78055,-0.330705][-0.552233,-0.347214,0.757946][0.937212,0.942521,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.973629,0.937392,0][-6.36836,2.90758,-0.432631][0.447481,0.852776,-0.269322][0.97462,0.937251,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.97449,0.937617,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.973629,0.937392,0][-6.60386,3.09527,-0.396643][0.653927,0.701796,-0.282598][0.973728,0.937113,0][-6.36836,2.90758,-0.432631][0.447481,0.852776,-0.269322][0.97462,0.937251,0][-6.71158,2.98398,-0.617546][0.373185,0.427983,-0.823142][0.952363,0.957402,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.953065,0.956972,0][-6.50981,2.76145,-0.722691][0.346883,0.918735,-0.188676][0.953285,0.957296,0][-6.71158,2.98398,-0.617546][0.373185,0.427983,-0.823142][0.952363,0.957402,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.952195,0.957155,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.953065,0.956972,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.935589,0.937027,0][-6.50981,2.76145,-0.722691][-0.519632,-0.0687623,-0.851619][0.936445,0.936797,0][-6.58936,2.65625,-0.665657][-0.909294,-0.375003,0.180433][0.936546,0.937051,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.935589,0.937027,0][-6.71158,2.98398,-0.617546][-0.519631,-0.0687614,-0.851619][0.935512,0.936834,0][-6.50981,2.76145,-0.722691][-0.519632,-0.0687623,-0.851619][0.936445,0.936797,0][-6.68188,2.99854,-0.319018][0.407125,0.348956,0.844084][0.941757,0.956704,0][-6.47081,2.78055,-0.330705][0.372374,0.380714,0.846401][0.940827,0.956808,0][-6.36836,2.90758,-0.432631][0.373505,0.378373,0.846952][0.940802,0.956485,0][-6.60386,3.09527,-0.396643][0.407125,0.348956,0.844085][0.941738,0.956459,0][-6.68188,2.99854,-0.319018][0.407125,0.348956,0.844084][0.941757,0.956704,0][-6.36836,2.90758,-0.432631][0.373505,0.378373,0.846952][0.940802,0.956485,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.969572,0.964297,0][-5.95561,2.05237,-0.703684][-0.506304,-0.543307,0.669682][0.968166,0.964586,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.968216,0.963919,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.96928,0.963724,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.969572,0.964297,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.968216,0.963919,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.967192,0.9667,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.966264,0.967058,0][-6.11026,2.48607,-0.267657][-0.519428,-0.419724,0.744329][0.966359,0.966479,0][-6.32542,2.59342,-0.310499][-0.401993,-0.584362,0.704928][0.936474,0.942557,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.936202,0.943103,0][-6.11026,2.48607,-0.267657][-0.519428,-0.419724,0.744329][0.93577,0.942403,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.975405,0.937942,0][-5.96442,2.68114,-0.427641][0.491867,0.818927,-0.295678][0.97605,0.937347,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.976508,0.937899,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.975405,0.937942,0][-6.16967,2.79196,-0.468601][0.46619,0.862451,-0.197093][0.975315,0.937374,0][-5.96442,2.68114,-0.427641][0.491867,0.818927,-0.295678][0.97605,0.937347,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.954728,0.956313,0][-5.84846,2.24017,-0.812336][0.455081,0.517299,-0.724778][0.955439,0.956602,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.954068,0.956777,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.954728,0.956313,0][-6.16967,2.79196,-0.468601][0.372949,0.381116,0.845967][0.94009,0.956439,0][-6.11026,2.48607,-0.267657][0.141155,0.562555,0.814621][0.93938,0.95686,0][-5.96442,2.68114,-0.427641][0.141155,0.562555,0.814621][0.93937,0.956377,0][-6.16967,2.79196,-0.468601][0.372949,0.381116,0.845967][0.94009,0.956439,0][-6.32542,2.59342,-0.310499][0.372949,0.381116,0.845967][0.940118,0.956938,0][-6.11026,2.48607,-0.267657][0.141155,0.562555,0.814621][0.93938,0.95686,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.968216,0.963919,0][-5.57734,2.0507,-0.452028][-0.238027,-0.927081,0.289593][0.966846,0.964505,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.966706,0.963932,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.968216,0.963919,0][-5.95561,2.05237,-0.703684][-0.506304,-0.543307,0.669682][0.968166,0.964586,0][-5.57734,2.0507,-0.452028][-0.238027,-0.927081,0.289593][0.966846,0.964505,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.966264,0.967058,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.964872,0.967088,0][-5.66604,2.42915,-0.112362][-0.479101,-0.23852,0.844731][0.964969,0.966545,0][-6.11026,2.48607,-0.267657][-0.519428,-0.419724,0.744329][0.966359,0.966479,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.966264,0.967058,0][-5.66604,2.42915,-0.112362][-0.479101,-0.23852,0.844731][0.964969,0.966545,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.976508,0.937899,0][-5.56487,2.55897,-0.251422][0.301001,0.910372,-0.28394][0.977392,0.937095,0][-5.45968,2.45311,-0.479329][0.301001,0.910372,-0.28394][0.977744,0.937575,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.976508,0.937899,0][-5.96442,2.68114,-0.427641][0.491867,0.818927,-0.295678][0.97605,0.937347,0][-5.56487,2.55897,-0.251422][0.301001,0.910372,-0.28394][0.977392,0.937095,0][-5.8449,2.51564,-0.68722][0.489971,0.189893,-0.850805][0.954925,0.966457,0][-5.45968,2.45311,-0.479329][0.489971,0.189893,-0.850805][0.955126,0.967324,0][-5.50176,2.20554,-0.558817][0.489971,0.189893,-0.850805][0.954306,0.967323,0][-5.84846,2.24017,-0.812336][0.455081,0.517299,-0.724778][0.955439,0.956602,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.954728,0.956313,0][-5.50176,2.20554,-0.558817][0.578279,0.331175,-0.745598][0.955558,0.955833,0][-5.84846,2.24017,-0.812336][0.495793,-0.629208,-0.598571][0.953994,0.944377,0][-5.50176,2.20554,-0.558817][0.408114,-0.644874,-0.646205][0.95531,0.944518,0][-5.57734,2.0507,-0.452028][0.408114,-0.644874,-0.646205][0.955251,0.944918,0][-5.95561,2.05237,-0.703684][0.495793,-0.629208,-0.598571][0.953846,0.944847,0][-5.84846,2.24017,-0.812336][0.495793,-0.629208,-0.598571][0.953994,0.944377,0][-5.57734,2.0507,-0.452028][0.408114,-0.644874,-0.646205][0.955251,0.944918,0][-5.96442,2.68114,-0.427641][0.141155,0.562555,0.814621][0.976896,0.941497,0][-5.66604,2.42915,-0.112362][-0.0602662,0.751133,0.657394][0.978203,0.940953,0][-5.56487,2.55897,-0.251422][-0.0602662,0.751133,0.657394][0.978294,0.941376,0][-5.96442,2.68114,-0.427641][0.141155,0.562555,0.814621][0.976896,0.941497,0][-6.11026,2.48607,-0.267657][0.141155,0.562555,0.814621][0.976731,0.940933,0][-5.66604,2.42915,-0.112362][-0.0602662,0.751133,0.657394][0.978203,0.940953,0][-5.57734,2.0507,-0.452028][-0.238027,-0.927081,0.289593][0.966846,0.964505,0][-4.25989,2.03184,0.175305][-0.208189,-0.88776,0.410535][0.962632,0.964652,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.966706,0.963932,0][-5.57734,2.0507,-0.452028][-0.238027,-0.927081,0.289593][0.966846,0.964505,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.964872,0.967088,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.9621,0.966962,0][-5.19733,2.43137,0.109422][-0.389895,-0.281374,0.876819][0.963513,0.966491,0][-5.66604,2.42915,-0.112362][-0.479101,-0.23852,0.844731][0.964969,0.966545,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.964872,0.967088,0][-5.19733,2.43137,0.109422][-0.389895,-0.281374,0.876819][0.963513,0.966491,0][-5.45968,2.45311,-0.479329][0.301001,0.910372,-0.28394][0.977744,0.937575,0][-5.04044,2.65554,-0.0388379][0.153999,0.833996,-0.529845][0.978812,0.936776,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.980324,0.936975,0][-5.45968,2.45311,-0.479329][0.301001,0.910372,-0.28394][0.977744,0.937575,0][-5.56487,2.55897,-0.251422][0.301001,0.910372,-0.28394][0.977392,0.937095,0][-5.04044,2.65554,-0.0388379][0.153999,0.833996,-0.529845][0.978812,0.936776,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-5.50176,2.20554,-0.558817][0.578279,0.331175,-0.745598][0.946526,0.962283,0][-5.45968,2.45311,-0.479329][0.301001,0.910372,-0.28394][0.946206,0.961828,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-5.50176,2.20554,-0.558817][0.578279,0.331175,-0.745598][0.946526,0.962283,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.9621,0.963973,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.963219,0.963518,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-4.25989,2.03184,0.175305][-0.208189,-0.88776,0.410535][0.962632,0.964652,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.9621,0.963973,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.963219,0.963518,0][-5.08245,2.35297,0.585269][-0.320996,-0.929628,0.18098][0.964339,0.963062,0][-5.19733,2.43137,0.109422][-0.506917,-0.861772,-0.0196005][0.951757,0.964054,0][-4.75674,2.16966,0.221354][-0.506917,-0.861772,-0.0196005][0.95032,0.963572,0][-5.08245,2.35297,0.585269][-0.506917,-0.861772,-0.0196005][0.951739,0.963073,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.94729,0.960102,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.948512,0.960002,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-5.04044,2.65554,-0.0388379][0.153999,0.833996,-0.529845][0.946941,0.961033,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.94729,0.960102,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.948512,0.960002,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.949557,0.959923,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.948512,0.960002,0][-4.75496,2.62142,0.756428][-0.119134,-0.42636,0.896674][0.974498,0.960325,0][-5.08245,2.35297,0.585269][-0.320996,-0.929628,0.18098][0.974364,0.95949,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.975569,0.959855,0][-4.4604,2.50951,0.73965][-0.110472,-0.425437,0.89822][0.975394,0.960579,0][-4.75496,2.62142,0.756428][-0.119134,-0.42636,0.896674][0.974498,0.960325,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.975569,0.959855,0][-4.4604,2.50951,0.73965][-0.110472,-0.425437,0.89822][0.975394,0.960579,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.975569,0.959855,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.976774,0.960219,0][-4.16583,2.3976,0.722873][-0.107486,-0.418144,0.901999][0.97629,0.960833,0][-4.4604,2.50951,0.73965][-0.110472,-0.425437,0.89822][0.975394,0.960579,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.976774,0.960219,0][-4.55671,2.93669,0.492019][0.246555,0.527044,0.813287][0.944807,0.946784,0][-4.75496,2.62142,0.756428][0.246555,0.527044,0.813287][0.944661,0.945884,0][-4.4604,2.50951,0.73965][0.246555,0.527044,0.813287][0.94564,0.94594,0][-4.30035,2.81356,0.499179][0.229943,0.526364,0.818576][0.945692,0.94677,0][-4.55671,2.93669,0.492019][0.246555,0.527044,0.813287][0.944807,0.946784,0][-4.4604,2.50951,0.73965][0.246555,0.527044,0.813287][0.94564,0.94594,0][-4.30035,2.81356,0.499179][0.229943,0.526364,0.818576][0.945692,0.94677,0][-4.4604,2.50951,0.73965][0.246555,0.527044,0.813287][0.94564,0.94594,0][-4.16583,2.3976,0.722873][0.243952,0.519334,0.819011][0.946618,0.945996,0][-4.04399,2.69044,0.50634][0.225221,0.516956,0.825853][0.946577,0.946756,0][-4.30035,2.81356,0.499179][0.229943,0.526364,0.818576][0.945692,0.94677,0][-4.16583,2.3976,0.722873][0.243952,0.519334,0.819011][0.946618,0.945996,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.961599,0.955472,0][-4.55671,2.93669,0.492019][0.433514,0.900132,-0.042756][0.962404,0.956347,0][-4.30035,2.81356,0.499179][0.433514,0.900132,-0.042756][0.961519,0.956362,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.961599,0.955472,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.96283,0.955484,0][-4.55671,2.93669,0.492019][0.433514,0.900132,-0.042756][0.962404,0.956347,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.960547,0.955619,0][-4.30035,2.81356,0.499179][0.433514,0.900132,-0.042756][0.961519,0.956362,0][-4.04399,2.69044,0.50634][0.433467,0.898448,-0.0699796][0.960634,0.956376,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.960547,0.955619,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.961599,0.955472,0][-4.30035,2.81356,0.499179][0.433514,0.900132,-0.042756][0.961519,0.956362,0][-4.25989,2.03184,0.175305][0.323189,-0.639094,-0.697931][0.959703,0.944903,0][-5.57734,2.0507,-0.452028][0.408114,-0.644874,-0.646205][0.955251,0.944918,0][-5.50176,2.20554,-0.558817][0.408114,-0.644874,-0.646205][0.95531,0.944518,0][-4.13805,2.32468,-0.0412287][0.319609,-0.645741,-0.693447][0.959735,0.944142,0][-4.25989,2.03184,0.175305][0.323189,-0.639094,-0.697931][0.959703,0.944903,0][-5.50176,2.20554,-0.558817][0.408114,-0.644874,-0.646205][0.95531,0.944518,0][-5.19733,2.43137,0.109422][-0.379462,0.680286,0.627072][0.979774,0.940972,0][-5.04044,2.65554,-0.0388379][-0.379462,0.680286,0.627072][0.979964,0.941564,0][-5.56487,2.55897,-0.251422][-0.0602662,0.751133,0.657394][0.978294,0.941376,0][-5.66604,2.42915,-0.112362][-0.0602662,0.751133,0.657394][0.978203,0.940953,0][-5.19733,2.43137,0.109422][-0.379462,0.680286,0.627072][0.979774,0.940972,0][-5.56487,2.55897,-0.251422][-0.0602662,0.751133,0.657394][0.978294,0.941376,0][-7.37743,4.8208,1.30345][-0.45404,-0.36468,0.812931][0.963882,0.959756,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.96487,0.959411,0][-7.11236,4.73891,1.30882][-0.138825,-0.389588,0.910466][0.964647,0.960011,0][-7.37743,4.8208,1.30345][-0.45404,-0.36468,0.812931][0.963882,0.959756,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.96392,0.959001,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.96487,0.959411,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.931781,0.956974,0][-7.28502,4.43758,0.831923][-0.223942,-0.968428,0.109529][0.930891,0.957571,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.930592,0.956928,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.931781,0.956974,0][-7.78734,4.54636,0.696088][-0.518145,-0.726339,0.451617][0.932506,0.957529,0][-7.28502,4.43758,0.831923][-0.223942,-0.968428,0.109529][0.930891,0.957571,0][-7.60408,4.82153,0.455876][0.129987,-0.699766,-0.702447][0.964802,0.937984,0][-7.13228,4.66693,0.631713][0.0522601,-0.676254,-0.734813][0.966435,0.937974,0][-7.28502,4.43758,0.831923][0.0522601,-0.676254,-0.734813][0.966438,0.938649,0][-7.78734,4.54636,0.696088][0.129987,-0.699766,-0.702447][0.964805,0.938794,0][-7.60408,4.82153,0.455876][0.129987,-0.699766,-0.702447][0.964802,0.937984,0][-7.28502,4.43758,0.831923][0.0522601,-0.676254,-0.734813][0.966438,0.938649,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.936874,0.959657,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.93801,0.959408,0][-7.13228,4.66693,0.631713][0.345047,0.258826,-0.902193][0.938048,0.960025,0][-7.60408,4.82153,0.455876][0.456356,0.513418,-0.726733][0.93656,0.96029,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.936874,0.959657,0][-7.13228,4.66693,0.631713][0.345047,0.258826,-0.902193][0.938048,0.960025,0][-7.19417,5.09597,1.06324][0.439532,0.848018,-0.296103][0.972685,0.957479,0][-6.95962,4.96825,1.10861][0.491296,0.864477,-0.106344][0.971855,0.957569,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.971836,0.956898,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.973019,0.956671,0][-7.19417,5.09597,1.06324][0.439532,0.848018,-0.296103][0.972685,0.957479,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.971836,0.956898,0][-7.19417,5.09597,1.06324][0.169441,0.581662,0.795587][0.964086,0.950564,0][-7.11236,4.73891,1.30882][0.164399,0.584275,0.79473][0.964913,0.949867,0][-6.95962,4.96825,1.10861][0.164399,0.584275,0.79473][0.964928,0.950542,0][-7.19417,5.09597,1.06324][0.169441,0.581662,0.795587][0.964086,0.950564,0][-7.37743,4.8208,1.30345][0.169441,0.581662,0.795587][0.964068,0.949755,0][-7.11236,4.73891,1.30882][0.164399,0.584275,0.79473][0.964913,0.949867,0][-7.11236,4.73891,1.30882][-0.138825,-0.389588,0.910466][0.964647,0.960011,0][-6.69077,4.10259,1.1257][-0.177688,-0.379081,0.908143][0.966974,0.959705,0][-6.506,4.29057,1.24032][-0.177688,-0.379081,0.908143][0.96697,0.960227,0][-7.11236,4.73891,1.30882][-0.138825,-0.389588,0.910466][0.964647,0.960011,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.96487,0.959411,0][-6.69077,4.10259,1.1257][-0.177688,-0.379081,0.908143][0.966974,0.959705,0][-7.27506,4.47357,1.17048][-0.52866,-0.843791,0.0923811][0.960875,0.963473,0][-6.73392,4.09852,0.841562][-0.52866,-0.843791,0.092381][0.958656,0.96376,0][-6.69077,4.10259,1.1257][-0.52866,-0.843791,0.0923811][0.958779,0.963197,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.930592,0.956928,0][-7.28502,4.43758,0.831923][-0.223942,-0.968428,0.109529][0.930891,0.957571,0][-6.73392,4.09852,0.841562][-0.522435,-0.846151,0.105314][0.928975,0.957937,0][-7.13228,4.66693,0.631713][0.0522601,-0.676254,-0.734813][0.966435,0.937974,0][-6.59232,4.28243,0.672043][-0.302616,-0.509469,-0.805522][0.968258,0.938051,0][-6.73392,4.09852,0.841562][-0.302616,-0.509469,-0.805522][0.968218,0.93862,0][-7.28502,4.43758,0.831923][0.0522601,-0.676254,-0.734813][0.966438,0.938649,0][-7.13228,4.66693,0.631713][0.0522601,-0.676254,-0.734813][0.966435,0.937974,0][-6.73392,4.09852,0.841562][-0.302616,-0.509469,-0.805522][0.968218,0.93862,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.93801,0.959408,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.940263,0.95955,0][-6.59232,4.28243,0.672043][0.269144,0.294559,-0.916949][0.94011,0.960063,0][-7.13228,4.66693,0.631713][0.345047,0.258826,-0.902193][0.938048,0.960025,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.93801,0.959408,0][-6.59232,4.28243,0.672043][0.269144,0.294559,-0.916949][0.94011,0.960063,0][-6.95962,4.96825,1.10861][0.491296,0.864477,-0.106344][0.971855,0.957569,0][-6.36439,4.47448,1.0708][0.63078,0.768574,-0.106816][0.969527,0.957494,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.969643,0.956931,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.971836,0.956898,0][-6.95962,4.96825,1.10861][0.491296,0.864477,-0.106344][0.971855,0.957569,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.969643,0.956931,0][-6.95962,4.96825,1.10861][0.164399,0.584275,0.79473][0.964928,0.950542,0][-6.506,4.29057,1.24032][0.407351,0.429325,0.806068][0.967175,0.949867,0][-6.36439,4.47448,1.0708][0.407351,0.429325,0.806068][0.967236,0.950435,0][-6.95962,4.96825,1.10861][0.164399,0.584275,0.79473][0.964928,0.950542,0][-7.11236,4.73891,1.30882][0.164399,0.584275,0.79473][0.964913,0.949867,0][-6.506,4.29057,1.24032][0.407351,0.429325,0.806068][0.967175,0.949867,0][-6.506,4.29057,1.24032][-0.177688,-0.379081,0.908143][0.96697,0.960227,0][-6.09747,3.56733,0.948618][-0.121183,-0.429404,0.894945][0.969458,0.959781,0][-5.89586,3.72939,1.05367][-0.121183,-0.429404,0.894945][0.969548,0.96029,0][-6.506,4.29057,1.24032][-0.177688,-0.379081,0.908143][0.96697,0.960227,0][-6.69077,4.10259,1.1257][-0.177688,-0.379081,0.908143][0.966974,0.959705,0][-6.09747,3.56733,0.948618][-0.121183,-0.429404,0.894945][0.969458,0.959781,0][-6.73392,4.09852,0.841562][-0.52866,-0.843791,0.092381][0.958656,0.96376,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.956347,0.963686,0][-6.09747,3.56733,0.948618][-0.647656,-0.754256,0.107886][0.95634,0.963133,0][-6.69077,4.10259,1.1257][-0.52866,-0.843791,0.0923811][0.958779,0.963197,0][-6.73392,4.09852,0.841562][-0.52866,-0.843791,0.092381][0.958656,0.96376,0][-6.09747,3.56733,0.948618][-0.647656,-0.754256,0.107886][0.95634,0.963133,0][-6.59232,4.28243,0.672043][-0.522812,-0.328586,-0.786574][0.932121,0.948159,0][-6.04161,3.77775,0.516836][-0.522812,-0.328586,-0.786574][0.934495,0.948111,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.934513,0.948664,0][-6.73392,4.09852,0.841562][-0.52866,-0.843791,0.092381][0.932102,0.948728,0][-6.59232,4.28243,0.672043][-0.522812,-0.328586,-0.786574][0.932121,0.948159,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.934513,0.948664,0][-6.59232,4.28243,0.672043][0.269144,0.294559,-0.916949][0.94011,0.960063,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.94265,0.959799,0][-6.04161,3.77775,0.516836][0.131075,0.419296,-0.898338][0.942408,0.960288,0][-6.59232,4.28243,0.672043][0.269144,0.294559,-0.916949][0.94011,0.960063,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.940263,0.95955,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.94265,0.959799,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.969643,0.956931,0][-5.76713,3.91563,0.890312][0.660953,0.74193,-0.112608][0.967107,0.957137,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.967344,0.956605,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.969643,0.956931,0][-6.36439,4.47448,1.0708][0.63078,0.768574,-0.106816][0.969527,0.957494,0][-5.76713,3.91563,0.890312][0.660953,0.74193,-0.112608][0.967107,0.957137,0][-6.36439,4.47448,1.0708][0.534169,0.317888,0.783333][0.952121,0.946696,0][-5.89586,3.72939,1.05367][0.534169,0.317888,0.783333][0.954706,0.946117,0][-5.76713,3.91563,0.890312][0.534169,0.317888,0.783333][0.954728,0.94667,0][-6.36439,4.47448,1.0708][0.534169,0.317888,0.783333][0.952121,0.946696,0][-6.506,4.29057,1.24032][0.531037,0.31585,0.786281][0.952061,0.946128,0][-5.89586,3.72939,1.05367][0.534169,0.317888,0.783333][0.954706,0.946117,0][-6.09747,3.56733,0.948618][-0.121183,-0.429404,0.894945][0.969458,0.959781,0][-5.08245,2.35297,0.585269][-0.320996,-0.929628,0.18098][0.974364,0.95949,0][-4.75496,2.62142,0.756428][-0.119134,-0.42636,0.896674][0.974498,0.960325,0][-5.89586,3.72939,1.05367][-0.121183,-0.429404,0.894945][0.969548,0.96029,0][-6.09747,3.56733,0.948618][-0.121183,-0.429404,0.894945][0.969458,0.959781,0][-4.75496,2.62142,0.756428][-0.119134,-0.42636,0.896674][0.974498,0.960325,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.956347,0.963686,0][-5.19733,2.43137,0.109422][-0.506917,-0.861772,-0.0196005][0.951757,0.964054,0][-5.08245,2.35297,0.585269][-0.506917,-0.861772,-0.0196005][0.951739,0.963073,0][-6.09747,3.56733,0.948618][-0.647656,-0.754256,0.107886][0.95634,0.963133,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.956347,0.963686,0][-5.08245,2.35297,0.585269][-0.506917,-0.861772,-0.0196005][0.951739,0.963073,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.934513,0.948664,0][-5.04044,2.65554,-0.0388379][-0.596254,-0.108753,-0.795396][0.939402,0.947971,0][-5.19733,2.43137,0.109422][-0.506917,-0.861772,-0.0196005][0.939448,0.948582,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.934513,0.948664,0][-6.04161,3.77775,0.516836][-0.522812,-0.328586,-0.786574][0.934495,0.948111,0][-5.04044,2.65554,-0.0388379][-0.596254,-0.108753,-0.795396][0.939402,0.947971,0][-6.04161,3.77775,0.516836][0.131075,0.419296,-0.898338][0.942408,0.960288,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.94729,0.960102,0][-5.04044,2.65554,-0.0388379][0.153999,0.833996,-0.529845][0.946941,0.961033,0][-6.04161,3.77775,0.516836][0.131075,0.419296,-0.898338][0.942408,0.960288,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.94265,0.959799,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.94729,0.960102,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.967344,0.956605,0][-4.55671,2.93669,0.492019][0.433514,0.900132,-0.042756][0.962404,0.956347,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.96283,0.955484,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.967344,0.956605,0][-5.76713,3.91563,0.890312][0.660953,0.74193,-0.112608][0.967107,0.957137,0][-4.55671,2.93669,0.492019][0.433514,0.900132,-0.042756][0.962404,0.956347,0][-5.76713,3.91563,0.890312][0.534169,0.317888,0.783333][0.954728,0.94667,0][-4.75496,2.62142,0.756428][0.524423,0.328894,0.785372][0.959735,0.945957,0][-4.55671,2.93669,0.492019][0.524423,0.328894,0.785372][0.95972,0.946862,0][-5.76713,3.91563,0.890312][0.534169,0.317888,0.783333][0.954728,0.94667,0][-5.89586,3.72939,1.05367][0.534169,0.317888,0.783333][0.954706,0.946117,0][-4.75496,2.62142,0.756428][0.524423,0.328894,0.785372][0.959735,0.945957,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.976774,0.960219,0][-3.34392,1.38606,0.55696][-0.256308,-0.349855,0.901059][0.980324,0.960558,0][-3.0984,1.81057,0.791623][-0.256308,-0.349855,0.901059][0.979935,0.961498,0][-4.16583,2.3976,0.722873][-0.107486,-0.418144,0.901999][0.97629,0.960833,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.976774,0.960219,0][-3.0984,1.81057,0.791623][-0.256308,-0.349855,0.901059][0.979935,0.961498,0][-4.25989,2.03184,0.175305][-0.597403,-0.797493,0.0843522][0.959648,0.939938,0][-3.39213,1.36494,0.0158647][-0.597403,-0.797493,0.0843522][0.956322,0.940254,0][-3.34392,1.38606,0.55696][-0.597403,-0.797493,0.0843522][0.956214,0.939182,0][-4.27378,2.06831,0.557356][-0.590637,-0.805037,0.0553494][0.959735,0.939181,0][-4.25989,2.03184,0.175305][-0.597403,-0.797493,0.0843522][0.959648,0.939938,0][-3.34392,1.38606,0.55696][-0.597403,-0.797493,0.0843522][0.956214,0.939182,0][-4.25989,2.03184,0.175305][0.323189,-0.639094,-0.697931][0.928747,0.954271,0][-3.17363,1.78669,-0.269781][-0.421653,-0.348513,-0.837106][0.93221,0.953384,0][-3.39213,1.36494,0.0158647][-0.421653,-0.348513,-0.837106][0.932174,0.954482,0][-4.25989,2.03184,0.175305][0.323189,-0.639094,-0.697931][0.928747,0.954271,0][-4.13805,2.32468,-0.0412287][0.319609,-0.645741,-0.693447][0.928707,0.953512,0][-3.17363,1.78669,-0.269781][-0.421653,-0.348513,-0.837106][0.93221,0.953384,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-2.94928,2.19283,-0.0559046][0.038753,0.44876,-0.892812][0.953152,0.959492,0][-3.17363,1.78669,-0.269781][0.038753,0.44876,-0.892812][0.953274,0.960408,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.949557,0.959923,0][-2.94928,2.19283,-0.0559046][0.038753,0.44876,-0.892812][0.953152,0.959492,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.960547,0.955619,0][-2.90107,2.21395,0.485191][0.381586,0.921681,-0.0699723][0.956783,0.956334,0][-2.94928,2.19283,-0.0559046][0.038753,0.44876,-0.892812][0.956891,0.955262,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.960547,0.955619,0][-4.04399,2.69044,0.50634][0.433467,0.898448,-0.0699796][0.960634,0.956376,0][-2.90107,2.21395,0.485191][0.381586,0.921681,-0.0699723][0.956783,0.956334,0][-4.16583,2.3976,0.722873][0.243952,0.519334,0.819011][0.946618,0.945996,0][-3.0984,1.81057,0.791623][0.229963,0.514871,0.825848][0.950401,0.945785,0][-2.90107,2.21395,0.485191][0.229963,0.514871,0.825848][0.950428,0.946862,0][-4.04399,2.69044,0.50634][0.225221,0.516956,0.825853][0.946577,0.946756,0][-4.16583,2.3976,0.722873][0.243952,0.519334,0.819011][0.946618,0.945996,0][-2.90107,2.21395,0.485191][0.229963,0.514871,0.825848][0.950428,0.946862,0][-8.525,6.49425,1.37929][0.197215,0.504096,-0.840829][0.974762,0.941894,0][-8.75451,6.7192,1.38355][0.544429,0.703347,-0.457056][0.973799,0.942012,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.97328,0.941663,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.942477,0.942501,0][-8.525,6.49425,1.37929][0.197215,0.504096,-0.840829][0.943333,0.942842,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.94192,0.942997,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-2.90107,2.21395,0.485191][0.872883,-0.48244,-0.0729886][0.965848,0.941731,0][-3.0984,1.81057,0.791623][0.872883,-0.48244,-0.0729886][0.96495,0.940818,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-2.94928,2.19283,-0.0559046][0.870347,-0.488958,-0.0584488][0.967536,0.941695,0][-2.90107,2.21395,0.485191][0.872883,-0.48244,-0.0729886][0.965848,0.941731,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-3.17363,1.78669,-0.269781][0.881352,-0.471564,-0.0290701][0.968258,0.940795,0][-2.94928,2.19283,-0.0559046][0.870347,-0.488958,-0.0584488][0.967536,0.941695,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-3.39213,1.36494,0.0158647][0.879411,-0.475185,-0.0289195][0.967427,0.939833,0][-3.17363,1.78669,-0.269781][0.881352,-0.471564,-0.0290701][0.968258,0.940795,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-3.34392,1.38606,0.55696][0.885386,-0.460851,-0.0608855][0.96574,0.939869,0][-3.39213,1.36494,0.0158647][0.879411,-0.475185,-0.0289195][0.967427,0.939833,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-3.0984,1.81057,0.791623][0.872883,-0.48244,-0.0729886][0.96495,0.940818,0][-3.34392,1.38606,0.55696][0.885386,-0.460851,-0.0608855][0.96574,0.939869,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.123886,0.192085,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.387848,0.00782941,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.384345,0.02709,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.16442,0.470028,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.495709,0.697243,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.480216,0.734461,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.26096,0.779766,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.254246,0.805328,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.230699,0.799513,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.82863,0.0670486,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.167814,0.727134,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.149449,0.732513,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.527023,0.540673,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.296139,0.277209,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][-1.43465,-3.80468,1.01451][0.384749,0.875395,-0.292665][0.742024,0.0960005,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.670654,0.408271,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.673407,0.4318,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.26901,0.379412,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.261784,0.357731,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.230699,0.280876,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.442754,0.474802,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.46196,0.480397,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.165817,0.372161,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.0530634,0.976224,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.0799939,0.979461,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.0792213,0.991555,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.494165,0.670393,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.472225,0.661771,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.396883,0.502367,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.383782,0.516648,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.937918,0.354024,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.906314,0.343866,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.916214,0.323945,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.061693,0.432353,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.589511,0.785309,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.578491,0.806066,0][2.113,-3.43597,-1.02756][-3.28522,1.33183,-0.0583912][0.52343,0.803958,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.149629,0.145086,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.0690346,0.773631,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.0950667,0.772811,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.384345,0.02709,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.81296,0.00763081,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.821728,0.0262653,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.0410481,0.267099,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.135267,0.22369,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.0300846,0.922594,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.0188724,0.900813,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.765742,0.413187,0][-0.896673,-3.48567,-3.07158][0.317407,1.6594,0.0496784][0.775806,0.416087,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.328002,0.837147,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.362718,0.836912,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.378458,0.860588,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.6859,0.511732,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.708617,0.509632,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.708815,0.526568,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.487437,0.42579,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.506463,0.408263,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.647867,0.988803,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.627469,0.999387,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.616103,0.989235,0][0.489028,-0.641741,-4.49622][-0.10315,0.704063,-0.00952558][0.549918,0.904465,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.527779,0.905332,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.723022,0.744787,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.749195,0.744428,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.712062,0.76781,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.269646,0.996083,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.250407,0.997489,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.255457,0.975032,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.404226,0.267086,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.403506,0.293699,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.37017,0.947756,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.342304,0.937531,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.346271,0.918613,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.527023,0.540673,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.333092,0.554268,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0.340996,0.61833,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.0603026,0.581433,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.0352482,0.571129,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.334824,0.416135,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.243477,0.484984,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.465946,0.0521855,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.472337,0.0318556,0][-2.82825,1.35521,-2.82579][1.76824,0.139234,-0.155654][0.353224,0.999411,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.345344,0.971178,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.362504,0.978777,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.719264,0.602351,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.734073,0.578575,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.733479,0.597145,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.413579,0.114338,0][-0.896673,-3.48567,-3.07158][0.317407,1.6594,0.0496784][0.427679,0.10191,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.433133,0.110852,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.265195,0.635756,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.249312,0.626807,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.258495,0.612284,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.54802,0.572241,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.571776,0.578072,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.57242,0.600077,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.298437,0.889049,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.27378,0.877359,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.284529,0.856966,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.733479,0.597145,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.750522,0.570572,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.749195,0.744428,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.755685,0.769342,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.712062,0.76781,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.632355,0.817198,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.616103,0.817829,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.616824,0.795592,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.346271,0.918613,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.373748,0.925239,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.37017,0.947756,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.80843,0.413686,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.826556,0.407861,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.832557,0.447945,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.782778,0.413361,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.79717,0.450642,0][-1.00145,-3.5047,-1.97125][0.71134,2.79572,0.663654][0.783565,0.448929,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.446698,0.808195,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.427739,0.790917,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.437468,0.779442,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0.0613112,0.383537,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.0374074,0.373249,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.330591,0.274857,0][0.489028,-0.641741,-4.49622][-0.10315,0.704063,-0.00952558][0.304176,0.277069,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.330591,0.274857,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.331867,0.237526,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.00271304,0.117637,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.0225671,0.1406,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.0101836,0.876653,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.658519,0.0402022,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.685487,0.0157528,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.00145,-3.5047,-1.97125][0.71134,2.79572,0.663654][0.730492,0.00508265,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.743808,0.00835609,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.559594,0.532793,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.545434,0.536064,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.871976,0.488864,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.885405,0.504924,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.868714,0.519313,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.633891,0.768852,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.616103,0.764136,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.636378,0.745502,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.708815,0.526568,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.690908,0.533563,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.6859,0.511732,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.654721,0.863053,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.616103,0.863297,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.636165,0.847772,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.558619,0.728743,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.56417,0.706722,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.385714,0.791335,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.384127,0.770505,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.402632,0.762595,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.616103,0.886323,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.641463,0.885471,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.626636,0.906669,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.556795,0.880285,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.55691,0.901255,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.616824,0.795592,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.632979,0.794405,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.632355,0.817198,0][2.113,-3.43597,-1.02756][-3.28522,1.33183,-0.0583912][0.52343,0.803958,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.543783,0.787672,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.589511,0.785309,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.948709,0.116884,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.927125,0.118021,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.918093,0.0990955,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.136594,0.670811,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.283541,0.415959,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.258983,0.416094,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.165199,0.543365,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.453715,0.88151,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.427739,0.87712,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.431831,0.85403,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.110392,0.757311,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.137124,0.758478,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.426399,0.280044,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.441437,0.265028,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.427739,0.634012,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.472225,0.661771,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.70207,0.257353,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.387054,0.486418,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.469517,0.703352,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.495709,0.697243,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.309497,0.317665,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.325319,0.322266,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.69709,0.571994,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.641257,0.599881,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.251887,0.664596,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.230966,0.666284,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.230699,0.649482,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.398025,0.871934,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.337416,0.872744,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.328861,0.859432,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.465946,0.0521855,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.527342,0.856057,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.517882,0.858112,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.545399,0.828252,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.997992,0.329898,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.983248,0.330172,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.997187,0.308697,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.720182,0.909772,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.700697,0.899483,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.720543,0.892998,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.422219,0.0507887,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.508502,0.370107,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.547414,0.00188518,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.918657,0.441981,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.903069,0.459299,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.661379,0.771124,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.669708,0.744428,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.689686,0.747828,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.237096,0.63563,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.256219,0.641672,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.390493,0.117738,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.566806,0.475576,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.584917,0.4698,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.255457,0.975032,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.278234,0.974756,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.269646,0.996083,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.087099,0.391415,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.918093,0.0990955,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.938917,0.0926758,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.948709,0.116884,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.993759,0.237791,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.975201,0.215665,0][-0.478381,-2.4287,-4.17371][-0.290085,-1.26225,-0.0420152][1,0.215579,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.111255,0.231939,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.362504,0.978777,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.369335,0.99868,0][-2.82825,1.35521,-2.82579][1.76824,0.139234,-0.155654][0.353224,0.999411,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][-0.56503,3.28431,0.359804][0.16819,-0.976856,-0.132154][0.467942,0.340063,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.479462,0.931198,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.444746,0.93175,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.455449,0.913921,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.427739,0.914345,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.455449,0.913921,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.444746,0.93175,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.664041,0.260866,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.654686,0.261989,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.858195,0.177774,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.908117,0.172208,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.192565,0.094652,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.244935,0.0965157,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.541789,0.656255,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.521777,0.658869,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.522132,0.640066,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.305321,0.612567,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.317555,0.612524,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.097179,0.193405,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.656775,0.313983,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.647363,0.33769,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.622538,0.329687,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.254246,0.805328,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.26096,0.779766,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.292626,0.800113,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.669708,0.744428,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.661379,0.771124,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.647765,0.766194,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.821728,0.0262653,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.761242,0.0210431,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.636165,0.847772,0][0.0627435,-2.90729,-3.84954][-0.9396,-0.0580783,0.00340589][0.667293,0.847394,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.654721,0.863053,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.806365,0.894387,0][0.806652,-3.45923,-3.23931][0.336426,-0.826164,-1.06669][0.806438,0.876875,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.828052,0.877285,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.344621,0.764102,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.366238,0.791045,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.336372,0.785479,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.296139,0.277209,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.44867,0.223206,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.465557,0.215579,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.244645,0.501763,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.898295,0.124273,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.863223,0.0855078,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.885313,0.0960967,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.344621,0.764102,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.372078,0.772639,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.366238,0.791045,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.632979,0.794405,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.663097,0.816605,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.632355,0.817198,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.683382,0.0942223,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.668726,0.0682319,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.786085,0.135797,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.000108897,0.693006,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.0131763,0.678744,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.948905,0.0183156,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.924155,0.0281992,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.91667,0.0133118,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.196775,0.167757,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.174809,0.178951,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.171312,0.158406,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.674494,0.475429,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.796518,0.599373,0][-1.44336,1.65918,-2.8417][-0.429928,-1.57199,0.0422835][0.768817,0.594243,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.392651,0.941985,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.37017,0.947756,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.373748,0.925239,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.325319,0.322266,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.110392,0.757311,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.683577,0.264169,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.0338147,0.307267,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.335353,0.290944,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.332963,0.319416,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.338988,0.28013,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.383039,0.171855,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.364049,0.193201,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.336466,0.173773,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.969696,0.592289,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.945967,0.592395,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.939615,0.570904,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.902603,0.259412,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.901185,0.218754,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.924542,0.237306,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.165685,0.900057,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.651814,0.510243,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.669876,0.536337,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.653659,0.528785,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.230699,0.280876,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.23299,0.254281,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.898295,0.124273,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.875123,0.117965,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.863223,0.0855078,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.34765,0.692174,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.299617,0.70418,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.00271304,0.117637,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.00628146,0.099174,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.0188724,0.900813,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.730898,0.151012,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.772679,0.147676,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.685555,0.115989,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.709061,0.137798,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.188386,0.494899,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.189036,0.518881,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.252085,0.0804314,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.849899,0.634012,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.875021,0.634069,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.877398,0.660527,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.479461,0.533239,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.898295,0.124273,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.885313,0.0960967,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.903291,0.0992164,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.350981,0.542551,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.333092,0.554268,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.588873,0.281194,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.299431,0.287096,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.298415,0.315467,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.632979,0.794405,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.656501,0.793298,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.663097,0.816605,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.984789,0.412128,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.977757,0.434045,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.961455,0.428867,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.014144,0.451472,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.0367966,0.441341,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.401604,0.148598,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.517883,0.723186,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.538247,0.732503,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.685487,0.0157528,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.70736,0.000995784,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.855965,0.570572,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.871354,0.58655,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.84458,0.602256,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0.0448899,0.0498331,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.00247577,0.0809866,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.00188281,0.0634316,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.404226,0.267086,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.545399,0.828252,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.581896,0.833151,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.552301,0.855531,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.70736,0.000995784,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][-0.659377,-4.08018,-0.825308][0.177471,0.960941,0.21236][0.714898,0.0407255,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-1.17183,1.73682,2.83213][0.257523,-0.583838,-0.769945][0.510839,0.0164694,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.517882,0,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.760184,0.528698,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.776202,0.511485,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.785338,0.535686,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.538247,0.732503,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.558619,0.728743,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.328801,0.853247,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.328002,0.837147,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.378458,0.860588,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0.722182,0.237169,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.456523,0.752463,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.443958,0.747951,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.858195,0.0491283,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.907887,0.0460175,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.909308,0.0588617,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.272807,0.145855,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.250215,0.140951,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.142146,0.570155,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.373748,0.925239,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.395458,0.919032,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.392651,0.941985,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.487437,0.42579,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.536083,0.498155,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.523972,0.455575,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.378031,0.427668,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.393455,0.442133,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.906314,0.343866,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.879738,0.325001,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.89447,0.308697,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.16442,0.470028,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.234158,0.921538,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.259006,0.927869,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.256599,0.946384,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.461913,0.0958195,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0.462462,0.0737762,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.218949,0.101181,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.230885,0.0819057,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.0937563,0,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.120396,0.000433503,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.476308,0.642692,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.499737,0.643295,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.668726,0.0682319,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.683382,0.0942223,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.658755,0.0887882,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.89447,0.308697,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.916214,0.323945,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.906314,0.343866,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.368207,0.530052,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.149629,0.145086,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.136594,0.670811,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.532861,0.374304,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.496046,0.460581,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.494091,0.43702,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.641463,0.885471,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.650886,0.906107,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.626636,0.906669,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.602248,0.506023,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.584917,0.4698,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.281921,0.618782,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.256219,0.641672,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.761242,0.0210431,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.773952,0.01101,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.827418,0.449796,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.815953,0.46123,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.80843,0.413686,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.638227,0.664442,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.612842,0.66731,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.610483,0.656736,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.564368,0.662295,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.610483,0.656736,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.612842,0.66731,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.113788,0.396003,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.087099,0.391415,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.165817,0.372161,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.164885,0.393138,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.602248,0.506023,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.598888,0.527596,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.552301,0.855531,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.581896,0.833151,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.577387,0.855347,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.5687,0.219082,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.58299,0.235001,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.542134,0.218145,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.285286,0.559659,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.268499,0.565853,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.636378,0.745502,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.658131,0.74662,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.633891,0.768852,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.427739,0.600703,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.445919,0.587065,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.449487,0.601968,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.498363,0.592837,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.473183,0.596158,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.471736,0.575845,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.41052,0.191289,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.405213,0.180765,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.43823,0.191094,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.56417,0.706722,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.586538,0.712435,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.584243,0.724755,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.770209,0.917144,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.745994,0.90929,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.748859,0.894618,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.672155,0.283535,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.683577,0.264169,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.0709798,0.191167,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.0461849,0.185707,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.0475333,0.163799,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.0255961,0.157803,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.0475333,0.163799,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.0461849,0.185707,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0.340996,0.61833,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.351853,0.603494,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.365681,0.611228,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.320704,0.59543,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.317555,0.612524,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.305321,0.612567,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.339591,0.381126,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.366177,0.366573,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-1.07299,1.57861,-3.69263][-0.869273,-3.35365,-0.293602][0.793585,0.580419,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.796518,0.599373,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.0360168,0.254973,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.0191833,0.272054,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.00960429,0.262086,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.742444,0.24271,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0.722182,0.237169,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.331867,0.237526,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.330591,0.274857,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.966336,0.107055,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.948709,0.116884,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.938917,0.0926758,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.0338147,0.307267,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.0267489,0.294055,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.713376,0.272259,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.70207,0.257353,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.703983,0.32543,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.697738,0.350721,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.672088,0.345127,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.142146,0.570155,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.136711,0.591242,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.821728,0.0262653,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.826964,0.0462978,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.428881,0.512465,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.427739,0.490475,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.240931,0.506665,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.230699,0.525649,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.0360168,0.254973,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.0251372,0.241737,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.94303,0.708046,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.966747,0.696489,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.99068,0.709531,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.243353,0.44323,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.243552,0.424939,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.328861,0.859432,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.378458,0.860588,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.398025,0.871934,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.365681,0.611228,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0.340996,0.61833,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.641257,0.599881,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.6213,0.605986,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.614419,0.592529,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.84458,0.602256,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.832829,0.58406,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.855965,0.570572,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.436853,0.172189,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.43823,0.191094,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.405213,0.180765,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][-1.17183,1.73682,2.83213][0.257523,-0.583838,-0.769945][0.510839,0.0164694,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.746741,0.511431,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.764374,0.48503,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.785893,0.490497,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][-0.56503,3.28431,0.359804][0.16819,-0.976856,-0.132154][0.467942,0.340063,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.46577,0.357948,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.433133,0.110852,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.413579,0.114338,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.423714,0.143781,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.401604,0.148598,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.163636,0.747667,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.137124,0.758478,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.433835,0.307883,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.251555,0.707436,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.247887,0.692058,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.28964,0.0058458,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.314148,0,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.203777,0.285622,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.207091,0.310536,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.275386,0.036588,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.338988,0.28013,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.976299,0.308927,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.997187,0.308697,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.983248,0.330172,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.101698,0.998106,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.0792213,0.991555,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.0799939,0.979461,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.639649,0.249343,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.773952,0.01101,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.0603026,0.581433,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.11216,0.590934,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.0863435,0.587798,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.409044,0.102017,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.390493,0.117738,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.272551,0.603932,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.281921,0.618782,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.00112927,0.474134,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.0169244,0.466544,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.0216151,0.482888,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.993759,0.237791,0][-1.04061,-2.32689,-3.37362][-0.418262,-1.82898,-0.0643852][0.975819,0.232873,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.975201,0.215665,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.545434,0.536064,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.527023,0.540673,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.0301839,0.752332,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.785338,0.535686,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.812627,0.536773,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.144857,0.888057,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.292626,0.800113,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.284641,0.814738,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.254246,0.805328,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.619976,0.106101,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.628954,0.128986,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.62197,0.0841304,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.184284,0.447162,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.183075,0.471456,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.195872,0.134,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.17399,0.140291,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.17399,0.140291,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.499644,0.217068,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.653659,0.528785,0][2.59198,1.56564,-1.68763][-2.05047,-0.41982,1.03203][0.638674,0.505309,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.651814,0.510243,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.614419,0.592529,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.641257,0.599881,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.932209,0.0592869,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.909308,0.0588617,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.907887,0.0460175,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.436245,0.247167,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.44867,0.223206,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.441437,0.265028,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.720182,0.909772,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.693599,0.913057,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.700697,0.899483,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.797315,0.410163,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.79717,0.450642,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.782778,0.413361,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.46196,0.480397,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.475543,0.483915,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.508284,0.460431,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.493147,0.499053,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.218949,0.174045,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.242816,0.181881,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.241374,0.192899,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.304176,0.382391,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.0407033,0.347404,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.0199006,0.351945,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.0228162,0.341646,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.384345,0.02709,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.40175,0.0395536,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.821906,0.314806,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.848768,0.315371,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.250215,0.140951,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.230594,0.132051,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.173404,0.0499612,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.195244,0.0551766,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.195923,0.0745149,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.00247577,0.0809866,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0.0448899,0.0498331,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.52621,0.927505,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0.548375,0.942531,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.537162,0.955654,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.461913,0.0958195,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.786085,0.135797,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.772679,0.147676,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.061693,0.432353,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.0878972,0.424894,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.113919,0.419985,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.830483,0.281188,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.774548,0.285241,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.769901,0.263591,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.82863,0.0670486,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.826791,0.0877728,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.305251,0.98712,0][-2.01201,0.18536,-3.95544][0.80369,2.68925,0.00912781][0.280425,0.996018,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.278234,0.974756,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.56285,0.696489,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.56417,0.706722,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.752225,0.447457,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.746741,0.409228,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.758092,0.408431,0][-1.44336,1.65918,-2.8417][-0.429928,-1.57199,0.0422835][0.558387,0.427623,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.534102,0.435217,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.540626,0.423925,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.506463,0.408263,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.536604,0.407861,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.0106917,0.70953,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.000108897,0.693006,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.384127,0.770505,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.385714,0.791335,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.366238,0.791045,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.806365,0.827478,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.829872,0.831651,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.824102,0.84731,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.0216064,0.529349,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.0199904,0.51535,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.0101836,0.876653,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.00443156,0.852184,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.0232653,0.804176,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.00109866,0.830106,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.169732,0.0319265,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.146349,0.00423054,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.797017,0.636883,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.823627,0.634961,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.825911,0.659941,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.445919,0.587065,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.471736,0.575845,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.473183,0.596158,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.771832,0.865053,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.750236,0.844716,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.775511,0.848418,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-1.43465,-3.80468,1.01451][0.384749,0.875395,-0.292665][0.742024,0.0960005,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.730898,0.151012,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.188617,0.365772,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.852271,0.660282,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.825911,0.659941,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.823627,0.634961,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.152387,0.637961,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.141486,0.652692,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.129131,0.629139,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.237721,0.99175,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.230699,0.971178,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.255457,0.975032,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.299431,0.287096,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.309497,0.317665,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.298415,0.315467,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.298415,0.315467,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.309497,0.317665,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.165685,0.900057,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.159723,0.926703,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.690908,0.533563,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.669876,0.536337,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.651814,0.510243,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.864984,0.41627,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.884392,0.407861,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.911906,0.420772,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.884392,0.407861,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.685361,0.634056,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.721189,0.644062,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.723174,0.663942,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.135267,0.22369,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.158339,0.218675,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0.0448899,0.0498331,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.230699,0.799513,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.23594,0.77356,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.26096,0.779766,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.113919,0.419985,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.138517,0.418611,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.331867,0.237526,0][-0.478381,-2.4287,-4.17371][-0.290085,-1.26225,-0.0420152][0.3371,0.224385,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.720889,0.949033,0][-0.478381,-2.4287,-4.17371][-0.290085,-1.26225,-0.0420152][0.697877,0.949482,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.693599,0.935588,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.927125,0.118021,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.898295,0.124273,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.903291,0.0992164,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.40175,0.0395536,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.422219,0.0507887,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.402333,0.241142,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.381085,0.240516,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.397508,0.216636,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.717716,0.00457982,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.70736,0.000995784,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.760116,0.447542,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.758092,0.408431,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.00628146,0.099174,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.00247577,0.0809866,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.931299,0.173247,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.383782,0.516648,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.368207,0.530052,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.998794,0.259965,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.996998,0.274956,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.975201,0.278078,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.663187,0.657313,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.638227,0.664442,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.634092,0.649992,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.00637025,0.149888,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.0255961,0.157803,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.0234937,0.177568,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.827751,0.934395,0][-0.984956,4.19924,0.285077][0.0472786,-1.04725,1.03886][0.806365,0.936269,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.806458,0.923952,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.715021,0.982568,0][-0.984956,4.19924,-0.284659][0.232641,1.02218,-1.03886][0.693599,0.983967,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.693965,0.971656,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.901185,0.218754,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.902603,0.259412,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.880771,0.240389,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.573646,0.340878,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.592973,0.320645,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.685555,0.115989,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.804538,0.770287,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.777859,0.744428,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.809489,0.749406,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.189036,0.518881,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.169842,0.520732,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.622538,0.329687,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.633869,0.305709,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.656775,0.313983,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.806458,0.923952,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.823849,0.926118,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.827751,0.934395,0][-0.0971423,3.46798,0.102702][-0.271165,-0.12141,0.322146][0.91513,0.910189,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.936415,0.909204,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.932707,0.915214,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.859437,0.947056,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.884835,0.946009,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.881799,0.952385,0][-0.0971422,3.46798,-0.102285][0.243201,0.0410466,-0.225485][0.940522,0.867325,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.920256,0.874437,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.91438,0.867411,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.639294,0.704691,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.665271,0.705894,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.664431,0.722254,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.618066,0.69775,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.639294,0.704691,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.637696,0.718867,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.537136,0.161512,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.709061,0.137798,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.730898,0.151012,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.360269,0.415175,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.187859,0.804176,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.208101,0.804236,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.204762,0.818167,0][-0.478381,-2.4287,-4.17371][-0.290085,-1.26225,-0.0420152][0.3371,0.224385,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.360082,0.230912,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.569723,0.162826,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.537136,0.161512,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.378031,0.427668,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.360269,0.415175,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.549519,0.59429,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.524382,0.591971,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.522095,0.570572,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.245219,0.215579,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.255786,0.233753,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.238877,0.228523,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.165817,0.372161,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.384345,0.02709,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-0.659377,-4.08018,-0.825308][0.177471,0.960941,0.21236][0.714898,0.0407255,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.195923,0.0745149,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.192565,0.094652,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.195923,0.0745149,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.173404,0.0499612,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.980296,3.43357e-005,0][0.0627435,-2.90729,-3.84954][-0.9396,-0.0580783,0.00340589][0.998146,0,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.997857,0.00998831,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.436853,0.172189,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.405213,0.180765,0][0.0627435,-2.90729,-3.84954][-0.9396,-0.0580783,0.00340589][0.405724,0.171855,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.0937563,0,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.465557,0.215579,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.482165,0.215795,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.690908,0.533563,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.669293,0.511516,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.6859,0.511732,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.671713,0.0503972,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.671713,0.0503972,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.658519,0.0402022,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.439024,0.293888,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.901506,0.490424,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.920767,0.497086,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.899479,0.52027,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.598888,0.527596,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.581902,0.541007,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.0188724,0.900813,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.0101836,0.876653,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.299617,0.70418,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.142146,0.570155,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.0251372,0.241737,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.0558077,0.215579,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.750522,0.570572,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.733479,0.597145,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.734073,0.578575,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.165415,0.883446,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.144857,0.888057,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.899461,0.799037,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.872948,0.804773,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.8825,0.793298,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.732443,0.180577,0][0.242637,3.43438,-0.813593][-0.00360188,0.999269,-0.0380686][0.756122,0.18308,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.732279,0.188956,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.970006,0.512326,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.950611,0.498223,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.956258,0.488864,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.159723,0.926703,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.138612,0.935546,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.115308,0.94267,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.588873,0.281194,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.449556,0.69915,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.446322,0.723794,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.427739,0.722566,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.428993,0.748188,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.427739,0.722566,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.446322,0.723794,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.196129,0.114655,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.195872,0.134,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.654686,0.261989,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.644341,0.278836,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.631834,0.272879,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.622538,0.261145,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.639649,0.249343,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.338878,0.00176839,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.364099,0.000661793,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.292626,0.800113,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.28978,0.762595,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.314198,0.768857,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.647765,0.766194,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.633891,0.768852,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.658131,0.74662,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.390493,0.117738,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.409044,0.102017,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.413579,0.114338,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.393899,0.126402,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.413579,0.114338,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.0301839,0.752332,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.0136957,0.738362,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.807397,0.215579,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0.828778,0.216473,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.830462,0.237081,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.427716,0.0796007,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.80843,0.413686,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.815953,0.46123,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.797315,0.410163,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.96239,0.570572,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.999697,0.575439,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.99653,0.587556,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.255457,0.975032,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.250407,0.997489,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.237721,0.99175,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.508502,0.370107,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.532861,0.374304,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.785338,0.535686,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.776202,0.511485,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.110392,0.757311,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.149449,0.732513,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.439024,0.293888,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.426399,0.280044,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.698672,0.467689,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.700635,0.439294,0][-1.04061,-2.32689,-3.37362][-0.418262,-1.82898,-0.0643852][0.990578,0.759672,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.971635,0.758515,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.972458,0.744428,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.693599,0.935588,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.720759,0.935231,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.720889,0.949033,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.769323,0.947184,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.774697,0.951425,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.755874,0.960392,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.328861,0.859432,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.328801,0.853247,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.378458,0.860588,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.779241,0.00151819,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.77927,0.0097655,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.773952,0.01101,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.261635,0.847012,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.284529,0.856966,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.27378,0.877359,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.250833,0.864577,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.230699,0.850787,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.24077,0.836912,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.743808,0.00835609,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.761242,0.0210431,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.797315,0.410163,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.815953,0.46123,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.79717,0.450642,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.335353,0.290944,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.332963,0.319416,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.328015,0.316745,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.332963,0.319416,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.328015,0.316745,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0272674,0.993188,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.00206603,0.999207,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0,0.981926,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.021982,0.055638,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0.0448899,0.0498331,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.466183,0.53644,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.451376,0.53973,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.241892,0.551997,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.230699,0.525649,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.275386,0.036588,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.436245,0.247167,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.720032,0.851226,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.705624,0.870663,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.693599,0.861718,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.70207,0.257353,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.692101,0.258127,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.114551,0.824559,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.135744,0.836518,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.243353,0.44323,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.714952,0.24214,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.732146,0.250878,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.724997,0.264124,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0.722182,0.237169,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.714952,0.24214,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.243477,0.484984,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.383782,0.516648,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.562304,0.985219,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.533693,0.997687,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.517882,0.986202,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.776202,0.511485,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.760184,0.528698,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.746741,0.511431,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.683577,0.264169,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.686464,0.282127,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.672155,0.283535,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.581902,0.541007,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.559594,0.532793,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.559594,0.532793,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.573646,0.340878,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.547414,0.00188518,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.577273,0.00319857,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.275386,0.036588,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.457554,0.856296,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.48289,0.857839,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.479572,0.884356,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.78758,0.238024,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.809185,0.236211,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.810742,0.258122,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.464253,0.117523,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.461913,0.0958195,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.338988,0.28013,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.330591,0.274857,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.527779,0.905332,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.517882,0.901198,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.929568,0.0424217,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.954135,0.0362682,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.958123,0.0563961,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.614419,0.592529,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.613692,0.575886,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.0792213,0.991555,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.0533926,0.990551,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.0530634,0.976224,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0,0.981926,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.0259732,0.977111,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0272674,0.993188,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.146349,0.00423054,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.170804,0.0112963,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.169732,0.0319265,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.244935,0.0965157,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.252085,0.0804314,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.00628146,0.099174,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.691249,0.703307,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.715814,0.696489,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.716734,0.716039,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.17399,0.140291,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.149629,0.145086,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.658519,0.191413,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.681765,0.180577,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.710105,0.191673,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.283541,0.415959,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.0216064,0.529349,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.00502142,0.520871,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.0216064,0.529349,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.725251,0.218027,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.747103,0.215579,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.747728,0.230364,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.267009,0.183504,0][-0.22847,3.42708,-0.819523][-0.0347766,0.998736,-0.0362774][0.289814,0.176794,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.266518,0.1923,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.0136957,0.738362,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.40175,0.0395536,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.350981,0.542551,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.522132,0.640066,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.542194,0.634516,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.541789,0.656255,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.708815,0.526568,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.708617,0.509632,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.723622,0.52665,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.709061,0.137798,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.62113,0.0623137,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.62197,0.0841304,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.902603,0.259412,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.901208,0.279132,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.879738,0.276049,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.287202,0.377391,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.26901,0.379412,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.0911532,0.946198,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.115308,0.94267,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.113594,0.95405,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.437468,0.779442,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.457699,0.792752,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.446698,0.808195,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.457699,0.792752,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.478934,0.805533,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.467089,0.824465,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.46577,0.357948,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.691311,0.721539,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.664431,0.722254,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.665271,0.705894,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.716734,0.716039,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.691311,0.721539,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.691249,0.703307,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.153003,0.684521,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.674494,0.475429,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.645328,0.475744,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.475543,0.483915,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.496046,0.460581,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.508284,0.460431,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.496046,0.460581,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.508284,0.460431,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.0228162,0.341646,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.0407033,0.347404,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.664041,0.260866,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.0216151,0.482888,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.0198882,0.499108,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.0216151,0.482888,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.365681,0.611228,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.375886,0.624954,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.40265,0.707498,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.381957,0.723315,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.369824,0.71113,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.129131,0.629139,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.141486,0.652692,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.883404,0.535392,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.868714,0.519313,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.885405,0.504924,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.294287,0.618524,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.305321,0.612567,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.961455,0.428867,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.972727,0.407861,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.984789,0.412128,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.532421,0.4585,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.534102,0.435217,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.532421,0.4585,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.523972,0.455575,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.067367,0.0030076,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.139996,0.396438,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.113788,0.396003,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.931299,0.173247,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.908117,0.172208,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.610483,0.656736,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.634092,0.649992,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.638227,0.664442,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.91005,0.589033,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.896161,0.603473,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.871354,0.58655,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.243353,0.44323,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.23512,0.462079,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.0799939,0.979461,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.103296,0.988904,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.101698,0.998106,0][-0.432264,3.42284,0.685575][-0.121962,0.357619,-0.0945385][0.580737,0.647362,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.595835,0.634012,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.60222,0.642139,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.393899,0.126402,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.393899,0.126402,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.0367966,0.441341,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.272807,0.145855,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.272807,0.145855,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.265195,0.635756,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.258495,0.612284,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.265195,0.635756,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.920856,0.700081,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.861644,0.709321,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.858721,0.696489,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.637696,0.718867,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.616103,0.708961,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.618066,0.69775,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.244645,0.501763,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.243477,0.484984,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.589511,0.785309,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.543783,0.787672,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.552476,0.773273,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.251887,0.664596,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.230699,0.649482,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.251887,0.664596,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.32925,0.61829,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0.340996,0.61833,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0,0.53267,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.00502142,0.520871,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.0478724,0.805717,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.0714487,0.80431,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.00443156,0.852184,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.0863435,0.587798,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.0603026,0.581433,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.598734,0.125968,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.183075,0.471456,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.16442,0.470028,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.0948579,0.810744,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.471736,0.575845,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.507082,0.570847,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.498363,0.592837,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.507082,0.570847,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.522095,0.570572,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.524382,0.591971,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.440657,0.338421,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.433835,0.307883,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.46577,0.357948,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.440657,0.338421,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.0631896,0.254306,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.0198882,0.499108,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.305321,0.612567,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.304276,0.595418,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.320704,0.59543,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.939615,0.570904,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.96239,0.570572,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.969696,0.592289,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.795849,0.315301,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.797023,0.341865,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.772151,0.343727,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.258495,0.612284,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.272551,0.603932,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.0169244,0.466544,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.014144,0.451472,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.592584,0.145887,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0.462462,0.0737762,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.230699,0.525649,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.0192606,0.64918,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.0351305,0.635864,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.0521925,0.623969,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.545434,0.536064,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.517882,0.901198,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.517913,0.880381,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.0878972,0.424894,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.398174,0.472004,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.387054,0.486418,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.945636,0.235448,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.945447,0.258179,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.924343,0.259308,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.149629,0.145086,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.194144,0.262849,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.314148,0,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.252085,0.0804314,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.57242,0.600077,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.549519,0.59429,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.54802,0.572241,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.138517,0.418611,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.160823,0.420802,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.333849,0.343769,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][-1.07299,1.57861,-3.69263][-0.869273,-3.35365,-0.293602][0.793585,0.580419,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.810655,0.581147,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.796518,0.599373,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.0225671,0.1406,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.00259372,0.135401,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.00271304,0.117637,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.283318,0.733239,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.261297,0.740421,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.540626,0.423925,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.536604,0.407861,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.645328,0.475744,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.632255,0.443124,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.165199,0.543365,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.16449,0.568179,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.672088,0.345127,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.680043,0.320257,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.703983,0.32543,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.0475333,0.163799,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.0709798,0.191167,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.0225671,0.1406,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.758966,0.989957,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.773646,0.99312,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.745994,0.992541,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.653659,0.528785,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.653784,0.54046,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.632255,0.510838,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.244645,0.501763,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][-0.984956,4.19924,-0.284659][0.232641,1.02218,-1.03886][0.747612,0.317991,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.726157,0.31727,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.729608,0.308787,0][-0.0971422,3.46798,-0.102285][0.243201,0.0410466,-0.225485][0.970087,0.873004,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.987464,0.867326,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.991395,0.873192,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.204762,0.818167,0][-1.04061,-2.32689,-3.37362][-0.418262,-1.82898,-0.0643852][0.18876,0.817949,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.187859,0.804176,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.972458,0.744428,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.991401,0.745584,0][-1.04061,-2.32689,-3.37362][-0.418262,-1.82898,-0.0643852][0.990578,0.759672,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.472337,0.0318556,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.495188,0.015072,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.0431244,0.774611,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.0301839,0.752332,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.120396,0.000433503,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.173404,0.0499612,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.472337,0.0318556,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.136594,0.670811,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.327425,0.971987,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.345344,0.971178,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.340851,0.996456,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.456523,0.752463,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.480216,0.734461,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.747728,0.230364,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.742444,0.24271,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.810742,0.258122,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.769901,0.263591,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.78758,0.238024,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.0192606,0.64918,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.0216223,0.281731,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.0410481,0.267099,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.724997,0.264124,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.713376,0.272259,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.899479,0.52027,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.920767,0.497086,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.921046,0.522014,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.552301,0.855531,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.527342,0.856057,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.545399,0.828252,0][-0.984956,4.19924,0.285077][0.0472786,-1.04725,1.03886][0.802248,0.184575,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.823142,0.180577,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.82815,0.185557,0][-0.0971423,3.46798,0.102702][-0.271165,-0.12141,0.322146][0.885565,0.915553,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.859437,0.916444,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.865046,0.909204,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.253726,0.296309,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.24394,0.297967,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.230699,0.280876,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.542134,0.218145,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.5687,0.219082,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.911906,0.420772,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.918657,0.441981,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.879738,0.325001,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.906314,0.343866,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.880798,0.353776,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.592584,0.145887,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.569723,0.162826,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.484172,0.139903,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.83103,0.258914,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.850173,0.261248,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.847956,0.283189,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.12547,0.991242,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.163331,0.976224,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.188404,0.989649,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.889376,0.827478,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.878596,0.837761,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.859437,0.828618,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.334824,0.416135,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.360269,0.415175,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.334824,0.416135,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.693599,0.810582,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.714333,0.793298,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.72382,0.807972,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.904053,0.153165,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.925534,0.146446,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.283318,0.733239,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.305659,0.722567,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.283318,0.733239,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.515123,0.674315,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.494165,0.670393,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.494165,0.670393,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.295208,0.340033,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.573646,0.340878,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.542134,0.218145,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.0911532,0.946198,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.115308,0.94267,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.0911532,0.946198,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.790069,0.71093,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.764826,0.704712,0][0.471785,3.43019,0.696953][-0.685217,1.20019,0.505061][0.764749,0.698281,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.0300846,0.922594,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.366177,0.366573,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.35752,0.385687,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.339591,0.381126,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.443958,0.747951,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.446322,0.723794,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.907887,0.0460175,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.929568,0.0424217,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.932209,0.0592869,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.958123,0.0563961,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.932209,0.0592869,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.929568,0.0424217,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.113788,0.396003,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.692101,0.258127,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.683577,0.264169,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.693599,0.861718,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.711629,0.844314,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.720032,0.851226,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.537136,0.161512,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.520585,0.160597,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.484172,0.139903,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.520585,0.160597,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.714952,0.24214,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.724997,0.264124,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.714952,0.24214,0][2.59198,1.56564,-1.68763][-2.05047,-0.41982,1.03203][0.986204,0.18842,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.991096,0.19227,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.974416,0.191489,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.519203,0.216473,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.542134,0.218145,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.0410481,0.267099,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.0631896,0.254306,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.467089,0.824465,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.446698,0.808195,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.457699,0.792752,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.821372,0.365558,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.847575,0.341795,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.847575,0.341795,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.844824,0.367723,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.821372,0.365558,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.871354,0.58655,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.855965,0.570572,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.877182,0.571691,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.871354,0.58655,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.877182,0.571691,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.91005,0.589033,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.364099,0.000661793,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.364099,0.000661793,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.387848,0.00782941,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.745994,0.946709,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.769323,0.947184,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.755874,0.960392,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.538247,0.732503,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.558619,0.728743,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.558569,0.743708,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.0863435,0.587798,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.916214,0.323945,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.942006,0.332638,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.937918,0.354024,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.954125,0.355723,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.937918,0.354024,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.942006,0.332638,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.831662,0.7578,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.859365,0.744428,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.877108,0.757425,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.709061,0.137798,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.684879,0.133272,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.685555,0.115989,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.296139,0.277209,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.299431,0.287096,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.663097,0.816605,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.656501,0.793298,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.664034,0.795657,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.441437,0.265028,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.436245,0.247167,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.648795,0.407861,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.670654,0.408271,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.00443156,0.852184,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.00109866,0.830106,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.0234937,0.177568,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.00336906,0.166578,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.00637025,0.149888,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.761242,0.0210431,0][-0.984956,4.19924,0.285077][0.0472786,-1.04725,1.03886][0.976299,0.364419,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.976901,0.352479,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.988254,0.364286,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.859437,0.868783,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.884815,0.867325,0][-0.984956,4.19924,0.285077][0.0472786,-1.04725,1.03886][0.884535,0.879639,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.976901,0.352479,0][-0.984956,4.19924,-0.284659][0.232641,1.02218,-1.03886][0.988855,0.352346,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.988254,0.364286,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.729608,0.308787,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.746857,0.305709,0][-0.984956,4.19924,-0.284659][0.232641,1.02218,-1.03886][0.747612,0.317991,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.77927,0.0097655,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.773952,0.01101,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.827418,0.449796,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.80843,0.413686,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.832557,0.447945,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.697738,0.350721,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.689829,0.375415,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.663414,0.36956,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.097179,0.193405,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.0709798,0.191167,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-0.659377,-4.08018,-0.825308][0.177471,0.960941,0.21236][0.714898,0.0407255,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-0.659377,-4.08018,-0.825308][0.177471,0.960941,0.21236][0.714898,0.0407255,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.457554,0.856296,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.479572,0.884356,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.453715,0.88151,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.187245,0.316465,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.207091,0.310536,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.836548,0.704325,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.814531,0.7103,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.813364,0.696489,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.299617,0.70418,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.272733,0.695864,0][-1.43465,-3.80468,1.01451][0.384749,0.875395,-0.292665][0.742024,0.0960005,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-1.43465,-3.80468,1.01451][0.384749,0.875395,-0.292665][0.742024,0.0960005,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.0431244,0.774611,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.0690346,0.773631,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.0690346,0.773631,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.230699,0.280876,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.24394,0.297967,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.232428,0.309607,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.314198,0.768857,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.306222,0.796379,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.292626,0.800113,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.505365,0.537086,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.479461,0.533239,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.479461,0.533239,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0239633,0.0388407,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.0195243,0.0198801,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.0195243,0.0198801,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.0422678,0.00960213,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.230699,0.649482,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.237096,0.63563,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.771832,0.865053,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.745994,0.860283,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.750236,0.844716,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.021982,0.055638,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.427739,0.914345,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.444746,0.93175,0][0.806652,-3.45923,-3.23931][0.336426,-0.826164,-1.06669][0.4416,0.929759,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.56417,0.706722,0][0.806652,-3.45923,-3.23931][0.336426,-0.826164,-1.06669][0.562173,0.727646,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.558619,0.728743,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.423714,0.143781,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.536892,0.702719,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.56285,0.696489,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.427739,0.490475,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.442754,0.474802,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.875531,0.441951,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.854731,0.43815,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.864984,0.41627,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.825911,0.659941,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.799103,0.659703,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.797017,0.636883,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.246078,0.0290847,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.268983,0.0184865,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.111255,0.231939,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.409044,0.102017,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.427716,0.0796007,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.409044,0.102017,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.482165,0.215795,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.390493,0.117738,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.393899,0.126402,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.996822,0.166246,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.974416,0.159089,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.97759,0.146446,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.281921,0.618782,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.294287,0.618524,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.977757,0.434045,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.984789,0.412128,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.994881,0.415165,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.69709,0.571994,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.635435,0.577097,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.613692,0.575886,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.635435,0.577097,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.317555,0.612524,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.32925,0.61829,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.336058,0.6028,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.32925,0.61829,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.317555,0.612524,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.517882,0,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.547414,0.00188518,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.809628,0.483404,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.785893,0.490497,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.991488,0.634012,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.928912,0.649073,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.930174,0.639488,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.906963,0.63552,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.930174,0.639488,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.928912,0.649073,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.383039,0.171855,0][-2.82825,1.35521,-2.82579][1.76824,0.139234,-0.155654][0.376169,0.182561,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.364049,0.193201,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.345344,0.971178,0][-2.82825,1.35521,-2.82579][1.76824,0.139234,-0.155654][0.353224,0.999411,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.340851,0.996456,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.806365,0.968968,0][-0.0971423,3.46798,0.102702][-0.271165,-0.12141,0.322146][0.829229,0.965834,0][-0.0971422,3.46798,-0.102285][0.243201,0.0410466,-0.225485][0.829229,0.972101,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.875242,0.985084,0][-0.0971422,3.46798,-0.102285][0.243201,0.0410466,-0.225485][0.859437,0.988217,0][-0.0971423,3.46798,0.102702][-0.271165,-0.12141,0.322146][0.859437,0.98195,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.537162,0.955654,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.517882,0.938183,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.52621,0.927505,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.631834,0.272879,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.622538,0.261145,0][2.113,-3.43597,-1.02756][-3.28522,1.33183,-0.0583912][0.250764,0.459957,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.243477,0.484984,0][2.113,-3.43597,-1.02756][-3.28522,1.33183,-0.0583912][0.52343,0.803958,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.578491,0.806066,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.517882,0.806078,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.359251,0.634423,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.375886,0.624954,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.359251,0.634423,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.256219,0.641672,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.265195,0.635756,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.449487,0.601968,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.431358,0.611838,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.427739,0.600703,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.243353,0.44323,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.875531,0.441951,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.864984,0.41627,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.658131,0.74662,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.669708,0.744428,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.647765,0.766194,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.494091,0.43702,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.487437,0.42579,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.487437,0.42579,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.494091,0.43702,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.469811,0.430493,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.961455,0.46608,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.983582,0.456219,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.988364,0.465859,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.0120498,0.305313,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.0267489,0.294055,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.0338147,0.307267,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.505365,0.537086,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.527023,0.540673,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.966336,0.107055,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.938917,0.0926758,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.953956,0.0828841,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.0106917,0.70953,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0,0.722775,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.0106917,0.70953,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.0191833,0.272054,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.00793791,0.289835,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0,0.283298,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0,0.283298,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.00960429,0.262086,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.0191833,0.272054,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.242816,0.181881,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.267009,0.183504,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.266518,0.1923,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.266518,0.1923,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.241374,0.192899,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.242816,0.181881,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.62113,0.0623137,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.255786,0.233753,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.283905,0.241943,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.23299,0.254281,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.255786,0.233753,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.0216064,0.529349,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.0352482,0.571129,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.387372,0.310066,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.403506,0.293699,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.39956,0.322286,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.99653,0.587556,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.969696,0.592289,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.96239,0.570572,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.387372,0.310066,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.403506,0.293699,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.278234,0.974756,0][-2.01201,0.18536,-3.95544][0.80369,2.68925,0.00912781][0.280425,0.996018,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.269646,0.996083,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.658137,0.27813,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.664041,0.260866,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.672155,0.283535,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.658137,0.27813,0][-1.44336,1.65918,-2.8417][-0.429928,-1.57199,0.0422835][0.634724,0.461074,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.632255,0.443124,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.645328,0.475744,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-1.44336,1.65918,-2.8417][-0.429928,-1.57199,0.0422835][0.768817,0.594243,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.750834,0.594298,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.92292,0.215579,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.924542,0.237306,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.901185,0.218754,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.975201,0.278078,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.977149,0.261982,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.998794,0.259965,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.493147,0.499053,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.493147,0.499053,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.475543,0.483915,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.421384,0.0698097,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.427716,0.0796007,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.421384,0.0698097,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.422219,0.0507887,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.683382,0.0942223,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.683382,0.0942223,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.685555,0.115989,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.0300846,0.922594,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.476308,0.642692,0][0.242637,3.43438,-0.813593][-0.00360188,0.999269,-0.0380686][0.452726,0.637858,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.476308,0.642692,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.0344759,0.321468,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.0344759,0.321468,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.0338147,0.307267,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.255786,0.233753,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.23299,0.254281,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.238877,0.228523,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.522095,0.570572,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.54802,0.572241,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.549519,0.59429,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.00960429,0.262086,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.0251372,0.241737,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.0360168,0.254973,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.480216,0.734461,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.470074,0.757268,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.456523,0.752463,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.139996,0.396438,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.314757,0.407861,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.283541,0.415959,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.314757,0.407861,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.334824,0.416135,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.256599,0.946384,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.230699,0.939189,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.234158,0.921538,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.0878972,0.424894,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.113919,0.419985,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.385682,0.456034,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.0199904,0.51535,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.0198882,0.499108,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.0199904,0.51535,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.0169244,0.466544,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.0216151,0.482888,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.0169244,0.466544,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.749195,0.744428,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.755436,0.747087,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.755685,0.769342,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.325319,0.322266,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.328015,0.316745,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.747728,0.230364,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.725251,0.218027,0][-0.22847,3.42708,-0.819523][-0.0347766,0.998736,-0.0362774][0.700576,0.216417,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.725251,0.218027,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.381085,0.240516,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.402333,0.241142,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.381085,0.240516,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.814531,0.7103,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.790069,0.71093,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.789431,0.700509,0][0.471785,3.43019,0.696953][-0.685217,1.20019,0.505061][0.764749,0.698281,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.789431,0.700509,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.790069,0.71093,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.0352482,0.571129,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.0123571,0.557705,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.369824,0.71113,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.388754,0.692058,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.40265,0.707498,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.473183,0.596158,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.449487,0.601968,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.445919,0.587065,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.24077,0.836912,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.261635,0.847012,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.250833,0.864577,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.187245,0.316465,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.952243,0.177187,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.931299,0.173247,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.634092,0.649992,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.657399,0.639621,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.663187,0.657313,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.0267489,0.294055,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.0267489,0.294055,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.0216223,0.281731,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.566806,0.475576,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.305251,0.98712,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.278234,0.974756,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.293523,0.97174,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.427739,0.634012,0][0.242637,3.43438,-0.813593][-0.00360188,0.999269,-0.0380686][0.452726,0.637858,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.780074,0.187892,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.732279,0.188956,0][0.242637,3.43438,-0.813593][-0.00360188,0.999269,-0.0380686][0.756122,0.18308,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.189601,0.238049,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.194144,0.262849,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.772151,0.343727,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.769901,0.317286,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.795849,0.315301,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.111255,0.231939,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.135267,0.22369,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.723174,0.663942,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.696562,0.66329,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.685361,0.634056,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.427739,0.722566,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.427955,0.696489,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.449556,0.69915,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.322526,0.383856,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.304176,0.382391,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.169842,0.520732,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.170804,0.0112963,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.193014,0.0214616,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.190782,0.0394882,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.252085,0.0804314,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.23883,0.062864,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.499737,0.643295,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.522132,0.640066,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.521777,0.658869,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.98803,0.529047,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.970006,0.512326,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.978254,0.499824,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.187245,0.316465,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.187245,0.316465,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.00188281,0.0634316,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.021982,0.055638,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.0259732,0.977111,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.0530634,0.976224,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.0533926,0.990551,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.138517,0.418611,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.16442,0.470028,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.141486,0.652692,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.136594,0.670811,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.141486,0.652692,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.295208,0.340033,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.298415,0.315467,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.295208,0.340033,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.067367,0.0030076,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.0937563,0,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.164885,0.393138,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.139996,0.396438,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.877398,0.660527,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.852271,0.660282,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.849899,0.634012,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.188617,0.365772,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.165817,0.372161,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.70736,0.000995784,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.685487,0.0157528,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.699532,0,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.758092,0.408431,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.760116,0.447542,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.752225,0.447457,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.521777,0.658869,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.515123,0.674315,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.521777,0.658869,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.499737,0.643295,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.0714487,0.80431,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.0948579,0.810744,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.0714487,0.80431,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.120396,0.000433503,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.146349,0.00423054,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.823627,0.634961,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.849899,0.634012,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.852271,0.660282,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.479461,0.533239,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.466183,0.53644,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.903291,0.0992164,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.918093,0.0990955,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.927125,0.118021,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.924155,0.0281992,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.948905,0.0183156,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.954135,0.0362682,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.594594,0.570572,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.613692,0.575886,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.614419,0.592529,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.307517,0.24009,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.331867,0.237526,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.283905,0.241943,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.307517,0.24009,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.664431,0.722254,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.637696,0.718867,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.639294,0.704691,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.91667,0.0133118,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.940148,0,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.948905,0.0183156,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.250215,0.140951,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.244935,0.0965157,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0.0613112,0.383537,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.0407033,0.347404,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.240931,0.506665,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.244645,0.501763,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.858195,0.0814607,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.863223,0.0855078,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.875123,0.117965,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.848768,0.315371,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.847575,0.341795,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.402333,0.241142,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.404226,0.267086,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.251555,0.707436,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.251555,0.707436,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.036869,0.335547,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.036869,0.335547,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.0344759,0.321468,0][-0.56503,3.28431,0.359804][0.16819,-0.976856,-0.132154][0.467942,0.340063,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.46577,0.357948,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][-0.56503,3.28431,0.359804][0.16819,-0.976856,-0.132154][0.467942,0.340063,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.00109866,0.830106,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0,0.810584,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.0232653,0.804176,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.0461849,0.185707,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.0234937,0.177568,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.0255961,0.157803,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.169842,0.520732,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.169842,0.520732,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.165199,0.543365,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.700697,0.899483,0][-0.896673,-3.48567,-3.07158][0.317407,1.6594,0.0496784][0.704223,0.892837,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.720543,0.892998,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0][-0.896673,-3.48567,-3.07158][0.317407,1.6594,0.0496784][0.775806,0.416087,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.782778,0.413361,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.171312,0.158406,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.192455,0.149855,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.196775,0.167757,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.665271,0.705894,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.691249,0.703307,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.691311,0.721539,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.114551,0.824559,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.0948579,0.810744,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.114551,0.824559,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.135744,0.836518,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.151933,0.85429,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.135744,0.836518,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.632255,0.510838,0][2.59198,1.56564,-1.68763][-2.05047,-0.41982,1.03203][0.638674,0.505309,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.653659,0.528785,0][2.59198,1.56564,-1.68763][-2.05047,-0.41982,1.03203][0.924815,0.793298,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.93242,0.797498,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.921635,0.797357,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.138612,0.935546,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0,0.0329972,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.0195243,0.0198801,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0239633,0.0388407,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.087099,0.391415,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0.0613112,0.383537,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.259006,0.927869,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.284621,0.93021,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.28322,0.949004,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.28322,0.949004,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.256599,0.946384,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.259006,0.927869,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-0.22847,3.42708,-0.819523][-0.0347766,0.998736,-0.0362774][0.700576,0.216417,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.314293,0.171855,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.266518,0.1923,0][-0.22847,3.42708,-0.819523][-0.0347766,0.998736,-0.0362774][0.289814,0.176794,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.27378,0.877359,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.250833,0.864577,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.261635,0.847012,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.0367966,0.441341,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.061693,0.432353,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.798529,0.367872,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.797023,0.341865,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.821372,0.365558,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.798529,0.367872,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.151933,0.85429,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.165415,0.883446,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.151933,0.85429,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.16449,0.568179,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.142146,0.570155,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.663414,0.36956,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.672088,0.345127,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.697738,0.350721,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.11216,0.590934,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.693951,0.425037,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.700635,0.439294,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.433835,0.307883,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.439024,0.293888,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.0422678,0.00960213,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.0422678,0.00960213,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.067367,0.0030076,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.196129,0.114655,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.192565,0.094652,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.196129,0.114655,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.174809,0.178951,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.150118,0.187192,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.171312,0.158406,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.174809,0.178951,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.230885,0.0819057,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.244935,0.0965157,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.190782,0.0394882,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.169732,0.0319265,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.170804,0.0112963,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.951867,0.159123,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.952243,0.177187,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.72382,0.807972,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.701034,0.82214,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.693599,0.810582,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.208525,0.357361,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.188617,0.365772,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.204294,0.333743,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.208525,0.357361,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.110392,0.757311,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.0950667,0.772811,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.949461,0.744576,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.928763,0.755216,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.906673,0.744428,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.136711,0.591242,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.11216,0.590934,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.123886,0.192085,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.097179,0.193405,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.453247,0.981778,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.427739,0.978166,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.429071,0.953924,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.429071,0.953924,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.45568,0.956098,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.453247,0.981778,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.284621,0.93021,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.320131,0.918613,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.309532,0.947126,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.309532,0.947126,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.28322,0.949004,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.284621,0.93021,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.369773,0.354182,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.366177,0.366573,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.389525,0.3549,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.366177,0.366573,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.369773,0.354182,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.749579,0.66029,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.723174,0.663942,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.721189,0.644062,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.721189,0.644062,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.746624,0.640634,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.749579,0.66029,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.774843,0.65264,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.749579,0.66029,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.746624,0.640634,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.746624,0.640634,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.771053,0.634012,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.774843,0.65264,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.0646715,0.230289,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.0646715,0.230289,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.0558077,0.215579,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.335353,0.290944,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.338988,0.28013,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.71186,0.746985,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.723022,0.744787,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.712062,0.76781,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.978254,0.499824,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.998711,0.514292,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.98803,0.529047,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.138612,0.935546,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.115308,0.94267,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.149449,0.732513,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.717176,0.474891,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.698672,0.467689,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.700635,0.439294,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.471736,0.575845,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.494676,0.570738,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.507082,0.570847,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.552476,0.773273,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.592702,0.77332,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.589511,0.785309,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.507082,0.570847,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.524382,0.591971,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.498363,0.592837,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.498363,0.592837,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.524382,0.591971,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.525068,0.609821,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.34765,0.692174,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.305659,0.722567,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.305659,0.722567,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.314148,0,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.338878,0.00176839,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.338878,0.00176839,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.230699,0.705821,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.251555,0.707436,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.232608,0.727239,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.230699,0.705821,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.268983,0.0184865,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.275386,0.036588,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.431831,0.85403,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.457554,0.856296,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.453715,0.88151,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0.462462,0.0737762,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.465946,0.0521855,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.0136957,0.738362,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0,0.722775,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.654686,0.261989,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.631834,0.272879,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.654686,0.261989,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.0631896,0.254306,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.0631896,0.254306,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.765742,0.413187,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.758092,0.408431,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.433133,0.110852,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.43974,0.116975,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.0533926,0.990551,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0272674,0.993188,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.0259732,0.977111,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0239633,0.0388407,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.00468063,0.0491151,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0,0.0329972,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.858195,0.177774,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.904053,0.153165,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.904053,0.153165,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.203777,0.285622,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.194144,0.262849,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.203777,0.285622,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.0475333,0.163799,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.173404,0.0499612,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.7768,0.811324,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.751411,0.815151,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.745994,0.793298,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.46196,0.480397,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.475543,0.483915,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.366238,0.791045,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.372078,0.772639,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.384127,0.770505,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.0478724,0.805717,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.0232653,0.804176,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.0478724,0.805717,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.930022,0.379682,0][-0.432264,3.42284,0.685575][-0.121962,0.357619,-0.0945385][0.90522,0.380066,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.879738,0.377897,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.564368,0.662295,0][-0.432264,3.42284,0.685575][-0.121962,0.357619,-0.0945385][0.580737,0.647362,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.60222,0.642139,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.597153,0.0208089,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.573646,0.340878,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.567528,0.356434,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.924542,0.237306,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.924343,0.259308,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.902603,0.259412,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.617589,0.0413716,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.62113,0.0623137,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.0521925,0.623969,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.0698832,0.613986,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.868714,0.519313,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.854731,0.5025,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.871976,0.488864,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.369773,0.354182,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][-1.07299,1.57861,-3.69263][-0.869273,-3.35365,-0.293602][0.34761,0.347797,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.333849,0.343769,0][-1.07299,1.57861,-3.69263][-0.869273,-3.35365,-0.293602][0.34761,0.347797,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.150118,0.187192,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.123886,0.192085,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.150118,0.187192,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.647363,0.33769,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.656775,0.313983,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.680043,0.320257,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.680043,0.320257,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.672088,0.345127,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.647363,0.33769,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.532421,0.4585,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.523972,0.455575,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.523972,0.455575,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.508284,0.460431,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.0996528,0.619104,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.129131,0.629139,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.0996528,0.619104,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.809185,0.236211,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.830462,0.237081,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.83103,0.258914,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.830462,0.237081,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.809185,0.236211,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.807397,0.215579,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.668726,0.0682319,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.671713,0.0503972,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.243552,0.424939,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.258983,0.416094,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.0351305,0.635864,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.332963,0.319416,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.333849,0.343769,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.333849,0.343769,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.0131763,0.678744,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.61926,0.936234,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.643988,0.938226,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.642345,0.959132,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.642345,0.959132,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.616103,0.959238,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.61926,0.936234,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.0996528,0.619104,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.117483,0.613416,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.129131,0.629139,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.584917,0.4698,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.60269,0.483979,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.602248,0.506023,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.534102,0.435217,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.540626,0.423925,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.534102,0.435217,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.0106917,0.70953,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.144857,0.888057,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.165685,0.900057,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.144857,0.888057,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.285286,0.559659,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.285286,0.559659,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.315235,0.564826,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.776202,0.511485,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.785893,0.490497,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.806365,0.805304,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.824601,0.793298,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.850774,0.804012,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.619976,0.106101,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.673407,0.4318,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.673407,0.4318,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.693951,0.425037,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.387054,0.486418,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.283905,0.241943,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.283905,0.241943,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.285286,0.559659,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.368207,0.530052,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.350981,0.542551,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.350981,0.542551,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.368207,0.530052,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.376714,0.543824,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.387054,0.486418,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.396883,0.502367,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.924343,0.259308,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.924542,0.237306,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.945636,0.235448,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.581902,0.541007,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.566806,0.475576,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.259,0.344538,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.281491,0.341435,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.281491,0.341435,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.295208,0.340033,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.899479,0.52027,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.885405,0.504924,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.901506,0.490424,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.885405,0.504924,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.899479,0.52027,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.883404,0.535392,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.385682,0.456034,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.398174,0.472004,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.62197,0.0841304,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.619976,0.106101,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.493147,0.499053,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.261784,0.357731,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.259,0.344538,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.259,0.344538,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.261784,0.357731,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.239359,0.342978,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.466183,0.53644,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.442754,0.474802,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.482165,0.215795,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.499644,0.217068,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.651814,0.510243,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.669293,0.511516,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.690908,0.533563,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.0131763,0.678744,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.0192606,0.64918,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.0131763,0.678744,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.685487,0.0157528,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.826964,0.0462978,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.82863,0.0670486,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.0351305,0.635864,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.0521925,0.623969,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.918941,0.828066,0][0.471785,3.43019,0.696953][-0.685217,1.20019,0.505061][0.943854,0.827478,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.969655,0.829332,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.738907,0.697349,0][0.471785,3.43019,0.696953][-0.685217,1.20019,0.505061][0.764749,0.698281,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.764826,0.704712,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.333092,0.554268,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.315235,0.564826,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.911906,0.420772,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.93189,0.415444,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.918657,0.441981,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.387372,0.310066,0][-2.01201,0.18536,-3.95544][0.80369,2.68925,0.00912781][0.378918,0.307073,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-2.01201,0.18536,-3.95544][0.80369,2.68925,0.00912781][0.378918,0.307073,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.472337,0.0318556,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.536083,0.498155,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.536083,0.498155,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.598734,0.125968,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.592584,0.145887,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.598734,0.125968,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.153003,0.684521,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.167092,0.682322,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.750834,0.594298,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.733479,0.597145,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.495188,0.015072,0][-1.17183,1.73682,2.83213][0.257523,-0.583838,-0.769945][0.510839,0.0164694,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-1.17183,1.73682,2.83213][0.257523,-0.583838,-0.769945][0.821241,0.521672,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.812627,0.536773,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][0.489028,-0.641741,-4.49622][-0.10315,0.704063,-0.00952558][0.304176,0.277069,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.296139,0.277209,0][0.489028,-0.641741,-4.49622][-0.10315,0.704063,-0.00952558][0.549918,0.904465,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.55691,0.901255,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.810742,0.258122,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.83103,0.258914,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.830483,0.281188,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.83103,0.258914,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.810742,0.258122,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.809185,0.236211,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.39483,0.789046,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.385714,0.791335,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.402632,0.762595,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.253726,0.296309,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.24394,0.297967,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.717716,0.00457982,0][-1.00145,-3.5047,-1.97125][0.71134,2.79572,0.663654][0.730492,0.00508265,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.782778,0.413361,0][-1.00145,-3.5047,-1.97125][0.71134,2.79572,0.663654][0.783565,0.448929,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/VikingHelm.mesh b/charcustom/hats/fonts/VikingHelm.mesh
new file mode 100644
index 0000000..9591d83
--- /dev/null
+++ b/charcustom/hats/fonts/VikingHelm.mesh
@@ -0,0 +1,3 @@
+version 1.00
+598
+[-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.00492573,0.502407,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.00492573,0.601417,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.00492573,0.502407,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.995025,0.502407,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.995025,0.601417,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.995025,0.601417,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.00492573,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.00492573,0.700427,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.00492573,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.995025,0.601417,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.995025,0.700427,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.995025,0.700427,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.00492573,0.700427,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.00492573,0.799437,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.00492573,0.700427,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.995025,0.700427,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.995025,0.799437,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.995025,0.799437,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.00492573,0.799437,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.00492573,0.898447,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.00492573,0.799437,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.995025,0.799437,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.995025,0.898447,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.995025,0.898447,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.00492573,0.898447,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.0402861,0.997457,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.111008,0.997457,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.181729,0.997457,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.25245,0.997457,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.323172,0.997457,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.393893,0.997457,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.464615,0.997457,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.535336,0.997457,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.606057,0.997457,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.676778,0.997457,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.7475,0.997457,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.818222,0.997457,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.888943,0.997457,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.995025,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.959664,0.997457,0][1.20505,-0.456536,-0.205037][0.388908,-0.480796,-1.47884][0.505617,0.326127,0][1.10038,-0.280235,-0.289963][0.353361,-0.436734,-1.34213][0.536681,0.274314,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.655319,0.417648,0][1.20505,-0.456536,-0.205037][0.388908,-0.480796,-1.47884][0.505617,0.326127,0][1.10038,-0.280235,-0.289963][0.353361,-0.436734,-1.34213][0.536681,0.274314,0][0.995709,-0.103935,-0.205037][-0.11264,0.567258,-1.31641][0.567745,0.222501,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.683818,0.323227,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.683818,0.323227,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.10038,-0.280235,-0.289963][0.353361,-0.436734,-1.34213][0.536681,0.274314,0][0.995709,-0.103935,-0.205037][-0.11264,0.567258,-1.31641][0.481215,0.298143,0][0.952354,-0.0309111,-7.09467e-006][-0.435587,1.30988,-0.558639][0.468349,0.358554,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.365142,0.309239,0][0.995709,-0.103935,-0.205037][-0.11264,0.567258,-1.31641][0.481215,0.298143,0][0.952354,-0.0309111,-7.09467e-006][-0.435587,1.30988,-0.558639][0.468349,0.358554,0][0.995709,-0.103935,0.205022][-0.474136,1.37602,0.590349][0.481215,0.418965,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.365142,0.407868,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.365142,0.407868,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][0.952354,-0.0309111,-7.09467e-006][-0.435587,1.30988,-0.558639][0.468349,0.358554,0][0.995709,-0.103935,0.205022][-0.474136,1.37602,0.590349][0.419088,0.098172,0][1.10038,-0.280236,0.289949][-0.145181,0.626615,1.47974][0.450152,0.149985,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.303015,0.198898,0][0.995709,-0.103935,0.205022][-0.474136,1.37602,0.590349][0.419088,0.098172,0][1.10038,-0.280236,0.289949][-0.145181,0.626615,1.47974][0.450152,0.149985,0][1.20505,-0.456536,0.205022][0.388535,-0.481627,1.47867][0.481215,0.201797,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.331514,0.293319,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.331514,0.293319,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.10038,-0.280236,0.289949][-0.145181,0.626615,1.47974][0.450152,0.149985,0][1.20505,-0.456536,0.205022][0.388535,-0.481627,1.47867][0.96039,0.09621,0][1.2484,-0.529561,-7.19176e-006][0.762469,-1.22632,0.598008][0.973257,0.156622,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.810688,0.107307,0][1.20505,-0.456536,0.205022][0.388535,-0.481627,1.47867][0.96039,0.09621,0][1.2484,-0.529561,-7.19176e-006][0.762469,-1.22632,0.598008][0.973257,0.156622,0][1.20505,-0.456536,-0.205037][0.388908,-0.480796,-1.47884][0.96039,0.217033,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.810688,0.205936,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.810688,0.205936,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.2484,-0.529561,-7.19176e-006][0.762469,-1.22632,0.598008][0.973257,0.156622,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.929526,0.343651,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.973256,0.29078,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.909174,0.312234,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.973256,0.29078,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.139786,0.343978,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.075703,0.364619,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.140009,0.385292,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.075703,0.364619,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.077882,0.188613,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.013576,0.166451,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.057531,0.22003,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.013576,0.166451,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.536704,0.129917,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.49275,0.150557,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.536481,0.17123,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.49275,0.150557,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.655319,0.417648,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.828529,0.405897,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.655319,0.417648,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.683818,0.323227,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.811107,0.341005,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.811107,0.341005,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.365142,0.309239,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.237853,0.325977,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.365142,0.309239,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.365142,0.407868,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.238608,0.399874,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.238608,0.399874,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.303015,0.198898,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.176481,0.21781,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.303015,0.198898,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.331514,0.293319,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.159059,0.282702,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.159059,0.282702,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.810688,0.107307,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.638233,0.115299,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.810688,0.107307,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.810688,0.205936,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.637478,0.189192,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.637478,0.189192,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.828529,0.405897,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.929526,0.343651,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.828529,0.405897,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.811107,0.341005,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.909174,0.312234,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.909174,0.312234,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.237853,0.325977,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.139786,0.343978,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.237853,0.325977,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.238608,0.399874,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.140009,0.385292,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.140009,0.385292,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.176481,0.21781,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.077882,0.188613,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.176481,0.21781,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.159059,0.282702,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.057531,0.22003,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.057531,0.22003,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.638233,0.115299,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.536704,0.129917,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.638233,0.115299,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.637478,0.189192,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.536481,0.17123,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.536481,0.17123,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][-1.20735,-0.456536,-0.205037][-0.388908,-0.480796,-1.47884][0.505617,0.326127,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.655319,0.417648,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.10268,-0.280235,-0.289963][-0.353361,-0.436734,-1.34213][0.536681,0.274314,0][-1.20735,-0.456536,-0.205037][-0.388908,-0.480796,-1.47884][0.505617,0.326127,0][-1.10268,-0.280235,-0.289963][-0.353361,-0.436734,-1.34213][0.536681,0.274314,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.683818,0.323227,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.683818,0.323227,0][-0.998012,-0.103935,-0.205037][0.11264,0.567258,-1.31641][0.567745,0.222501,0][-1.10268,-0.280235,-0.289963][-0.353361,-0.436734,-1.34213][0.536681,0.274314,0][-0.998012,-0.103935,-0.205037][0.11264,0.567258,-1.31641][0.481215,0.298143,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.365142,0.309239,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-0.954657,-0.0309111,-7.09467e-006][0.435587,1.30988,-0.558639][0.468349,0.358554,0][-0.998012,-0.103935,-0.205037][0.11264,0.567258,-1.31641][0.481215,0.298143,0][-0.954657,-0.0309111,-7.09467e-006][0.435587,1.30988,-0.558639][0.468349,0.358554,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.365142,0.407868,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.365142,0.407868,0][-0.998012,-0.103935,0.205022][0.474136,1.37602,0.590348][0.481215,0.418965,0][-0.954657,-0.0309111,-7.09467e-006][0.435587,1.30988,-0.558639][0.468349,0.358554,0][-0.998012,-0.103935,0.205022][0.474136,1.37602,0.590348][0.419088,0.098172,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.303015,0.198898,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.10268,-0.280236,0.289949][0.145181,0.626615,1.47974][0.450152,0.149985,0][-0.998012,-0.103935,0.205022][0.474136,1.37602,0.590348][0.419088,0.098172,0][-1.10268,-0.280236,0.289949][0.145181,0.626615,1.47974][0.450152,0.149985,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.331514,0.293319,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.331514,0.293319,0][-1.20735,-0.456536,0.205022][-0.388535,-0.481627,1.47867][0.481215,0.201797,0][-1.10268,-0.280236,0.289949][0.145181,0.626615,1.47974][0.450152,0.149985,0][-1.20735,-0.456536,0.205022][-0.388535,-0.481627,1.47867][0.96039,0.09621,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.810688,0.107307,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.2507,-0.529561,-7.19176e-006][-0.762469,-1.22632,0.598008][0.973257,0.156622,0][-1.20735,-0.456536,0.205022][-0.388535,-0.481627,1.47867][0.96039,0.09621,0][-1.2507,-0.529561,-7.19176e-006][-0.762469,-1.22632,0.598008][0.973257,0.156622,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.810688,0.205936,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.810688,0.205936,0][-1.20735,-0.456536,-0.205037][-0.388908,-0.480796,-1.47884][0.96039,0.217033,0][-1.2507,-0.529561,-7.19176e-006][-0.762469,-1.22632,0.598008][0.973257,0.156622,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.929526,0.343651,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.973256,0.29078,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.973256,0.29078,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.909174,0.312234,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.139786,0.343978,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.075703,0.364619,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.075703,0.364619,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.140009,0.385292,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.077882,0.188613,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.013576,0.166451,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.013576,0.166451,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.057531,0.22003,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.536704,0.129917,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.49275,0.150557,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.49275,0.150557,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.536481,0.17123,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.655319,0.417648,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.828529,0.405897,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.655319,0.417648,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.811107,0.341005,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.811107,0.341005,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.683818,0.323227,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.365142,0.309239,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.237853,0.325977,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.365142,0.309239,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.238608,0.399874,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.238608,0.399874,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.365142,0.407868,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.303015,0.198898,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.176481,0.21781,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.303015,0.198898,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.159059,0.282702,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.159059,0.282702,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.331514,0.293319,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.810688,0.107307,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.638233,0.115299,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.810688,0.107307,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.637478,0.189192,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.637478,0.189192,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.810688,0.205936,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.828529,0.405897,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.929526,0.343651,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.828529,0.405897,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.909174,0.312234,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.909174,0.312234,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.811107,0.341005,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.237853,0.325977,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.139786,0.343978,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.237853,0.325977,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.140009,0.385292,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.140009,0.385292,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.238608,0.399874,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.176481,0.21781,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.077882,0.188613,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.176481,0.21781,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.057531,0.22003,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.057531,0.22003,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.159059,0.282702,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.638233,0.115299,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.536704,0.129917,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.638233,0.115299,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.536481,0.17123,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.536481,0.17123,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.637478,0.189192,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-0.862864,-0.937684,-1.07935][0,-1,-2.63368e-007][0.00492573,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][0.305446,-0.937684,-1.34668][0,-1,-2.23496e-007][0.853582,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][1.24288,-0.937684,-0.599938][0,-1,-1.79182e-007][0.71214,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.24354,-0.937684,0.598567][-1.31705e-007,-1,-2.28891e-007][0.570697,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.306914,-0.937684,1.34633][0,-1,-2.23495e-007][0.429253,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.861687,-0.937684,1.08028][0,-1,0][0.287811,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.38229,-0.937684,0.00074496][0,-1,-1.9893e-007][0.146368,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.437811,0.502407,0][0.576855,-0.937684,1.01475][0,-3.1503,0][0.461862,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.392877,0.502407,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.437811,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.392877,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.344581,0.502407,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.392877,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.29765,0.502407,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.344581,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.253631,0.502407,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.29765,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.253631,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.12445,-0.937684,0.364975][3.95937e-007,-3.45575,-6.73229e-007][0.202354,0.502407,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.253631,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.153088,0.502407,0][-1.12445,-0.937684,0.364975][3.95937e-007,-3.45575,-6.73229e-007][0.202354,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.153088,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.11625,0.502407,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.153088,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.11625,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.110096,0.502407,0][0.693083,-0.937684,-0.955537][0,-3.45575,-1.68595e-006][0.715623,0.502407,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.687546,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.744715,0.502407,0][0.693083,-0.937684,-0.955537][0,-3.45575,-1.68595e-006][0.715623,0.502407,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.491809,0.502407,0][-0.965189,-0.937684,-0.677546][8.93688e-007,-3.44081,5.79056e-007][0.20231,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.491809,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.694938,0.502407,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.491809,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.791813,0.502407,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.694938,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.772952,0.502407,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.791813,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.772952,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.772952,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.687546,0.502407,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.00492573,0.601417,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.00492573,0.601417,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.00492573,0.601417,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.00492573,0.502407,0][-0.862864,-0.937684,-1.07935][0,-1,-2.63368e-007][0.00492573,0.502407,0][-0.862864,-0.937684,-1.07935][0,-1,-2.63368e-007][0.00492573,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.38229,-0.937684,0.00074496][0,-1,-1.9893e-007][0.146368,0.502407,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.38229,-0.937684,0.00074496][0,-1,-1.9893e-007][0.146368,0.502407,0][-1.38229,-0.937684,0.00074496][0,-1,-1.9893e-007][0.146368,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-0.861687,-0.937684,1.08028][0,-1,0][0.287811,0.502407,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.861687,-0.937684,1.08028][0,-1,0][0.287811,0.502407,0][-0.861687,-0.937684,1.08028][0,-1,0][0.287811,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][0.306914,-0.937684,1.34633][0,-1,-2.23495e-007][0.429253,0.502407,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.306914,-0.937684,1.34633][0,-1,-2.23495e-007][0.429253,0.502407,0][0.306914,-0.937684,1.34633][0,-1,-2.23495e-007][0.429253,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][1.24354,-0.937684,0.598567][-1.31705e-007,-1,-2.28891e-007][0.570697,0.502407,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.24354,-0.937684,0.598567][-1.31705e-007,-1,-2.28891e-007][0.570697,0.502407,0][1.24354,-0.937684,0.598567][-1.31705e-007,-1,-2.28891e-007][0.570697,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.24288,-0.937684,-0.599938][0,-1,-1.79182e-007][0.71214,0.502407,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][1.24288,-0.937684,-0.599938][0,-1,-1.79182e-007][0.71214,0.502407,0][1.24288,-0.937684,-0.599938][0,-1,-1.79182e-007][0.71214,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.305446,-0.937684,-1.34668][0,-1,-2.23496e-007][0.853582,0.502407,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][0.305446,-0.937684,-1.34668][0,-1,-2.23496e-007][0.853582,0.502407,0][0.305446,-0.937684,-1.34668][0,-1,-2.23496e-007][0.853582,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.995025,0.601417,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.995025,0.601417,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.995025,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.995025,0.502407,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.862864,-0.937684,-1.07935][0,-1,-2.63368e-007][0.995025,0.502407,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.995025,0.502407,0][0.95438,-0.937684,-0.69424][-1.82924e-007,-3.45575,-4.8854e-007][0.732285,0.502407,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.744715,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.689145,0.502407,0][0.95438,-0.937684,-0.69424][-1.82924e-007,-3.45575,-4.8854e-007][0.732285,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.689145,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.641333,0.502407,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.689145,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.59353,0.502407,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.641333,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.59353,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.550413,0.502407,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.59353,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.550413,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.53811,0.502407,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.110096,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-0.965189,-0.937684,-0.677546][8.93688e-007,-3.44081,5.79056e-007][0.20231,0.502407,0][0.695754,-0.937684,0.952855][2.26354e-007,-3.44704,-2.94937e-007][0.467369,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.576855,-0.937684,1.01475][0,-3.1503,0][0.461862,0.502407,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.53811,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.695754,-0.937684,0.952855][2.26354e-007,-3.44704,-2.94937e-007][0.467369,0.502407,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.273208,0.133927,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.277494,0.106866,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.273208,0.133927,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.26077,0.158339,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.273208,0.133927,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.26077,0.158339,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.241396,0.177713,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.26077,0.158339,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.241396,0.177713,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.216984,0.190152,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.241396,0.177713,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.216984,0.190152,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.189923,0.194438,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.216984,0.190152,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.189923,0.194438,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.162861,0.190152,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.189923,0.194438,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.162861,0.190152,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.138449,0.177713,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.162861,0.190152,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.138449,0.177713,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.119075,0.158339,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.138449,0.177713,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.119075,0.158339,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.106637,0.133927,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.119075,0.158339,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.106637,0.133927,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.102351,0.106866,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.106637,0.133927,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.102351,0.106866,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.106637,0.0798048,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.102351,0.106866,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.106637,0.0798048,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.119075,0.0553926,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.106637,0.0798048,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.119075,0.0553926,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.138449,0.0360189,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.119075,0.0553926,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.138449,0.0360189,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.162861,0.0235803,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.138449,0.0360189,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.162861,0.0235803,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.189923,0.0192942,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.162861,0.0235803,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.189923,0.0192942,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.216984,0.0235803,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.189923,0.0192942,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.216984,0.0235803,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.241396,0.0360189,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.216984,0.0235803,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.241396,0.0360189,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.26077,0.0553926,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.241396,0.0360189,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.26077,0.0553926,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.273208,0.0798049,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.26077,0.0553926,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.273208,0.0798049,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.277494,0.106866,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.273208,0.0798049,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.277494,0.106866,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.103936,0.997457,0][0.95438,-0.937684,-0.69424][-1.82924e-007,-3.45575,-4.8854e-007][0.103936,0.975949,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.0544307,0.975949,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.0544307,0.975949,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.0544307,0.997457,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.103936,0.997457,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.301955,0.997457,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.301955,0.975949,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.25245,0.975949,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.25245,0.975949,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.25245,0.997457,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.301955,0.997457,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.400965,0.997457,0][-0.965189,-0.937684,-0.677546][8.93688e-007,-3.44081,5.79056e-007][0.405985,0.975949,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.35146,0.975949,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.35146,0.975949,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.35146,0.997457,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.400965,0.997457,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.499975,0.997457,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.499975,0.975949,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.45047,0.975949,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.45047,0.975949,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.45047,0.997457,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.499975,0.997457,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.64849,0.997457,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.64849,0.975949,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.598985,0.975949,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.598985,0.975949,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.598985,0.997457,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.64849,0.997457,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.7475,0.997457,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.7475,0.975949,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.697995,0.975949,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.697995,0.975949,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.697995,0.997457,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.7475,0.997457,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.695754,-0.937684,0.952855][2.26354e-007,-3.44704,-2.94937e-007][0.847522,0.975949,0][0.576855,-0.937684,1.01475][0,-3.1503,0][0.829034,0.975949,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.576855,-0.937684,1.01475][0,-3.1503,0][0.829034,0.975949,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.797005,0.975949,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.797005,0.997457,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.797005,0.975949,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.94552,0.997457,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.94552,0.975949,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.896015,0.975949,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.896015,0.975949,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.896015,0.997457,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.94552,0.997457,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.0544307,0.997457,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.0544307,0.975949,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.00492573,0.975949,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.00492573,0.975949,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.00492573,0.997457,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.0544307,0.997457,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.121903,0.975949,0][0.95438,-0.937684,-0.69424][-1.82924e-007,-3.45575,-4.8854e-007][0.103936,0.975949,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.103936,0.997457,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.121903,0.975949,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.103936,0.997457,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.153441,0.997457,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.121903,0.975949,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.153441,0.997457,0][0.693083,-0.937684,-0.955537][0,-3.45575,-1.68595e-006][0.153441,0.975949,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.87821,0.975949,0][0.695754,-0.937684,0.952855][2.26354e-007,-3.44704,-2.94937e-007][0.847522,0.975949,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.87821,0.975949,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.896015,0.997457,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.896015,0.975949,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.87821,0.975949,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.896015,0.997457,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.94552,0.997457,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.995025,0.997457,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.995025,0.975949,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.995025,0.975949,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.94552,0.975949,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.94552,0.997457,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.598985,0.975949,0][-1.12445,-0.937684,0.364975][3.95937e-007,-3.45575,-6.73229e-007][0.54948,0.975949,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.54948,0.997457,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.54948,0.997457,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.598985,0.997457,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.598985,0.975949,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.697995,0.997457,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.697995,0.975949,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.64849,0.975949,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.64849,0.975949,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.64849,0.997457,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.697995,0.997457,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.797005,0.997457,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.797005,0.975949,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.7475,0.975949,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.7475,0.975949,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.7475,0.997457,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.797005,0.997457,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.435829,0.975949,0][-0.965189,-0.937684,-0.677546][8.93688e-007,-3.44081,5.79056e-007][0.405985,0.975949,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.400965,0.997457,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.435829,0.975949,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.400965,0.997457,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.45047,0.997457,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.45047,0.975949,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.435829,0.975949,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.45047,0.997457,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.54948,0.997457,0][-1.12445,-0.937684,0.364975][3.95937e-007,-3.45575,-6.73229e-007][0.54948,0.975949,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.499975,0.975949,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.499975,0.975949,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.499975,0.997457,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.54948,0.997457,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.171097,0.975949,0][0.693083,-0.937684,-0.955537][0,-3.45575,-1.68595e-006][0.153441,0.975949,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.153441,0.997457,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.171097,0.975949,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.153441,0.997457,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.202946,0.997457,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.171097,0.975949,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.202946,0.997457,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.202946,0.975949,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.25245,0.997457,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.25245,0.975949,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.202946,0.975949,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.202946,0.975949,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.202946,0.997457,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.25245,0.997457,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.35146,0.997457,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.35146,0.975949,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.301955,0.975949,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.301955,0.975949,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.301955,0.997457,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.35146,0.997457,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/VoidStar.mesh b/charcustom/hats/fonts/VoidStar.mesh
new file mode 100644
index 0000000..72e8dcc
--- /dev/null
+++ b/charcustom/hats/fonts/VoidStar.mesh
@@ -0,0 +1,3 @@
+version 1.00
+1204
+[1.11362,0.311808,2.51096][0.384697,0,0.923043][0.794982,0.834014,0][1.11362,0.375019,2.51096][0.384697,0,0.923043][0.794982,0.828458,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.805035,0.828458,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.805035,0.828458,0][0.99924,0.311808,2.55863][0.384697,0,0.923043][0.805035,0.834014,0][1.11362,0.311808,2.51096][0.384697,0,0.923043][0.794982,0.834014,0][0.931732,0.19685,1.73404][0,1.47262,0][0.225319,0.260858,0][0.838558,0.19685,1.56063][0,1.66897,0][0.223417,0.278055,0][0.517981,0.19685,1.69424][0,1.66897,0][0.192894,0.277689,0][0.517981,0.19685,1.69424][0,1.66897,0][0.192894,0.277689,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.191405,0.260451,0][0.931732,0.19685,1.73404][0,1.47262,0][0.225319,0.260858,0][0.838558,0.19685,1.56063][0,1.66897,0][0.429321,0.547109,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.429321,0.56441,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.401145,0.56441,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.401145,0.56441,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.838558,0.19685,1.56063][0,1.66897,0][0.429321,0.547109,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.391771,0.196923,0][0.931732,0,1.73404][0,-1.47262,0][0.408297,0.191799,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.397911,0.226825,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.391771,0.196923,0][0.575535,0,1.88249][0,-1.47262,0][0.579427,0.193702,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.596729,0.193702,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.596729,0.226953,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.596729,0.226953,0][0.197221,0,1.9586][0.309807,0,1.53994][0.579427,0.226953,0][0.575535,0,1.88249][0,-1.47262,0][0.579427,0.193702,0][0.418442,0.905327,1.83881][0,1,0][0.721523,0.855948,0][0.404257,0.905327,1.79241][0,1,0][0.721237,0.860203,0][0.320338,0.905327,1.80929][0,1,0][0.713717,0.860437,0][0.320338,0.905327,1.80929][0,1,0][0.713717,0.860437,0][0.325199,0.905327,1.85756][0,1,0][0.713167,0.856209,0][0.418442,0.905327,1.83881][0,1,0][0.721523,0.855948,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.401145,0.56441,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.371219,0.56441,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.371219,0.56441,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.371219,0.547109,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.397911,0.226825,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.197221,0,1.9586][0.309807,0,1.53994][0.415327,0.25894,0][0.197221,0,1.9586][0.309807,0,1.53994][0.415327,0.25894,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.398099,0.25735,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.397911,0.226825,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.660671,0.826192,0][0.0679491,0.375019,2.74599][0.00217992,0,0.999998][0.660671,0.820636,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.671562,0.820636,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.671562,0.820636,0][-0.0559673,0.311808,2.74626][0.00217992,0,0.999998][0.671562,0.826192,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.660671,0.826192,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.0222147,0.700424,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.005,0.698691,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.00506661,0.668165,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.00506661,0.668165,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.0222887,0.666507,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.0222147,0.700424,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.371219,0.547109,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.371219,0.56441,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.340693,0.56441,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.340693,0.56441,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.371219,0.547109,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.398099,0.25735,0][0.197221,0,1.9586][0.309807,0,1.53994][0.415327,0.25894,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.392328,0.287325,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.398099,0.25735,0][-0.188673,0,1.95944][0,-1.47262,0][0.18703,0.244514,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.18703,0.261816,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.15375,0.261816,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.15375,0.261816,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.15375,0.244514,0][-0.188673,0,1.95944][0,-1.47262,0][0.18703,0.244514,0][-0.317091,0.905327,1.85897][0,1,0][0.88363,0.77581,0][-0.312441,0.905327,1.81067][0,1,0][0.88404,0.771565,0][-0.396432,0.905327,1.79415][0,1,0][0.891564,0.771551,0][-0.396432,0.905327,1.79415][0,1,0][0.891564,0.771551,0][-0.410415,0.905327,1.84061][0,1,0][0.891989,0.775795,0][-0.317091,0.905327,1.85897][0,1,0][0.88363,0.77581,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.340693,0.56441,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.310741,0.56441,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.310741,0.56441,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.310741,0.547109,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.392328,0.287325,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.396129,0.323661,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.396129,0.323661,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.38082,0.315599,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.392328,0.287325,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.794977,0.814851,0][-0.988067,0.375019,2.56296][-0.380667,0,0.924712][0.794977,0.809295,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.805049,0.809295,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.805049,0.809295,0][-1.10265,0.311808,2.51579][-0.380667,0,0.924712][0.805049,0.814851,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.794977,0.814851,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.406027,0.0389004,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.388871,0.0366615,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.389835,0.00615116,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.389835,0.00615116,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.407098,0.005,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.406027,0.0389004,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.310741,0.547109,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.310741,0.56441,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.282514,0.56441,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.282514,0.56441,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.310741,0.547109,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.38082,0.315599,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.396129,0.323661,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.364018,0.341084,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.38082,0.315599,0][-0.924157,0,1.73809][0,-1.47262,0][0.907597,0.005,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.924899,0.005,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.924899,0.0389173,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.924899,0.0389173,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.907597,0.0389173,0][-0.924157,0,1.73809][0,-1.47262,0][0.907597,0.005,0][-1.00435,0.905327,1.59611][0,1,0][0.889199,0.226021,0][-0.981571,0.905327,1.55328][0,1,0][0.88883,0.230269,0][-1.05285,0.905327,1.50587][0,1,0][0.881307,0.230356,0][-1.05285,0.905327,1.50587][0,1,0][0.881307,0.230356,0][-1.08355,0.905327,1.54345][0,1,0][0.88084,0.226118,0][-1.00435,0.905327,1.59611][0,1,0][0.889199,0.226021,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.282514,0.56441,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.257096,0.56441,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.257096,0.56441,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.257096,0.547109,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.364018,0.341084,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.353625,0.376108,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.353625,0.376108,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.342567,0.362801,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.364018,0.341084,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.765937,0.538623,0][-1.89366,0.375019,1.98975][-0.705563,0,0.708647][0.765937,0.533067,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.776829,0.533067,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.776829,0.533067,0][-1.98147,0.311808,1.90232][-0.705563,0,0.708647][0.776829,0.538623,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.765937,0.538623,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.458523,0.0426546,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.475701,0.0447252,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.475036,0.0752435,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.475036,0.0752435,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.457784,0.0765638,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.458523,0.0426546,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.257096,0.547109,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.257096,0.56441,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.235464,0.56441,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.235464,0.56441,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.235464,0.547109,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.257096,0.547109,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.342567,0.362801,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.353625,0.376108,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.31729,0.379916,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.342567,0.362801,0][-1.51895,0,1.25212][0,-1.47262,0][0.484839,0.144768,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.50214,0.144768,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.50214,0.178686,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.50214,0.178686,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.484839,0.178686,0][-1.51895,0,1.25212][0,-1.47262,0][0.484839,0.144768,0][-1.5387,0.905327,1.09027][0,1,0][0.58978,0.970841,0][-1.50127,0.905327,1.05941][0,1,0][0.589453,0.975093,0][-1.54898,0.905327,0.988339][0,1,0][0.581931,0.975254,0][-1.54898,0.905327,0.988339][0,1,0][0.581931,0.975254,0][-1.59172,0.905327,1.0113][0,1,0][0.581422,0.97102,0][-1.5387,0.905327,1.09027][0,1,0][0.58978,0.970841,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.224201,0.637943,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.224201,0.655244,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.198857,0.655244,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.198857,0.655244,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.198857,0.637943,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.224201,0.637943,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.31729,0.379916,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.294285,0.408297,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.294285,0.408297,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.289161,0.391771,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.31729,0.379916,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.862314,0.777107,0][-2.51096,0.375019,1.11362][-0.923043,0,0.384696][0.862314,0.771551,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.872367,0.771551,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.872367,0.771551,0][-2.55863,0.311808,0.99924][-0.923043,0,0.384696][0.872367,0.777107,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.862314,0.777107,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.298518,0.191413,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.315715,0.193315,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.315349,0.223839,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.315349,0.223839,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.298111,0.225328,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.298518,0.191413,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.198857,0.637943,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.198857,0.655244,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.170681,0.655244,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.170681,0.655244,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.198857,0.637943,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.289161,0.391771,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.294285,0.408297,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.259259,0.397911,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.289161,0.391771,0][-1.88249,0,0.575535][0,-1.47262,0][0.484839,0.242636,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.50214,0.242636,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.50214,0.275887,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.50214,0.275887,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.484839,0.275887,0][-1.88249,0,0.575535][0,-1.47262,0][0.484839,0.242636,0][-1.83881,0.905327,0.418441][0,1,0][0.413769,0.703315,0][-1.79241,0.905327,0.404256][0,1,0][0.414054,0.69906,0][-1.80929,0.905327,0.320338][0,1,0][0.421574,0.698825,0][-1.80929,0.905327,0.320338][0,1,0][0.421574,0.698825,0][-1.85756,0.905327,0.325199][0,1,0][0.422124,0.703054,0][-1.83881,0.905327,0.418441][0,1,0][0.413769,0.703315,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.170681,0.655244,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.140755,0.655244,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.140755,0.655244,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.140755,0.637943,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.259259,0.397911,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.227144,0.415327,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.227144,0.415327,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.228734,0.398099,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.259259,0.397911,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.308341,0.654167,0][-2.74599,0.375019,0.067949][-0.999998,0,0.00217991][0.308341,0.648611,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.319232,0.648611,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.319232,0.648611,0][-2.74626,0.311808,-0.0559677][-0.999998,0,0.00217991][0.319232,0.654167,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.308341,0.654167,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.304693,0.575673,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.321908,0.577406,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.321841,0.607932,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.321841,0.607932,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.304619,0.60959,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.304693,0.575673,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.140755,0.637943,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.140755,0.655244,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.110229,0.655244,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.110229,0.655244,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.140755,0.637943,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.228734,0.398099,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.227144,0.415327,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.198759,0.392328,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.228734,0.398099,0][-1.95944,0,-0.188673][0,-1.47262,0][0.586299,0.0958342,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.603601,0.0958342,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.603601,0.129114,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.603601,0.129114,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.586299,0.129114,0][-1.95944,0,-0.188673][0,-1.47262,0][0.586299,0.0958342,0][-1.85897,0.905327,-0.317091][0,1,0][0.934592,0.175951,0][-1.81067,0.905327,-0.312441][0,1,0][0.934182,0.180195,0][-1.79415,0.905327,-0.396432][0,1,0][0.926658,0.180209,0][-1.79415,0.905327,-0.396432][0,1,0][0.926658,0.180209,0][-1.84061,0.905327,-0.410415][0,1,0][0.926233,0.175966,0][-1.85897,0.905327,-0.317091][0,1,0][0.934592,0.175951,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.110229,0.655244,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.0802773,0.655244,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.0802773,0.655244,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0802773,0.637943,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.198759,0.392328,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.162424,0.396129,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.162424,0.396129,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.170486,0.380821,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.198759,0.392328,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.77565,0.797923,0][-2.56296,0.375019,-0.988068][-0.924712,0,-0.380667][0.77565,0.792367,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.785722,0.792367,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.785722,0.792367,0][-2.51579,0.311808,-1.10265][-0.924712,0,-0.380667][0.785722,0.797923,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.77565,0.797923,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.0389004,0.0748539,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0366615,0.0920101,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.00615114,0.0910459,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.00615114,0.0910459,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.005,0.0737825,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.0389004,0.0748539,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0802773,0.637943,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.0802773,0.655244,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.0520499,0.655244,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.0520499,0.655244,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0802773,0.637943,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.170486,0.380821,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.162424,0.396129,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.145,0.364018,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.170486,0.380821,0][-1.73809,0,-0.924157][0,-1.47262,0][0.484839,0.193702,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.50214,0.193702,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.50214,0.22762,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.50214,0.22762,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.484839,0.22762,0][-1.73809,0,-0.924157][0,-1.47262,0][0.484839,0.193702,0][-1.59611,0.905327,-1.00435][0,1,0][0.991028,0.710017,0][-1.55328,0.905327,-0.981571][0,1,0][0.990659,0.714266,0][-1.50587,0.905327,-1.05285][0,1,0][0.983136,0.714353,0][-1.50587,0.905327,-1.05285][0,1,0][0.983136,0.714353,0][-1.54345,0.905327,-1.08355][0,1,0][0.982669,0.710114,0][-1.59611,0.905327,-1.00435][0,1,0][0.991028,0.710017,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.0520499,0.655244,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.0266319,0.655244,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.0266319,0.655244,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.0266319,0.637943,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.145,0.364018,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.109977,0.353625,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.109977,0.353625,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.123283,0.342567,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.145,0.364018,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.983668,0.423688,0][-1.98975,0.37502,-1.89366][-0.708647,0,-0.705563][0.983668,0.418133,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.99456,0.418133,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.99456,0.418133,0][-1.90232,0.311808,-1.98147][-0.708647,0,-0.705563][0.99456,0.423688,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.983668,0.423688,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.458523,0.426525,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.475701,0.428596,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.475036,0.459114,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.475036,0.459114,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.457784,0.460435,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.458523,0.426525,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.0266319,0.637943,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.0266319,0.655244,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.005,0.655244,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.005,0.655244,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.005,0.637943,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.0266319,0.637943,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.123283,0.342567,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.109977,0.353625,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.106168,0.31729,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.123283,0.342567,0][-1.25212,0,-1.51895][0,-1.47262,0][0.005,0.715441,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.0223017,0.715441,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0223017,0.749358,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0223017,0.749358,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.005,0.749358,0][-1.25212,0,-1.51895][0,-1.47262,0][0.005,0.715441,0][-1.09027,0.905327,-1.5387][0,1,0][0.406896,0.752172,0][-1.05941,0.905327,-1.50127][0,1,0][0.407223,0.74792,0][-0.988339,0.905327,-1.54898][0,1,0][0.414745,0.747759,0][-0.988339,0.905327,-1.54898][0,1,0][0.414745,0.747759,0][-1.0113,0.905327,-1.59172][0,1,0][0.415254,0.751993,0][-1.09027,0.905327,-1.5387][0,1,0][0.406896,0.752172,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.70404,0.06727,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.70404,0.0845717,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.678696,0.0845717,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.678696,0.0845717,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.678696,0.06727,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.70404,0.06727,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.106168,0.31729,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.0777874,0.294285,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.0777874,0.294285,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.0943129,0.289161,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.106168,0.31729,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.63823,0.757197,0][-1.11362,0.37502,-2.51096][-0.384697,0,-0.923043][0.63823,0.751641,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.649121,0.751641,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.649121,0.751641,0][-0.99924,0.311808,-2.55863][-0.384697,0,-0.923043][0.649121,0.757197,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.63823,0.757197,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0426635,0.406068,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.0445655,0.388871,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.075089,0.389237,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.075089,0.389237,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.0765783,0.406474,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0426635,0.406068,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.678696,0.06727,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.678696,0.0845717,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.650519,0.0845717,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.650519,0.0845717,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.678696,0.06727,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.0943129,0.289161,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.0777874,0.294285,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.0881734,0.259259,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.0943129,0.289161,0][-0.575534,0,-1.88249][0,-1.47262,0][0.005,0.813309,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.0223017,0.813309,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.0223017,0.84656,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.0223017,0.84656,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.005,0.84656,0][-0.575534,0,-1.88249][0,-1.47262,0][0.005,0.813309,0][-0.418441,0.905327,-1.83881][0,1,0][0.686919,0.859026,0][-0.404256,0.905327,-1.79241][0,1,0][0.687204,0.854771,0][-0.320338,0.905327,-1.80929][0,1,0][0.694724,0.854537,0][-0.320338,0.905327,-1.80929][0,1,0][0.694724,0.854537,0][-0.325199,0.905327,-1.85756][0,1,0][0.695274,0.858765,0][-0.418441,0.905327,-1.83881][0,1,0][0.686919,0.859026,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.650519,0.0845717,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.620593,0.0845717,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.620593,0.0845717,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.620593,0.06727,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.0881734,0.259259,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.0707568,0.227144,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.0707568,0.227144,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.0879854,0.228734,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.0881734,0.259259,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.788179,0.0834945,0][-0.067949,0.37502,-2.74599][-0.00217991,0,-0.999998][0.788179,0.0779387,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.799071,0.0779387,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.799071,0.0779387,0][0.0559677,0.311808,-2.74626][-0.00217991,0,-0.999998][0.799071,0.0834945,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.788179,0.0834945,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.554068,0.0958343,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.571283,0.0975677,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.571216,0.128093,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.571216,0.128093,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.553994,0.129751,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.554068,0.0958343,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.620593,0.06727,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.620593,0.0845717,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.590068,0.0845717,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.590068,0.0845717,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.620593,0.06727,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.0879854,0.228734,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.0707568,0.227144,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.0937561,0.198759,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.0879854,0.228734,0][0.188673,0,-1.95944][0,-1.47262,0][0.106461,0.666507,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.123763,0.666507,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.123763,0.699787,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.123763,0.699787,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.106461,0.699787,0][0.188673,0,-1.95944][0,-1.47262,0][0.106461,0.666507,0][0.317091,0.905327,-1.85897][0,1,0][0.974384,0.687416,0][0.312441,0.905327,-1.81067][0,1,0][0.973973,0.691661,0][0.396432,0.905327,-1.79415][0,1,0][0.96645,0.691675,0][0.396432,0.905327,-1.79415][0,1,0][0.96645,0.691675,0][0.410415,0.905327,-1.84061][0,1,0][0.966024,0.687432,0][0.317091,0.905327,-1.85897][0,1,0][0.974384,0.687416,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.590068,0.0845717,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.560116,0.0845717,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.560116,0.0845717,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.560116,0.06727,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.0937561,0.198759,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.0899551,0.162424,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.0899551,0.162424,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.105264,0.170486,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.0937561,0.198759,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.686919,0.801542,0][0.988068,0.37502,-2.56296][0.380669,0,-0.924711][0.686919,0.795986,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.69781,0.795986,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.69781,0.795986,0][1.10265,0.311808,-2.51579][0.380669,0,-0.924711][0.69781,0.801542,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.686919,0.801542,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.458725,0.388871,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.475881,0.39111,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.474917,0.42162,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.474917,0.42162,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.457653,0.422771,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.458725,0.388871,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.560116,0.06727,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.560116,0.0845717,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.531888,0.0845717,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.531888,0.0845717,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.560116,0.06727,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.105264,0.170486,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.0899551,0.162424,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.122066,0.145,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.105264,0.170486,0][0.924157,0,-1.73809][0,-1.47262,0][0.813009,0.005,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.830311,0.005,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.830311,0.0389173,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.830311,0.0389173,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.813009,0.0389173,0][0.924157,0,-1.73809][0,-1.47262,0][0.813009,0.005,0][1.00435,0.905327,-1.59611][0,1,0][0.875693,0.27929,0][0.981572,0.905327,-1.55328][0,1,0][0.876062,0.275042,0][1.05285,0.905327,-1.50587][0,1,0][0.883585,0.274955,0][1.05285,0.905327,-1.50587][0,1,0][0.883585,0.274955,0][1.08355,0.905327,-1.54345][0,1,0][0.884052,0.279193,0][1.00435,0.905327,-1.59611][0,1,0][0.875693,0.27929,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.531888,0.0845717,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.50647,0.0845717,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.50647,0.0845717,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.50647,0.06727,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.122066,0.145,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.13246,0.109977,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.13246,0.109977,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.143518,0.123283,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.122066,0.145,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.746874,0.132686,0][1.89366,0.37502,-1.98975][0.705563,0,-0.708648][0.746874,0.12713,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.757765,0.12713,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.757765,0.12713,0][1.98147,0.311808,-1.90232][0.705563,0,-0.708648][0.757765,0.132686,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.746874,0.132686,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.005,0.406048,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.00707061,0.388871,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.0375889,0.389536,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.0375889,0.389536,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.0389093,0.406787,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.005,0.406048,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.50647,0.06727,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.50647,0.0845717,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.484839,0.0845717,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.484839,0.0845717,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.484839,0.06727,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.50647,0.06727,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.143518,0.123283,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.13246,0.109977,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.168794,0.106168,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.143518,0.123283,0][1.51895,0,-1.25212][0,-1.47262,0][0.33317,0.575673,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.350472,0.575673,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.350472,0.60959,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.350472,0.60959,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.33317,0.60959,0][1.51895,0,-1.25212][0,-1.47262,0][0.33317,0.575673,0][1.5387,0.905327,-1.09027][0,1,0][0.660671,0.8836,0][1.50127,0.905327,-1.05941][0,1,0][0.660998,0.879348,0][1.54898,0.905327,-0.988339][0,1,0][0.66852,0.879187,0][1.54898,0.905327,-0.988339][0,1,0][0.66852,0.879187,0][1.59172,0.905327,-1.0113][0,1,0][0.669028,0.883421,0][1.5387,0.905327,-1.09027][0,1,0][0.660671,0.8836,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.224201,0.547109,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.224201,0.56441,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.198857,0.56441,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.198857,0.56441,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.198857,0.547109,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.224201,0.547109,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.168794,0.106168,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.191799,0.0777874,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.191799,0.0777874,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.196923,0.0943129,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.168794,0.106168,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.855713,0.653438,0][2.51096,0.375019,-1.11362][0.923043,0,-0.384697][0.855713,0.647883,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.865766,0.647883,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.865766,0.647883,0][2.55863,0.311808,-0.99924][0.923043,0,-0.384697][0.865766,0.653438,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.855713,0.653438,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.0765695,0.0744443,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.0746674,0.0916412,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.044144,0.0912753,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.044144,0.0912753,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.0426546,0.0740378,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.0765695,0.0744443,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.198857,0.547109,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.198857,0.56441,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.170681,0.56441,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.170681,0.56441,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.198857,0.547109,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.196923,0.0943129,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.191799,0.0777874,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.226825,0.0881734,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.196923,0.0943129,0][1.88249,0,-0.575534][0,-1.47262,0][0.674015,0.144768,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.691317,0.144768,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.691317,0.178019,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.691317,0.178019,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.674015,0.178019,0][1.88249,0,-0.575534][0,-1.47262,0][0.674015,0.144768,0][1.83881,0.905327,-0.418441][0,1,0][0.909636,0.128153,0][1.79241,0.905327,-0.404256][0,1,0][0.909351,0.132408,0][1.80929,0.905327,-0.320338][0,1,0][0.901831,0.132642,0][1.80929,0.905327,-0.320338][0,1,0][0.901831,0.132642,0][1.85756,0.905327,-0.325198][0,1,0][0.901281,0.128414,0][1.83881,0.905327,-0.418441][0,1,0][0.909636,0.128153,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.170681,0.56441,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.140755,0.56441,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.140755,0.56441,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.140755,0.547109,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.226825,0.0881734,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.25894,0.0707568,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.25894,0.0707568,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.25735,0.0879854,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.226825,0.0881734,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.581422,0.898702,0][2.74599,0.375019,-0.0679487][0.999998,0,-0.00217992][0.581422,0.893146,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.592314,0.893146,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.592314,0.893146,0][2.74626,0.311808,0.0559676][0.999998,0,-0.00217992][0.592314,0.898702,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.581422,0.898702,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.732517,0.0389172,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.715302,0.0371838,0][1.7635,0.19685,0.169806][0,1.66897,0][0.715369,0.0066583,0][1.7635,0.19685,0.169806][0,1.66897,0][0.715369,0.0066583,0][1.95944,0.19685,0.188673][0,1.47262,0][0.732591,0.005,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.732517,0.0389172,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.140755,0.547109,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.140755,0.56441,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.110229,0.56441,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.110229,0.56441,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.140755,0.547109,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.25735,0.0879854,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.25894,0.0707568,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.287325,0.0937561,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.25735,0.0879854,0][1.95944,0,0.188673][0,-1.47262,0][0.0995884,0.715441,0][1.95944,0.19685,0.188673][0,1.47262,0][0.11689,0.715441,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.11689,0.748721,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.11689,0.748721,0][1.88498,0,0.567316][1.54128,0,0.303086][0.0995884,0.748721,0][1.95944,0,0.188673][0,-1.47262,0][0.0995884,0.715441,0][1.85897,0.905327,0.317091][0,1,0][0.831644,0.229256,0][1.81067,0.905327,0.312441][0,1,0][0.832054,0.225012,0][1.79415,0.905327,0.396432][0,1,0][0.839578,0.224998,0][1.79415,0.905327,0.396432][0,1,0][0.839578,0.224998,0][1.84061,0.905327,0.410415][0,1,0][0.840004,0.229241,0][1.85897,0.905327,0.317091][0,1,0][0.831644,0.229256,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.110229,0.56441,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.0802773,0.56441,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.0802773,0.56441,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.0802773,0.547109,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.287325,0.0937561,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.88498,0,0.567316][1.54128,0,0.303086][0.323661,0.0899551,0][1.88498,0,0.567316][1.54128,0,0.303086][0.323661,0.0899551,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.315599,0.105264,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.287325,0.0937561,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.891182,0.63262,0][2.56296,0.375019,0.988067][0.924711,0,0.380669][0.891182,0.627064,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.901254,0.627064,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.901254,0.627064,0][2.51579,0.311808,1.10265][0.924711,0,0.380669][0.901254,0.63262,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.891182,0.63262,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.15375,0.170906,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.155989,0.15375,0][1.56428,0.19685,0.831741][0,1.66897,0][0.186499,0.154714,0][1.56428,0.19685,0.831741][0,1.66897,0][0.186499,0.154714,0][1.73809,0.19685,0.924157][0,1.47262,0][0.18765,0.171978,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.15375,0.170906,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.0802773,0.547109,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.0802773,0.56441,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.0520499,0.56441,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.0520499,0.56441,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.0802773,0.547109,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.315599,0.105264,0][1.88498,0,0.567316][1.54128,0,0.303086][0.323661,0.0899551,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.341084,0.122066,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.315599,0.105264,0][1.73809,0,0.924157][0,-1.47262,0][0.579427,0.144768,0][1.73809,0.19685,0.924157][0,1.47262,0][0.596729,0.144768,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.596729,0.178686,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.596729,0.178686,0][1.52439,0,1.24548][1.30797,0,0.869836][0.579427,0.178686,0][1.73809,0,0.924157][0,-1.47262,0][0.579427,0.144768,0][1.59611,0.905327,1.00435][0,1,0][0.738974,0.893555,0][1.55328,0.905327,0.981572][0,1,0][0.739343,0.889307,0][1.50587,0.905327,1.05285][0,1,0][0.746866,0.88922,0][1.50587,0.905327,1.05285][0,1,0][0.746866,0.88922,0][1.54345,0.905327,1.08355][0,1,0][0.747333,0.893459,0][1.59611,0.905327,1.00435][0,1,0][0.738974,0.893555,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.0520499,0.56441,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.0266319,0.56441,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.0266319,0.56441,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.0266319,0.547109,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.341084,0.122066,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.52439,0,1.24548][1.30797,0,0.869836][0.376108,0.13246,0][1.52439,0,1.24548][1.30797,0,0.869836][0.376108,0.13246,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.362801,0.143518,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.341084,0.122066,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.267035,0.703359,0][1.98975,0.375019,1.89366][0.708648,0,0.705562][0.267035,0.697803,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.277927,0.697803,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.277927,0.697803,0][1.90232,0.311808,1.98147][0.708648,0,0.705562][0.277927,0.703359,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.267035,0.703359,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.208582,0.187659,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.191405,0.185589,0][1.12691,0.19685,1.36705][0,1.66897,0][0.19207,0.15507,0][1.12691,0.19685,1.36705][0,1.66897,0][0.19207,0.15507,0][1.25212,0.19685,1.51895][0,1.47262,0][0.209321,0.15375,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.208582,0.187659,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.0266319,0.547109,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.0266319,0.56441,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.005,0.56441,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.005,0.56441,0][1.12691,0.19685,1.36705][0,1.66897,0][0.005,0.547109,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.0266319,0.547109,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.362801,0.143518,0][1.52439,0,1.24548][1.30797,0,0.869836][0.376108,0.13246,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.379916,0.168794,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.362801,0.143518,0][1.25212,0,1.51895][0,-1.47262,0][0.005,0.764375,0][1.25212,0.19685,1.51895][0,1.47262,0][0.0223017,0.764375,0][0.931732,0.19685,1.73404][0,1.47262,0][0.0223017,0.798292,0][0.931732,0.19685,1.73404][0,1.47262,0][0.0223017,0.798292,0][0.931732,0,1.73404][0,-1.47262,0][0.005,0.798292,0][1.25212,0,1.51895][0,-1.47262,0][0.005,0.764375,0][1.09027,0.905327,1.5387][0,1,0][0.799638,0.274955,0][1.05941,0.905327,1.50127][0,1,0][0.799311,0.279206,0][0.988339,0.905327,1.54898][0,1,0][0.791789,0.279368,0][0.988339,0.905327,1.54898][0,1,0][0.791789,0.279368,0][1.0113,0.905327,1.59172][0,1,0][0.791281,0.275134,0][1.09027,0.905327,1.5387][0,1,0][0.799638,0.274955,0][1.12691,0.19685,1.36705][0,1.66897,0][0.454665,0.547109,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.454665,0.56441,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.429321,0.56441,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.429321,0.56441,0][0.838558,0.19685,1.56063][0,1.66897,0][0.429321,0.547109,0][1.12691,0.19685,1.36705][0,1.66897,0][0.454665,0.547109,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.379916,0.168794,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][0.931732,0,1.73404][0,-1.47262,0][0.408297,0.191799,0][0.931732,0,1.73404][0,-1.47262,0][0.408297,0.191799,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.391771,0.196923,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.379916,0.168794,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.307717,0.0214963,0][0.575535,0,1.88249][0,-1.47262,0][0.3025,0.005,0][0.99924,0.311808,2.55863][0.384697,0,0.923043][0.377632,0.00998168,0][0.99924,0.311808,2.55863][0.384697,0,0.923043][0.377632,0.00998168,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.379307,0.0152789,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.307717,0.0214963,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.931732,0,1.73404][0,-1.47262,0][0.408297,0.191799,0][1.11362,0.311808,2.51096][0.384697,0,0.923043][0.47838,0.189163,0][1.11362,0.311808,2.51096][0.384697,0,0.923043][0.47838,0.189163,0][0.99924,0.311808,2.55863][0.384697,0,0.923043][0.48057,0.199831,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.931732,0,1.73404][0,-1.47262,0][0.577006,0.307183,0][0.931732,0.19685,1.73404][0,1.47262,0][0.582866,0.290904,0][1.11362,0.375019,2.51096][0.384697,0,0.923043][0.65242,0.299298,0][1.11362,0.375019,2.51096][0.384697,0,0.923043][0.65242,0.299298,0][1.11362,0.311808,2.51096][0.384697,0,0.923043][0.650538,0.304525,0][0.931732,0,1.73404][0,-1.47262,0][0.577006,0.307183,0][0.931732,0.19685,1.73404][0,1.47262,0][0.225319,0.260858,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.191405,0.260451,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.203746,0.191413,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.203746,0.191413,0][1.11362,0.375019,2.51096][0.384697,0,0.923043][0.214636,0.191544,0][0.931732,0.19685,1.73404][0,1.47262,0][0.225319,0.260858,0][0.197221,0,1.9586][0.309807,0,1.53994][0.773055,0.112113,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.778916,0.0958342,0][0.0679491,0.375019,2.74599][0.00217992,0,0.999998][0.849335,0.10454,0][0.0679491,0.375019,2.74599][0.00217992,0,0.999998][0.849335,0.10454,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.847453,0.109767,0][0.197221,0,1.9586][0.309807,0,1.53994][0.773055,0.112113,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.0222147,0.700424,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.0222887,0.666507,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.0914441,0.678171,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.0914441,0.678171,0][0.0679491,0.375019,2.74599][0.00217992,0,0.999998][0.0914204,0.689062,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.0222147,0.700424,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.839262,0.144768,0][-0.188673,0,1.95944][0,-1.47262,0][0.84448,0.161265,0][-0.0559673,0.311808,2.74626][0.00217992,0,0.999998][0.770279,0.155988,0][-0.0559673,0.311808,2.74626][0.00217992,0,0.999998][0.770279,0.155988,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.768604,0.150691,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.839262,0.144768,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][0.197221,0,1.9586][0.309807,0,1.53994][0.415327,0.25894,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.481084,0.283324,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.481084,0.283324,0][-0.0559673,0.311808,2.74626][0.00217992,0,0.999998][0.479025,0.294019,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.907597,0.0702131,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.913457,0.053934,0][-0.988067,0.375019,2.56296][-0.380667,0,0.924712][0.984748,0.0629533,0][-0.988067,0.375019,2.56296][-0.380667,0,0.924712][0.984748,0.0629533,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.982867,0.0681808,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.907597,0.0702131,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.406027,0.0389004,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.407098,0.005,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.475881,0.0186924,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.475881,0.0186924,0][-0.988067,0.375019,2.56296][-0.380667,0,0.924712][0.475537,0.0295783,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.406027,0.0389004,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.862206,0.160934,0][-0.924157,0,1.73809][0,-1.47262,0][0.855742,0.144885,0][-1.10265,0.311808,2.51579][-0.380667,0,0.924712][0.929386,0.144768,0][-1.10265,0.311808,2.51579][-0.380667,0,0.924712][0.929386,0.144768,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.931462,0.149922,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.862206,0.160934,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.396129,0.323661,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.447549,0.371352,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.447549,0.371352,0][-1.10265,0.311808,2.51579][-0.380667,0,0.924712][0.441554,0.380445,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.484839,0.307183,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.490699,0.290904,0][-1.89366,0.375019,1.98975][-0.705563,0,0.708647][0.56199,0.299923,0][-1.89366,0.375019,1.98975][-0.705563,0,0.708647][0.56199,0.299923,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.560108,0.305151,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.484839,0.307183,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.458523,0.0426546,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.457784,0.0765638,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.388871,0.0635464,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.388871,0.0635464,0][-1.89366,0.375019,1.98975][-0.705563,0,0.708647][0.389108,0.0526576,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.458523,0.0426546,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.307054,0.620853,0][-1.51895,0,1.25212][0,-1.47262,0][0.312271,0.637349,0][-1.98147,0.311808,1.90232][-0.705563,0,0.708647][0.237139,0.632367,0][-1.98147,0.311808,1.90232][-0.705563,0,0.708647][0.237139,0.632367,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.235464,0.62707,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.307054,0.620853,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.353625,0.376108,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.38288,0.439847,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.38288,0.439847,0][-1.98147,0.311808,1.90232][-0.705563,0,0.708647][0.373862,0.445953,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.761154,0.209981,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.767014,0.193702,0][-2.51096,0.375019,1.11362][-0.923043,0,0.384696][0.836567,0.202096,0][-2.51096,0.375019,1.11362][-0.923043,0,0.384696][0.836567,0.202096,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.834686,0.207324,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.761154,0.209981,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.298518,0.191413,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.298111,0.225328,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.229074,0.212987,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.229074,0.212987,0][-2.51096,0.375019,1.11362][-0.923043,0,0.384696][0.229204,0.202096,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.298518,0.191413,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.884599,0.053934,0][-1.88249,0,0.575535][0,-1.47262,0][0.889816,0.0704304,0][-2.55863,0.311808,0.99924][-0.923043,0,0.384696][0.814684,0.0654487,0][-2.55863,0.311808,0.99924][-0.923043,0,0.384696][0.814684,0.0654487,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.813009,0.0601515,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.884599,0.053934,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.294285,0.408297,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.296922,0.47838,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.296922,0.47838,0][-2.55863,0.311808,0.99924][-0.923043,0,0.384696][0.286253,0.48057,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.293217,0.682786,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.299077,0.666507,0][-2.74599,0.375019,0.067949][-0.999998,0,0.00217991][0.369496,0.675212,0][-2.74599,0.375019,0.067949][-0.999998,0,0.00217991][0.369496,0.675212,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.367614,0.68044,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.293217,0.682786,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.304693,0.575673,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.304619,0.60959,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.235464,0.597926,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.235464,0.597926,0][-2.74599,0.375019,0.067949][-0.999998,0,0.00217991][0.235487,0.587035,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.304693,0.575673,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.170247,0.795671,0][-1.95944,0,-0.188673][0,-1.47262,0][0.175464,0.812167,0][-2.74626,0.311808,-0.0559677][-0.999998,0,0.00217991][0.101264,0.806891,0][-2.74626,0.311808,-0.0559677][-0.999998,0,0.00217991][0.101264,0.806891,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.0995884,0.801594,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.170247,0.795671,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.227144,0.415327,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.202761,0.481084,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.202761,0.481084,0][-2.74626,0.311808,-0.0559677][-0.999998,0,0.00217991][0.192066,0.479025,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.579427,0.258915,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.585287,0.242636,0][-2.56296,0.375019,-0.988068][-0.924712,0,-0.380667][0.656578,0.251655,0][-2.56296,0.375019,-0.988068][-0.924712,0,-0.380667][0.656578,0.251655,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.654696,0.256883,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.579427,0.258915,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.0389004,0.0748539,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.005,0.0737825,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.0186924,0.005,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.0186924,0.005,0][-2.56296,0.375019,-0.988068][-0.924712,0,-0.380667][0.0295783,0.00534402,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.0389004,0.0748539,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.289516,0.780541,0][-1.73809,0,-0.924157][0,-1.47262,0][0.283052,0.764492,0][-2.51579,0.311808,-1.10265][-0.924712,0,-0.380667][0.356696,0.764375,0][-2.51579,0.311808,-1.10265][-0.924712,0,-0.380667][0.356696,0.764375,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.358772,0.769529,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.289516,0.780541,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.162424,0.396129,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.114732,0.447549,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.114732,0.447549,0][-2.51579,0.311808,-1.10265][-0.924712,0,-0.380667][0.105639,0.441554,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.680888,0.112113,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.686748,0.0958342,0][-1.98975,0.37502,-1.89366][-0.708647,0,-0.705563][0.758039,0.104853,0][-1.98975,0.37502,-1.89366][-0.708647,0,-0.705563][0.758039,0.104853,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.756157,0.110081,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.680888,0.112113,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.458523,0.426525,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.457784,0.460435,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.388871,0.447417,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.388871,0.447417,0][-1.98975,0.37502,-1.89366][-0.708647,0,-0.705563][0.389108,0.436528,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.458523,0.426525,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.106185,0.0214963,0][-1.25212,0,-1.51895][0,-1.47262,0][0.100968,0.005,0][-1.90232,0.311808,-1.98147][-0.708647,0,-0.705563][0.176099,0.00998168,0][-1.90232,0.311808,-1.98147][-0.708647,0,-0.705563][0.176099,0.00998168,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.177775,0.0152789,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.106185,0.0214963,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.109977,0.353625,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.0462376,0.38288,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.0462376,0.38288,0][-1.90232,0.311808,-1.98147][-0.708647,0,-0.705563][0.040131,0.373862,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.671595,0.258915,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.677455,0.242636,0][-1.11362,0.37502,-2.51096][-0.384697,0,-0.923043][0.747008,0.25103,0][-1.11362,0.37502,-2.51096][-0.384697,0,-0.923043][0.747008,0.25103,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.745127,0.256258,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.671595,0.258915,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0426635,0.406068,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.0765783,0.406474,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.0642371,0.475512,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.0642371,0.475512,0][-1.11362,0.37502,-2.51096][-0.384697,0,-0.923043][0.0533465,0.475381,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0426635,0.406068,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.786892,0.0501798,0][-0.575534,0,-1.88249][0,-1.47262,0][0.792109,0.0666761,0][-0.99924,0.311808,-2.55863][-0.384697,0,-0.923043][0.716978,0.0616944,0][-0.99924,0.311808,-2.55863][-0.384697,0,-0.923043][0.716978,0.0616944,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.715302,0.0563972,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.786892,0.0501798,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.0777874,0.294285,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.0077048,0.296922,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.0077048,0.296922,0][-0.99924,0.311808,-2.55863][-0.384697,0,-0.923043][0.00551426,0.286253,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.286345,0.73172,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.292205,0.715441,0][-0.067949,0.37502,-2.74599][-0.00217991,0,-0.999998][0.362624,0.724146,0][-0.067949,0.37502,-2.74599][-0.00217991,0,-0.999998][0.362624,0.724146,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.360742,0.729374,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.286345,0.73172,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.554068,0.0958343,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.553994,0.129751,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.484839,0.118088,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.484839,0.118088,0][-0.067949,0.37502,-2.74599][-0.00217991,0,-0.999998][0.484862,0.107196,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.554068,0.0958343,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.0756585,0.861577,0][0.188673,0,-1.95944][0,-1.47262,0][0.0808758,0.878073,0][0.0559677,0.311808,-2.74626][-0.00217991,0,-0.999998][0.00667536,0.872797,0][0.0559677,0.311808,-2.74626][-0.00217991,0,-0.999998][0.00667536,0.872797,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.005,0.8675,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.0756585,0.861577,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.0707568,0.227144,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.005,0.202761,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.005,0.202761,0][0.0559677,0.311808,-2.74626][-0.00217991,0,-0.999998][0.007059,0.192066,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.194177,0.73172,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.200037,0.715441,0][0.988068,0.37502,-2.56296][0.380669,0,-0.924711][0.271328,0.72446,0][0.988068,0.37502,-2.56296][0.380669,0,-0.924711][0.271328,0.72446,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.269446,0.729688,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.194177,0.73172,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.458725,0.388871,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.457653,0.422771,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.388871,0.409079,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.388871,0.409079,0][0.988068,0.37502,-2.56296][0.380669,0,-0.924711][0.389215,0.398193,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.458725,0.388871,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.106052,0.839595,0][0.924157,0,-1.73809][0,-1.47262,0][0.0995884,0.823546,0][1.10265,0.311808,-2.51579][0.380669,0,-0.924711][0.173232,0.82343,0][1.10265,0.311808,-2.51579][0.380669,0,-0.924711][0.173232,0.82343,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.175308,0.828583,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.106052,0.839595,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.0899551,0.162424,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.038535,0.114732,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.038535,0.114732,0][1.10265,0.311808,-2.51579][0.380669,0,-0.924711][0.04453,0.105639,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.0995884,0.780654,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.105448,0.764375,0][1.89366,0.37502,-1.98975][0.705563,0,-0.708648][0.176739,0.773394,0][1.89366,0.37502,-1.98975][0.705563,0,-0.708648][0.176739,0.773394,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.174858,0.778622,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.0995884,0.780654,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.005,0.406048,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.0389093,0.406787,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.0258918,0.475701,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.0258918,0.475701,0][1.89366,0.37502,-1.98975][0.705563,0,-0.708648][0.015003,0.475463,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.005,0.406048,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.005,0.307717,0][1.51895,0,-1.25212][0,-1.47262,0][0.0214963,0.3025,0][1.98147,0.311808,-1.90232][0.705563,0,-0.708648][0.0165147,0.377632,0][1.98147,0.311808,-1.90232][0.705563,0,-0.708648][0.0165147,0.377632,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.0112175,0.379307,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.005,0.307717,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.13246,0.109977,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.103204,0.0462376,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.103204,0.0462376,0][1.98147,0.311808,-1.90232][0.705563,0,-0.708648][0.112223,0.040131,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.484839,0.338479,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.490699,0.3222,0][2.51096,0.375019,-1.11362][0.923043,0,-0.384697][0.560252,0.330594,0][2.51096,0.375019,-1.11362][0.923043,0,-0.384697][0.560252,0.330594,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.558371,0.335821,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.484839,0.338479,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.0765695,0.0744443,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.0426546,0.0740378,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.0549958,0.005,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.0549958,0.005,0][2.51096,0.375019,-1.11362][0.923043,0,-0.384697][0.0658864,0.00513053,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.0765695,0.0744443,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.45125,0.106185,0][1.88249,0,-0.575534][0,-1.47262,0][0.467746,0.100968,0][2.55863,0.311808,-0.99924][0.923043,0,-0.384697][0.462764,0.176099,0][2.55863,0.311808,-0.99924][0.923043,0,-0.384697][0.462764,0.176099,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.457467,0.177775,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.45125,0.106185,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.191799,0.0777874,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.189163,0.0077048,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.189163,0.0077048,0][2.55863,0.311808,-0.99924][0.923043,0,-0.384697][0.199832,0.00551424,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.191756,0.780654,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.197616,0.764375,0][2.74599,0.375019,-0.0679487][0.999998,0,-0.00217992][0.268035,0.77308,0][2.74599,0.375019,-0.0679487][0.999998,0,-0.00217992][0.268035,0.77308,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.266154,0.778308,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.191756,0.780654,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.732517,0.0389172,0][1.95944,0.19685,0.188673][0,1.47262,0][0.732591,0.005,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.801746,0.0166639,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.801746,0.0166639,0][2.74599,0.375019,-0.0679487][0.999998,0,-0.00217992][0.801723,0.0275552,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.732517,0.0389172,0][1.95944,0.19685,0.188673][0,1.47262,0][0.744674,0.193702,0][1.95944,0,0.188673][0,-1.47262,0][0.749891,0.210199,0][2.74626,0.311808,0.0559676][0.999998,0,-0.00217992][0.675691,0.204922,0][2.74626,0.311808,0.0559676][0.999998,0,-0.00217992][0.675691,0.204922,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.674015,0.199625,0][1.95944,0.19685,0.188673][0,1.47262,0][0.744674,0.193702,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.25894,0.0707568,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.283324,0.005,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.283324,0.005,0][2.74626,0.311808,0.0559676][0.999998,0,-0.00217992][0.294019,0.00705898,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.88498,0,0.567316][1.54128,0,0.303086][0.33317,0.640886,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.33903,0.624607,0][2.56296,0.375019,0.988067][0.924711,0,0.380669][0.410321,0.633626,0][2.56296,0.375019,0.988067][0.924711,0,0.380669][0.410321,0.633626,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.40844,0.638854,0][1.88498,0,0.567316][1.54128,0,0.303086][0.33317,0.640886,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.15375,0.170906,0][1.73809,0.19685,0.924157][0,1.47262,0][0.18765,0.171978,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.173958,0.24076,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.173958,0.24076,0][2.56296,0.375019,0.988067][0.924711,0,0.380669][0.163072,0.240416,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.15375,0.170906,0][1.73809,0.19685,0.924157][0,1.47262,0][0.0114641,0.905501,0][1.73809,0,0.924157][0,-1.47262,0][0.005,0.889452,0][2.51579,0.311808,1.10265][0.924711,0,0.380669][0.0786441,0.889336,0][2.51579,0.311808,1.10265][0.924711,0,0.380669][0.0786441,0.889336,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.0807198,0.894489,0][1.73809,0.19685,0.924157][0,1.47262,0][0.0114641,0.905501,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.88498,0,0.567316][1.54128,0,0.303086][0.323661,0.0899551,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.371352,0.038535,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.371352,0.038535,0][2.51579,0.311808,1.10265][0.924711,0,0.380669][0.380445,0.04453,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.52439,0,1.24548][1.30797,0,0.869836][0.201049,0.682786,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.206909,0.666507,0][1.98975,0.375019,1.89366][0.708648,0,0.705562][0.2782,0.675526,0][1.98975,0.375019,1.89366][0.708648,0,0.705562][0.2782,0.675526,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.276319,0.680754,0][1.52439,0,1.24548][1.30797,0,0.869836][0.201049,0.682786,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.208582,0.187659,0][1.25212,0.19685,1.51895][0,1.47262,0][0.209321,0.15375,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.278234,0.166767,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.278234,0.166767,0][1.98975,0.375019,1.89366][0.708648,0,0.705562][0.277997,0.177656,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.208582,0.187659,0][1.25212,0.19685,1.51895][0,1.47262,0][0.005,0.106185,0][1.25212,0,1.51895][0,-1.47262,0][0.0214963,0.100968,0][1.90232,0.311808,1.98147][0.708648,0,0.705562][0.0165147,0.176099,0][1.90232,0.311808,1.98147][0.708648,0,0.705562][0.0165147,0.176099,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.0112175,0.177775,0][1.25212,0.19685,1.51895][0,1.47262,0][0.005,0.106185,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][1.52439,0,1.24548][1.30797,0,0.869836][0.376108,0.13246,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.439847,0.103204,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.439847,0.103204,0][1.90232,0.311808,1.98147][0.708648,0,0.705562][0.445953,0.112223,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.484839,0.499236,0][0.517981,0.19685,1.69424][0,1.66897,0][0.484839,0.48269,0][0.404257,0.905327,1.79241][0,1,0][0.547109,0.491318,0][0.404257,0.905327,1.79241][0,1,0][0.547109,0.491318,0][0.418442,0.905327,1.83881][0,1,0][0.547109,0.495396,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.484839,0.499236,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.371219,0.547109,0][0.320338,0.905327,1.80929][0,1,0][0.383773,0.484839,0][0.320338,0.905327,1.80929][0,1,0][0.383773,0.484839,0][0.404257,0.905327,1.79241][0,1,0][0.391149,0.484839,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.641734,0.403029,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.641734,0.385814,0][0.325199,0.905327,1.85756][0,1,0][0.704004,0.394694,0][0.325199,0.905327,1.85756][0,1,0][0.704004,0.394694,0][0.320338,0.905327,1.80929][0,1,0][0.704004,0.398937,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.641734,0.403029,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.596729,0.226953,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.596729,0.193702,0][0.418442,0.905327,1.83881][0,1,0][0.658999,0.20751,0][0.418442,0.905327,1.83881][0,1,0][0.658999,0.20751,0][0.325199,0.905327,1.85756][0,1,0][0.658999,0.215705,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.596729,0.226953,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.0995884,0.936471,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.0995884,0.919249,0][-0.312441,0.905327,1.81067][0,1,0][0.161858,0.923395,0][-0.312441,0.905327,1.81067][0,1,0][0.161858,0.923395,0][-0.317091,0.905327,1.85897][0,1,0][0.161858,0.92764,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.0995884,0.936471,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.310741,0.547109,0][-0.396432,0.905327,1.79415][0,1,0][0.320774,0.484839,0][-0.396432,0.905327,1.79415][0,1,0][0.320774,0.484839,0][-0.312441,0.905327,1.81067][0,1,0][0.328156,0.484839,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.333771,0.87118,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.333771,0.854612,0][-0.410415,0.905327,1.84061][0,1,0][0.396041,0.858512,0][-0.410415,0.905327,1.84061][0,1,0][0.396041,0.858512,0][-0.396432,0.905327,1.79415][0,1,0][0.396041,0.862595,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.333771,0.87118,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.15375,0.261816,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.18703,0.261816,0][-0.317091,0.905327,1.85897][0,1,0][0.175743,0.324086,0][-0.317091,0.905327,1.85897][0,1,0][0.175743,0.324086,0][-0.410415,0.905327,1.84061][0,1,0][0.16754,0.324086,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.15375,0.261816,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.918921,0.259938,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.918921,0.242636,0][-0.981571,0.905327,1.55328][0,1,0][0.982352,0.247965,0][-0.981571,0.905327,1.55328][0,1,0][0.982352,0.247965,0][-1.00435,0.905327,1.59611][0,1,0][0.982352,0.252229,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.918921,0.259938,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.257096,0.547109,0][-1.05285,0.905327,1.50587][0,1,0][0.26308,0.484839,0][-1.05285,0.905327,1.50587][0,1,0][0.26308,0.484839,0][-0.981571,0.905327,1.55328][0,1,0][0.269345,0.484839,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.178036,0.871914,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.178036,0.854612,0][-1.08355,0.905327,1.54345][0,1,0][0.241467,0.862321,0][-1.08355,0.905327,1.54345][0,1,0][0.241467,0.862321,0][-1.05285,0.905327,1.50587][0,1,0][0.241467,0.866585,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.178036,0.871914,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.924899,0.0389173,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.924899,0.005,0][-1.00435,0.905327,1.59611][0,1,0][0.987169,0.0177789,0][-1.00435,0.905327,1.59611][0,1,0][0.987169,0.0177789,0][-1.08355,0.905327,1.54345][0,1,0][0.987169,0.0261384,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.924899,0.0389173,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.762025,0.259938,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.762025,0.242636,0][-1.50127,0.905327,1.05941][0,1,0][0.825456,0.247965,0][-1.50127,0.905327,1.05941][0,1,0][0.825456,0.247965,0][-1.5387,0.905327,1.09027][0,1,0][0.825456,0.252229,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.762025,0.259938,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.224201,0.637943,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.198857,0.637943,0][-1.54898,0.905327,0.988339][0,1,0][0.212022,0.575673,0][-1.54898,0.905327,0.988339][0,1,0][0.212022,0.575673,0][-1.50127,0.905327,1.05941][0,1,0][0.218268,0.575673,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.224201,0.637943,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.484839,0.403116,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.484839,0.385814,0][-1.59172,0.905327,1.0113][0,1,0][0.54827,0.393523,0][-1.59172,0.905327,1.0113][0,1,0][0.54827,0.393523,0][-1.54898,0.905327,0.988339][0,1,0][0.54827,0.397787,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.484839,0.403116,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.50214,0.178686,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.50214,0.144768,0][-1.5387,0.905327,1.09027][0,1,0][0.56441,0.157547,0][-1.5387,0.905327,1.09027][0,1,0][0.56441,0.157547,0][-1.59172,0.905327,1.0113][0,1,0][0.56441,0.165907,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.50214,0.178686,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.640573,0.434678,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.640573,0.418133,0][-1.79241,0.905327,0.404256][0,1,0][0.702843,0.426761,0][-1.79241,0.905327,0.404256][0,1,0][0.702843,0.426761,0][-1.83881,0.905327,0.418441][0,1,0][0.702843,0.430839,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.640573,0.434678,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.140755,0.637943,0][-1.80929,0.905327,0.320338][0,1,0][0.153309,0.575673,0][-1.80929,0.905327,0.320338][0,1,0][0.153309,0.575673,0][-1.79241,0.905327,0.404256][0,1,0][0.160685,0.575673,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.720182,0.37071,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.720182,0.353496,0][-1.85756,0.905327,0.325199][0,1,0][0.782452,0.362376,0][-1.85756,0.905327,0.325199][0,1,0][0.782452,0.362376,0][-1.80929,0.905327,0.320338][0,1,0][0.782452,0.366619,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.720182,0.37071,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.50214,0.275887,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.50214,0.242636,0][-1.83881,0.905327,0.418441][0,1,0][0.56441,0.256444,0][-1.83881,0.905327,0.418441][0,1,0][0.56441,0.256444,0][-1.85756,0.905327,0.325199][0,1,0][0.56441,0.264639,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.50214,0.275887,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.178036,0.904152,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.178036,0.88693,0][-1.81067,0.905327,-0.312441][0,1,0][0.240306,0.891077,0][-1.81067,0.905327,-0.312441][0,1,0][0.240306,0.891077,0][-1.85897,0.905327,-0.317091][0,1,0][0.240306,0.895321,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.178036,0.904152,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0802773,0.637943,0][-1.79415,0.905327,-0.396432][0,1,0][0.0903105,0.575673,0][-1.79415,0.905327,-0.396432][0,1,0][0.0903105,0.575673,0][-1.81067,0.905327,-0.312441][0,1,0][0.0976927,0.575673,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.851584,0.211004,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.851584,0.193702,0][-1.84061,0.905327,-0.410415][0,1,0][0.915015,0.201411,0][-1.84061,0.905327,-0.410415][0,1,0][0.915015,0.201411,0][-1.79415,0.905327,-0.396432][0,1,0][0.915015,0.205675,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.851584,0.211004,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.603601,0.129114,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.603601,0.0958342,0][-1.85897,0.905327,-0.317091][0,1,0][0.665871,0.107121,0][-1.85897,0.905327,-0.317091][0,1,0][0.665871,0.107121,0][-1.84061,0.905327,-0.410415][0,1,0][0.665871,0.115324,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.603601,0.129114,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.0995884,0.904232,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0995884,0.88693,0][-1.55328,0.905327,-0.981571][0,1,0][0.16302,0.892259,0][-1.55328,0.905327,-0.981571][0,1,0][0.16302,0.892259,0][-1.59611,0.905327,-1.00435][0,1,0][0.16302,0.896524,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.0995884,0.904232,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.0266319,0.637943,0][-1.50587,0.905327,-1.05285][0,1,0][0.0326161,0.575673,0][-1.50587,0.905327,-1.05285][0,1,0][0.0326161,0.575673,0][-1.55328,0.905327,-0.981571][0,1,0][0.0388809,0.575673,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.484839,0.435434,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.484839,0.418133,0][-1.54345,0.905327,-1.08355][0,1,0][0.54827,0.425841,0][-1.54345,0.905327,-1.08355][0,1,0][0.54827,0.425841,0][-1.50587,0.905327,-1.05285][0,1,0][0.54827,0.430106,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.484839,0.435434,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.50214,0.22762,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.50214,0.193702,0][-1.59611,0.905327,-1.00435][0,1,0][0.56441,0.206481,0][-1.59611,0.905327,-1.00435][0,1,0][0.56441,0.206481,0][-1.54345,0.905327,-1.08355][0,1,0][0.56441,0.214841,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.50214,0.22762,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.384513,0.683809,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.384513,0.666507,0][-1.05941,0.905327,-1.50127][0,1,0][0.447944,0.671836,0][-1.05941,0.905327,-1.50127][0,1,0][0.447944,0.671836,0][-1.09027,0.905327,-1.5387][0,1,0][0.447944,0.6761,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.384513,0.683809,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.70404,0.06727,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.678696,0.06727,0][-0.988339,0.905327,-1.54898][0,1,0][0.69186,0.005,0][-0.988339,0.905327,-1.54898][0,1,0][0.69186,0.005,0][-1.05941,0.905327,-1.50127][0,1,0][0.698107,0.005,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.70404,0.06727,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.0995884,0.871914,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0995884,0.854612,0][-1.0113,0.905327,-1.59172][0,1,0][0.16302,0.862321,0][-1.0113,0.905327,-1.59172][0,1,0][0.16302,0.862321,0][-0.988339,0.905327,-1.54898][0,1,0][0.16302,0.866585,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.0995884,0.871914,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0223017,0.749358,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.0223017,0.715441,0][-1.09027,0.905327,-1.5387][0,1,0][0.0845717,0.72822,0][-1.09027,0.905327,-1.5387][0,1,0][0.0845717,0.72822,0][-1.0113,0.905327,-1.59172][0,1,0][0.0845717,0.736579,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0223017,0.749358,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.562125,0.466997,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.562125,0.450451,0][-0.404256,0.905327,-1.79241][0,1,0][0.624395,0.459079,0][-0.404256,0.905327,-1.79241][0,1,0][0.624395,0.459079,0][-0.418441,0.905327,-1.83881][0,1,0][0.624395,0.463157,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.562125,0.466997,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.620593,0.06727,0][-0.320338,0.905327,-1.80929][0,1,0][0.633148,0.005,0][-0.320338,0.905327,-1.80929][0,1,0][0.633148,0.005,0][-0.404256,0.905327,-1.79241][0,1,0][0.640524,0.005,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.563286,0.435347,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.563286,0.418133,0][-0.325199,0.905327,-1.85756][0,1,0][0.625556,0.427013,0][-0.325199,0.905327,-1.85756][0,1,0][0.625556,0.427013,0][-0.320338,0.905327,-1.80929][0,1,0][0.625556,0.431256,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.563286,0.435347,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.0223017,0.84656,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.0223017,0.813309,0][-0.418441,0.905327,-1.83881][0,1,0][0.0845717,0.827116,0][-0.418441,0.905327,-1.83881][0,1,0][0.0845717,0.827116,0][-0.325199,0.905327,-1.85756][0,1,0][0.0845717,0.835312,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.0223017,0.84656,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.484839,0.467673,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.484839,0.450451,0][0.312441,0.905327,-1.81067][0,1,0][0.547109,0.454597,0][0.312441,0.905327,-1.81067][0,1,0][0.547109,0.454597,0][0.317091,0.905327,-1.85897][0,1,0][0.547109,0.458842,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.484839,0.467673,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.560116,0.06727,0][0.396432,0.905327,-1.79415][0,1,0][0.570149,0.005,0][0.396432,0.905327,-1.79415][0,1,0][0.570149,0.005,0][0.312441,0.905327,-1.81067][0,1,0][0.577531,0.005,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.178036,0.935737,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.178036,0.919169,0][0.410415,0.905327,-1.84061][0,1,0][0.240306,0.923069,0][0.410415,0.905327,-1.84061][0,1,0][0.240306,0.923069,0][0.396432,0.905327,-1.79415][0,1,0][0.240306,0.927152,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.178036,0.935737,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.123763,0.699787,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.123763,0.666507,0][0.317091,0.905327,-1.85897][0,1,0][0.186033,0.677794,0][0.317091,0.905327,-1.85897][0,1,0][0.186033,0.677794,0][0.410415,0.905327,-1.84061][0,1,0][0.186033,0.685996,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.123763,0.699787,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.005,0.93782,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.005,0.920518,0][0.981572,0.905327,-1.55328][0,1,0][0.0684312,0.925847,0][0.981572,0.905327,-1.55328][0,1,0][0.0684312,0.925847,0][1.00435,0.905327,-1.59611][0,1,0][0.0684312,0.930111,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.005,0.93782,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.50647,0.06727,0][1.05285,0.905327,-1.50587][0,1,0][0.512455,0.005,0][1.05285,0.905327,-1.50587][0,1,0][0.512455,0.005,0][0.981572,0.905327,-1.55328][0,1,0][0.518719,0.005,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.484839,0.370797,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.484839,0.353496,0][1.08355,0.905327,-1.54345][0,1,0][0.54827,0.361204,0][1.08355,0.905327,-1.54345][0,1,0][0.54827,0.361204,0][1.05285,0.905327,-1.50587][0,1,0][0.54827,0.365469,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.484839,0.370797,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.830311,0.0389173,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.830311,0.005,0][1.00435,0.905327,-1.59611][0,1,0][0.892581,0.0177789,0][1.00435,0.905327,-1.59611][0,1,0][0.892581,0.0177789,0][1.08355,0.905327,-1.54345][0,1,0][0.892581,0.0261385,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.830311,0.0389173,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.563286,0.403116,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.563286,0.385814,0][1.50127,0.905327,-1.05941][0,1,0][0.626718,0.391143,0][1.50127,0.905327,-1.05941][0,1,0][0.626718,0.391143,0][1.5387,0.905327,-1.09027][0,1,0][0.626718,0.395407,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.563286,0.403116,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.224201,0.547109,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.198857,0.547109,0][1.54898,0.905327,-0.988339][0,1,0][0.212022,0.484839,0][1.54898,0.905327,-0.988339][0,1,0][0.212022,0.484839,0][1.50127,0.905327,-1.05941][0,1,0][0.218268,0.484839,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.224201,0.547109,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.840473,0.259938,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.840473,0.242636,0][1.59172,0.905327,-1.0113][0,1,0][0.903904,0.250345,0][1.59172,0.905327,-1.0113][0,1,0][0.903904,0.250345,0][1.54898,0.905327,-0.988339][0,1,0][0.903904,0.254609,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.840473,0.259938,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.350472,0.60959,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.350472,0.575673,0][1.5387,0.905327,-1.09027][0,1,0][0.412742,0.588452,0][1.5387,0.905327,-1.09027][0,1,0][0.412742,0.588452,0][1.59172,0.905327,-1.0113][0,1,0][0.412742,0.596811,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.350472,0.60959,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.005,0.970138,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.005,0.952836,0][1.79241,0.905327,-0.404256][0,1,0][0.0684312,0.958165,0][1.79241,0.905327,-0.404256][0,1,0][0.0684312,0.958165,0][1.83881,0.905327,-0.418441][0,1,0][0.0684312,0.96243,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.005,0.970138,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.140755,0.547109,0][1.80929,0.905327,-0.320338][0,1,0][0.153309,0.484839,0][1.80929,0.905327,-0.320338][0,1,0][0.153309,0.484839,0][1.79241,0.905327,-0.404256][0,1,0][0.160685,0.484839,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.0995884,0.968702,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.0995884,0.951488,0][1.85756,0.905327,-0.325198][0,1,0][0.161858,0.960368,0][1.85756,0.905327,-0.325198][0,1,0][0.161858,0.960368,0][1.80929,0.905327,-0.320338][0,1,0][0.161858,0.964611,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.0995884,0.968702,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.691317,0.178019,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.691317,0.144768,0][1.83881,0.905327,-0.418441][0,1,0][0.753587,0.158576,0][1.83881,0.905327,-0.418441][0,1,0][0.753587,0.158576,0][1.85756,0.905327,-0.325198][0,1,0][0.753587,0.166771,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.691317,0.178019,0][1.95944,0.19685,0.188673][0,1.47262,0][0.256484,0.871834,0][1.7635,0.19685,0.169806][0,1.66897,0][0.256484,0.854612,0][1.81067,0.905327,0.312441][0,1,0][0.318754,0.858758,0][1.81067,0.905327,0.312441][0,1,0][0.318754,0.858758,0][1.85897,0.905327,0.317091][0,1,0][0.318754,0.863003,0][1.95944,0.19685,0.188673][0,1.47262,0][0.256484,0.871834,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.0802773,0.547109,0][1.79415,0.905327,0.396432][0,1,0][0.0903105,0.484839,0][1.79415,0.905327,0.396432][0,1,0][0.0903105,0.484839,0][1.81067,0.905327,0.312441][0,1,0][0.0976927,0.484839,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.255323,0.903498,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.255323,0.88693,0][1.84061,0.905327,0.410415][0,1,0][0.317593,0.89083,0][1.84061,0.905327,0.410415][0,1,0][0.317593,0.89083,0][1.79415,0.905327,0.396432][0,1,0][0.317593,0.894913,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.255323,0.903498,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.11689,0.748721,0][1.95944,0.19685,0.188673][0,1.47262,0][0.11689,0.715441,0][1.85897,0.905327,0.317091][0,1,0][0.17916,0.726728,0][1.85897,0.905327,0.317091][0,1,0][0.17916,0.726728,0][1.84061,0.905327,0.410415][0,1,0][0.17916,0.73493,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.11689,0.748721,0][1.73809,0.19685,0.924157][0,1.47262,0][0.641734,0.370797,0][1.56428,0.19685,0.831741][0,1.66897,0][0.641734,0.353496,0][1.55328,0.905327,0.981572][0,1,0][0.705165,0.358824,0][1.55328,0.905327,0.981572][0,1,0][0.705165,0.358824,0][1.59611,0.905327,1.00435][0,1,0][0.705165,0.363089,0][1.73809,0.19685,0.924157][0,1.47262,0][0.641734,0.370797,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.0266319,0.547109,0][1.50587,0.905327,1.05285][0,1,0][0.0326161,0.484839,0][1.50587,0.905327,1.05285][0,1,0][0.0326161,0.484839,0][1.55328,0.905327,0.981572][0,1,0][0.0388809,0.484839,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.864352,0.113136,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.864352,0.0958342,0][1.54345,0.905327,1.08355][0,1,0][0.927783,0.103543,0][1.54345,0.905327,1.08355][0,1,0][0.927783,0.103543,0][1.50587,0.905327,1.05285][0,1,0][0.927783,0.107807,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.864352,0.113136,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.596729,0.178686,0][1.73809,0.19685,0.924157][0,1.47262,0][0.596729,0.144768,0][1.59611,0.905327,1.00435][0,1,0][0.658999,0.157547,0][1.59611,0.905327,1.00435][0,1,0][0.658999,0.157547,0][1.54345,0.905327,1.08355][0,1,0][0.658999,0.165907,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.596729,0.178686,0][0.838558,0.19685,1.56063][0,1.66897,0][0.563286,0.370797,0][0.931732,0.19685,1.73404][0,1.47262,0][0.563286,0.353496,0][1.0113,0.905327,1.59172][0,1,0][0.626718,0.361204,0][1.0113,0.905327,1.59172][0,1,0][0.626718,0.361204,0][0.988339,0.905327,1.54898][0,1,0][0.626718,0.365469,0][0.838558,0.19685,1.56063][0,1.66897,0][0.563286,0.370797,0][0.931732,0.19685,1.73404][0,1.47262,0][0.0223017,0.798292,0][1.25212,0.19685,1.51895][0,1.47262,0][0.0223017,0.764375,0][1.09027,0.905327,1.5387][0,1,0][0.0845717,0.777154,0][1.09027,0.905327,1.5387][0,1,0][0.0845717,0.777154,0][1.0113,0.905327,1.59172][0,1,0][0.0845717,0.785513,0][0.931732,0.19685,1.73404][0,1.47262,0][0.0223017,0.798292,0][1.25212,0.19685,1.51895][0,1.47262,0][0.377641,0.732743,0][1.12691,0.19685,1.36705][0,1.66897,0][0.377641,0.715441,0][1.05941,0.905327,1.50127][0,1,0][0.441072,0.72077,0][1.05941,0.905327,1.50127][0,1,0][0.441072,0.72077,0][1.09027,0.905327,1.5387][0,1,0][0.441072,0.725034,0][1.25212,0.19685,1.51895][0,1.47262,0][0.377641,0.732743,0][1.12691,0.19685,1.36705][0,1.66897,0][0.454665,0.547109,0][0.838558,0.19685,1.56063][0,1.66897,0][0.429321,0.547109,0][0.988339,0.905327,1.54898][0,1,0][0.442486,0.484839,0][0.988339,0.905327,1.54898][0,1,0][0.442486,0.484839,0][1.05941,0.905327,1.50127][0,1,0][0.448732,0.484839,0][1.12691,0.19685,1.36705][0,1.66897,0][0.454665,0.547109,0][0.371357,0.936111,-1.98889][0.954862,-0.29705,-1.30299e-005][0.86443,0.275041,0][0.286832,0.664406,-1.98898][0.954862,-0.29705,-1.30299e-005][0.840619,0.27686,0][0.286832,0.664407,-2.01073][0.954862,-0.29705,-1.30299e-005][0.840473,0.274955,0][0.371358,0.936111,-2.01063][0.954861,-0.297053,1.83243e-005][0.190839,0.110711,0][0.371357,0.936111,-1.98889][0.954861,-0.297053,1.83243e-005][0.192745,0.110564,0][0.286832,0.664407,-2.01073][0.954861,-0.297053,1.83243e-005][0.192658,0.134522,0][0.371357,0.936111,-1.98889][0.954862,-0.29705,-1.30299e-005][0.942878,0.275041,0][0.286832,0.664406,-1.98898][0.954862,-0.29705,-1.30299e-005][0.919067,0.27686,0][0.286832,0.664407,-2.01073][0.954862,-0.29705,-1.30299e-005][0.918921,0.274955,0][0.371358,0.936111,-2.01063][0.954861,-0.297053,1.83243e-005][0.301202,0.110711,0][0.371357,0.936111,-1.98889][0.954861,-0.297053,1.83243e-005][0.303107,0.110564,0][0.286832,0.664407,-2.01073][0.954861,-0.297053,1.83243e-005][0.303021,0.134522,0][-0.305794,0.979987,-2.12109][-0.519319,-0.210071,-0.828359][0.369132,0.21338,0][-0.154955,0.843617,-2.18107][-0.519319,-0.210071,-0.828359][0.360081,0.197092,0][-0.134039,0.553037,-2.1205][-0.519319,-0.210071,-0.828359][0.370124,0.172943,0][-0.284316,0.664422,-2.01064][-0.693051,-0.279731,-0.664402][0.681548,0.290904,0][-0.305794,0.979987,-2.12109][-0.693051,-0.279731,-0.664402][0.707884,0.304077,0][-0.134039,0.553037,-2.1205][-0.693051,-0.279731,-0.664402][0.667437,0.303726,0][-0.305794,0.979987,-2.12109][-0.519319,-0.210071,-0.828359][0.138809,0.189388,0][-0.154955,0.843617,-2.18107][-0.519319,-0.210071,-0.828359][0.129758,0.1731,0][-0.134039,0.553037,-2.1205][-0.519319,-0.210071,-0.828359][0.139801,0.148952,0][-0.284316,0.664422,-2.01064][-0.693051,-0.279731,-0.664402][0.58938,0.3222,0][-0.305794,0.979987,-2.12109][-0.693051,-0.279731,-0.664402][0.615716,0.335373,0][-0.134039,0.553037,-2.1205][-0.693051,-0.279731,-0.664402][0.575269,0.335022,0][-0.284316,0.664421,-1.98889][-0.954493,-0.298234,0][0.708941,0.273932,0][-0.36918,0.936029,-1.98889][-0.954493,-0.298234,0][0.732814,0.273932,0][-0.36918,0.936029,-2.01064][-0.954493,-0.298234,0][0.732814,0.275843,0][-0.284316,0.664422,-2.01064][-0.954493,-0.298234,-1.22639e-005][0.338264,0.699714,0][-0.284316,0.664421,-1.98889][-0.954493,-0.298234,-1.22639e-005][0.338264,0.697803,0][-0.36918,0.936029,-2.01064][-0.954493,-0.298234,-1.22639e-005][0.362137,0.699714,0][-0.284316,0.664421,-1.98889][-0.954493,-0.298234,0][0.323691,0.746737,0][-0.36918,0.936029,-1.98889][-0.954493,-0.298234,0][0.347564,0.746737,0][-0.36918,0.936029,-2.01064][-0.954493,-0.298234,0][0.347564,0.748648,0][-0.284316,0.664422,-2.01064][-0.954493,-0.298234,-1.22639e-005][0.624474,0.275843,0][-0.284316,0.664421,-1.98889][-0.954493,-0.298234,-1.22639e-005][0.624474,0.273932,0][-0.36918,0.936029,-2.01064][-0.954493,-0.298234,-1.22639e-005][0.648347,0.275843,0][-0.402082,1.18254,-1.98921][-0.977407,0.211366,-2.00964e-005][0.811691,0.668683,0][-0.369181,1.33469,-1.98829][-0.977407,0.211366,-2.00964e-005][0.825064,0.668602,0][-0.36918,1.33469,-2.01003][-0.977407,0.211366,-2.00964e-005][0.825064,0.670513,0][-0.402081,1.18254,-2.01095][-0.977407,0.211366,-2.00968e-005][0.885701,0.736505,0][-0.402082,1.18254,-1.98921][-0.977407,0.211366,-2.00968e-005][0.885701,0.734594,0][-0.36918,1.33469,-2.01003][-0.977407,0.211366,-2.00968e-005][0.899073,0.736424,0][-0.402082,1.18254,-1.98921][-0.977407,0.211366,-2.00964e-005][0.816298,0.828539,0][-0.369181,1.33469,-1.98829][-0.977407,0.211366,-2.00964e-005][0.82967,0.828458,0][-0.36918,1.33469,-2.01003][-0.977407,0.211366,-2.00964e-005][0.82967,0.830369,0][-0.402081,1.18254,-2.01095][-0.977407,0.211366,-2.00968e-005][0.861472,0.755116,0][-0.402082,1.18254,-1.98921][-0.977407,0.211366,-2.00968e-005][0.861472,0.753205,0][-0.36918,1.33469,-2.01003][-0.977407,0.211366,-2.00968e-005][0.874844,0.755035,0][-0.206491,1.18254,-2.18108][-0.398252,-0.0754649,-0.914166][0.614223,0.655186,0][-0.182699,1.05693,-2.18107][-0.398252,-0.0754649,-0.914166][0.622763,0.647883,0][-0.305794,0.979987,-2.12109][-0.398252,-0.0754649,-0.914166][0.634735,0.654756,0][-0.206491,1.18254,-2.18108][-0.398252,-0.0754649,-0.914166][0.585359,0.675905,0][-0.182699,1.05693,-2.18107][-0.398252,-0.0754649,-0.914166][0.593899,0.668602,0][-0.305794,0.979987,-2.12109][-0.398252,-0.0754649,-0.914166][0.605871,0.675475,0][-0.146012,1.32654,-2.18107][-0.438211,0.186034,-0.87941][0.713167,0.777351,0][-0.176251,1.25531,-2.18107][-0.438211,0.186034,-0.87941][0.71672,0.771551,0][-0.278485,1.29612,-2.1215][-0.438211,0.186034,-0.87941][0.726209,0.777119,0][-0.146012,1.32654,-2.18107][-0.438211,0.186034,-0.87941][0.52025,0.934844,0][-0.176251,1.25531,-2.18107][-0.438211,0.186034,-0.87941][0.523803,0.929045,0][-0.278485,1.29612,-2.1215][-0.438211,0.186034,-0.87941][0.533291,0.934613,0][7.72071e-007,1.38566,-2.18107][-0.180951,0.469757,-0.864052][0.622469,0.848037,0][-0.0752536,1.35683,-2.18099][-0.180951,0.469757,-0.864052][0.618368,0.853812,0][-0.117181,1.45308,-2.11988][-0.180951,0.469757,-0.864052][0.609426,0.847978,0][7.72071e-007,1.38566,-2.18107][-0.180951,0.469757,-0.864052][0.865199,0.602539,0][-0.0752536,1.35683,-2.18099][-0.180951,0.469757,-0.864052][0.861098,0.608314,0][-0.117181,1.45308,-2.11988][-0.180951,0.469757,-0.864052][0.852156,0.60248,0][0.146013,1.32654,-2.18107][0.192687,0.458205,-0.86771][0.530984,0.949861,0][0.0743639,1.35667,-2.18107][0.192687,0.458205,-0.86771][0.53104,0.956693,0][0.119723,1.45312,-2.12007][0.192687,0.458205,-0.86771][0.52025,0.956392,0][0.146013,1.32654,-2.18107][0.192687,0.458205,-0.86771][0.723901,0.792367,0][0.0743639,1.35667,-2.18107][0.192687,0.458205,-0.86771][0.723957,0.799199,0][0.119723,1.45312,-2.12007][0.192687,0.458205,-0.86771][0.713167,0.798899,0][0.402082,1.18254,-1.98921][0.646892,-0.0830861,0.758042][0.347837,0.239472,0][0.190826,1.26134,-1.8003][0.646892,-0.0830861,0.758042][0.340887,0.21457,0][-1.07964e-006,1.18124,-1.64623][0.646892,-0.0830861,0.758042][0.347952,0.193021,0][0.205225,1.04179,-1.79847][0.643819,0.123028,0.755223][0.0088463,0.520338,0][0.402082,1.18254,-1.98921][0.643819,0.123028,0.755223][0.0213118,0.496294,0][-1.07964e-006,1.18124,-1.64623][0.643819,0.123028,0.755223][0.0211965,0.542745,0][0.402082,1.18254,-1.98921][0.646892,-0.0830861,0.758042][0.239472,0.341002,0][0.190826,1.26134,-1.8003][0.646892,-0.0830861,0.758042][0.21457,0.347952,0][-1.07964e-006,1.18124,-1.64623][0.646892,-0.0830861,0.758042][0.193021,0.340887,0][0.205225,1.04179,-1.79847][0.643819,0.123028,0.755223][0.488685,0.0404995,0][0.402082,1.18254,-1.98921][0.643819,0.123028,0.755223][0.50115,0.0164559,0][-1.07964e-006,1.18124,-1.64623][0.643819,0.123028,0.755223][0.501035,0.062907,0][-0.0752536,1.35683,-2.18099][-0.000556108,-0.00145918,-0.999999][0.186094,0.142219,0][7.72071e-007,1.38566,-2.18107][-0.000556108,-0.00145918,-0.999999][0.179479,0.144754,0][0.0743639,1.35667,-2.18107][-0.000556108,-0.00145918,-0.999999][0.172943,0.142205,0][-0.0752536,1.35683,-2.18099][-0.000556108,-0.00145918,-0.999999][0.267666,0.142579,0][7.72071e-007,1.38566,-2.18107][-0.000556108,-0.00145918,-0.999999][0.261052,0.145113,0][0.0743639,1.35667,-2.18107][-0.000556108,-0.00145918,-0.999999][0.254516,0.142565,0][-0.0752536,1.35683,-2.18099][-0.000555944,-0.00130616,-0.999999][0.820162,0.627498,0][0.0743639,1.35667,-2.18107][-0.000555944,-0.00130616,-0.999999][0.807095,0.62898,0][0.146013,1.32654,-2.18107][-0.000555944,-0.00130616,-0.999999][0.800538,0.627064,0][-0.0752536,1.35683,-2.18099][-0.000555944,-0.00130616,-0.999999][0.784693,0.648317,0][0.0743639,1.35667,-2.18107][-0.000555944,-0.00130616,-0.999999][0.771626,0.649798,0][0.146013,1.32654,-2.18107][-0.000555944,-0.00130616,-0.999999][0.765068,0.647883,0][-0.0752536,1.35683,-2.18099][1.62383e-006,0.00276665,-0.999996][0.819228,0.0816929,0][0.146013,1.32654,-2.18107][1.62383e-006,0.00276665,-0.999996][0.838676,0.0843553,0][-0.146012,1.32654,-2.18107][1.62383e-006,0.00276665,-0.999996][0.813009,0.0843554,0][-0.0752536,1.35683,-2.18099][1.62383e-006,0.00276665,-0.999996][0.870571,0.128153,0][0.146013,1.32654,-2.18107][1.62383e-006,0.00276665,-0.999996][0.890018,0.130815,0][-0.146012,1.32654,-2.18107][1.62383e-006,0.00276665,-0.999996][0.864352,0.130815,0][-0.146012,1.32654,-2.18107][1.63289e-006,-7.38784e-006,-1][0.450742,0.924151,0][0.146013,1.32654,-2.18107][1.63289e-006,-7.38784e-006,-1][0.425549,0.919244,0][-0.176251,1.25531,-2.18107][1.63289e-006,-7.38784e-006,-1][0.454548,0.918515,0][-0.146012,1.32654,-2.18107][1.63289e-006,-7.38784e-006,-1][0.541874,0.632701,0][0.146013,1.32654,-2.18107][1.63289e-006,-7.38784e-006,-1][0.516681,0.627794,0][-0.176251,1.25531,-2.18107][1.63289e-006,-7.38784e-006,-1][0.54568,0.627064,0][-0.176251,1.25531,-2.18107][0.00083952,-0.00379831,-0.999992][0.201049,0.704063,0][0.146013,1.32654,-2.18107][0.00083952,-0.00379831,-0.999992][0.229374,0.697803,0][0.176253,1.25526,-2.18078][0.00083952,-0.00379831,-0.999992][0.232032,0.704067,0][-0.176251,1.25531,-2.18107][0.00083952,-0.00379831,-0.999992][0.680888,0.133391,0][0.146013,1.32654,-2.18107][0.00083952,-0.00379831,-0.999992][0.709212,0.12713,0][0.176253,1.25526,-2.18078][0.00083952,-0.00379831,-0.999992][0.71187,0.133395,0][-0.176251,1.25531,-2.18107][0.000840627,0.0044413,-0.99999][0.269686,0.6498,0][0.176253,1.25526,-2.18078][0.000840627,0.0044413,-0.99999][0.239066,0.654523,0][0.206492,1.18254,-2.18108][0.000840627,0.0044413,-0.99999][0.235464,0.648611,0][-0.176251,1.25531,-2.18107][0.000840627,0.0044413,-0.99999][0.749525,0.0791272,0][0.176253,1.25526,-2.18078][0.000840627,0.0044413,-0.99999][0.718904,0.0838498,0][0.206492,1.18254,-2.18108][0.000840627,0.0044413,-0.99999][0.715302,0.0779387,0][-0.176251,1.25531,-2.18107][0,1.96591e-005,-1][0.0803325,0.472443,0][0.206492,1.18254,-2.18108][0,1.96591e-005,-1][0.0867281,0.438803,0][-0.206491,1.18254,-2.18108][0,1.96591e-005,-1][0.0867281,0.475101,0][-0.176251,1.25531,-2.18107][0,1.96591e-005,-1][0.0803237,0.0885725,0][0.206492,1.18254,-2.18108][0,1.96591e-005,-1][0.0867192,0.0549322,0][-0.206491,1.18254,-2.18108][0,1.96591e-005,-1][0.0867192,0.0912305,0][-0.206491,1.18254,-2.18108][0,-1.52325e-005,-1][0.425169,0.475194,0][0.206492,1.18254,-2.18108][0,-1.52325e-005,-1][0.388871,0.475194,0][0.186311,1.05733,-2.18107][0,-1.52325e-005,-1][0.390645,0.464189,0][-0.206491,1.18254,-2.18108][0,-1.52325e-005,-1][0.425169,0.0913236,0][0.206492,1.18254,-2.18108][0,-1.52325e-005,-1][0.388871,0.0913236,0][0.186311,1.05733,-2.18107][0,-1.52325e-005,-1][0.390645,0.080318,0][-0.206491,1.18254,-2.18108][-5.77919e-006,-3.33619e-005,-1][0.3025,0.449099,0][0.186311,1.05733,-2.18107][-5.77919e-006,-3.33619e-005,-1][0.302582,0.412863,0][-0.182699,1.05693,-2.18107][-5.77919e-006,-3.33619e-005,-1][0.312396,0.443776,0][-0.206491,1.18254,-2.18108][-5.77919e-006,-3.33619e-005,-1][0.235322,0.132405,0][0.186311,1.05733,-2.18107][-5.77919e-006,-3.33619e-005,-1][0.235405,0.0961693,0][-0.182699,1.05693,-2.18107][-5.77919e-006,-3.33619e-005,-1][0.245218,0.127082,0][-0.182699,1.05693,-2.18107][-5.83209e-006,1.60067e-005,-1][0.474953,0.321693,0][0.186311,1.05733,-2.18107][-5.83209e-006,1.60067e-005,-1][0.471241,0.353914,0][-0.154955,0.843617,-2.18107][-5.83209e-006,1.60067e-005,-1][0.456048,0.321949,0][-0.182699,1.05693,-2.18107][-5.83209e-006,1.60067e-005,-1][0.100968,0.456048,0][0.186311,1.05733,-2.18107][-5.83209e-006,1.60067e-005,-1][0.133188,0.459761,0][-0.154955,0.843617,-2.18107][-5.83209e-006,1.60067e-005,-1][0.101224,0.474953,0][-0.154955,0.843617,-2.18107][3.21829e-006,1.55453e-006,-1][0.186727,0.795671,0][0.186311,1.05733,-2.18107][3.21829e-006,1.55453e-006,-1][0.222113,0.796229,0][0.141541,0.843273,-2.18107][3.21829e-006,1.55453e-006,-1][0.208576,0.809874,0][-0.154955,0.843617,-2.18107][3.21829e-006,1.55453e-006,-1][0.190325,0.82343,0][0.186311,1.05733,-2.18107][3.21829e-006,1.55453e-006,-1][0.225711,0.823988,0][0.141541,0.843273,-2.18107][3.21829e-006,1.55453e-006,-1][0.212174,0.837633,0][-0.154955,0.843617,-2.18107][0,-0.00279537,-0.999996][0.194177,0.746737,0][0.141541,0.843273,-2.18107][0,-0.00279537,-0.999996][0.220237,0.746767,0][0.0842644,0.774104,-2.18088][0,-0.00279537,-0.999996][0.215203,0.752846,0][-0.154955,0.843617,-2.18107][0,-0.00279537,-0.999996][0.773055,0.12713,0][0.141541,0.843273,-2.18107][0,-0.00279537,-0.999996][0.799115,0.12716,0][0.0842644,0.774104,-2.18088][0,-0.00279537,-0.999996][0.794081,0.13324,0][-0.154955,0.843617,-2.18107][0.00114175,0.00113383,-0.999999][0.761154,0.225513,0][0.0842644,0.774104,-2.18088][0.00114175,0.00113383,-0.999999][0.783043,0.224998,0][-0.0841783,0.774029,-2.18107][0.00114175,0.00113383,-0.999999][0.768929,0.229469,0][-0.154955,0.843617,-2.18107][0.00114175,0.00113383,-0.999999][0.855742,0.176465,0][0.0842644,0.774104,-2.18088][0.00114175,0.00113383,-0.999999][0.877631,0.175951,0][-0.0841783,0.774029,-2.18107][0.00114175,0.00113383,-0.999999][0.863518,0.180421,0][-0.0841783,0.774029,-2.18107][0.0011417,0.00122677,-0.999999][0.250127,0.473577,0][0.0842644,0.774104,-2.18088][0.0011417,0.00122677,-0.999999][0.235322,0.473584,0][7.72071e-007,0.693744,-2.18108][0.0011417,0.00122677,-0.999999][0.242729,0.466521,0][-0.0841783,0.774029,-2.18107][0.0011417,0.00122677,-0.999999][0.466527,0.245329,0][0.0842644,0.774104,-2.18088][0.0011417,0.00122677,-0.999999][0.466521,0.230524,0][7.72071e-007,0.693744,-2.18108][0.0011417,0.00122677,-0.999999][0.473584,0.23793,0][0.30333,0.979945,-2.12093][0.420249,-0.067748,-0.904876][0.617134,0.675489,0][0.186311,1.05733,-2.18107][0.420249,-0.067748,-0.904876][0.628647,0.668602,0][0.206492,1.18254,-2.18108][0.420249,-0.067748,-0.904876][0.637565,0.67529,0][0.30333,0.979945,-2.12093][0.420249,-0.067748,-0.904876][0.660956,0.633951,0][0.186311,1.05733,-2.18107][0.420249,-0.067748,-0.904876][0.672469,0.627064,0][0.206492,1.18254,-2.18108][0.420249,-0.067748,-0.904876][0.681387,0.633753,0][0.27884,1.2961,-2.12158][0.693301,0.0522291,-0.718753][0.13713,0.473697,0][0.402082,1.18254,-2.01095][0.693301,0.0522291,-0.718753][0.136942,0.456048,0][0.30333,0.979945,-2.12093][0.693301,0.0522291,-0.718753][0.158981,0.456396,0][0.206492,1.18254,-2.18108][0.592211,0.0442225,-0.804568][0.447126,0.080318,0][0.27884,1.2961,-2.12158][0.592211,0.0442225,-0.804568][0.456786,0.0889242,0][0.30333,0.979945,-2.12093][0.592211,0.0442225,-0.804568][0.428923,0.0895997,0][0.27884,1.2961,-2.12158][0.693301,0.0522291,-0.718753][0.473697,0.37952,0][0.402082,1.18254,-2.01095][0.693301,0.0522291,-0.718753][0.456048,0.379707,0][0.30333,0.979945,-2.12093][0.693301,0.0522291,-0.718753][0.456396,0.357668,0][0.206492,1.18254,-2.18108][0.592211,0.0442225,-0.804568][0.056791,0.3025,0][0.27884,1.2961,-2.12158][0.592211,0.0442225,-0.804568][0.0664519,0.311106,0][0.30333,0.979945,-2.12093][0.592211,0.0442225,-0.804568][0.0385887,0.311782,0][0.286887,1.4585,-1.98819][0.826793,0.562506,0][0.805066,0.864814,0][0.371348,1.33436,-1.98829][0.826793,0.562506,0][0.791954,0.866307,0][0.371348,1.33436,-2.01003][0.826793,0.562506,0][0.791737,0.864408,0][0.286887,1.4585,-2.00993][0.826793,0.562506,0][0.83956,0.792367,0][0.286887,1.4585,-1.98819][0.826793,0.562506,0][0.839778,0.794266,0][0.371348,1.33436,-2.01003][0.826793,0.562506,0][0.826448,0.79386,0][0.286887,1.4585,-1.98819][0.826793,0.562506,0][0.83453,0.847899,0][0.371348,1.33436,-1.98829][0.826793,0.562506,0][0.821417,0.849391,0][0.371348,1.33436,-2.01003][0.826793,0.562506,0][0.8212,0.847493,0][0.286887,1.4585,-2.00993][0.826793,0.562506,0][0.78009,0.887131,0][0.286887,1.4585,-1.98819][0.826793,0.562506,0][0.780308,0.88903,0][0.371348,1.33436,-2.01003][0.826793,0.562506,0][0.766978,0.888624,0][0.146013,1.32654,-2.18107][0.478157,0.459911,-0.74823][0.255323,0.994368,0][0.119723,1.45312,-2.12007][0.478157,0.459911,-0.74823][0.262929,0.984367,0][0.286887,1.4585,-2.00993][0.478157,0.459911,-0.74823][0.27798,0.993491,0][0.27884,1.2961,-2.12158][0.447292,0.491536,-0.74721][0.798448,0.395962,0][0.146013,1.32654,-2.18107][0.447292,0.491536,-0.74721][0.790213,0.385814,0][0.286887,1.4585,-2.00993][0.447292,0.491536,-0.74721][0.81288,0.386358,0][0.146013,1.32654,-2.18107][0.478157,0.459911,-0.74823][0.178036,0.993835,0][0.119723,1.45312,-2.12007][0.478157,0.459911,-0.74823][0.185642,0.983834,0][0.286887,1.4585,-2.00993][0.478157,0.459911,-0.74823][0.200693,0.992958,0][0.27884,1.2961,-2.12158][0.447292,0.491536,-0.74721][0.3025,0.461088,0][0.146013,1.32654,-2.18107][0.447292,0.491536,-0.74721][0.312648,0.452853,0][0.286887,1.4585,-2.00993][0.447292,0.491536,-0.74721][0.312104,0.47552,0][0.27884,1.2961,-2.12158][0.436308,0.18145,-0.881312][0.786422,0.694305,0][0.176253,1.25526,-2.18078][0.436308,0.18145,-0.881312][0.775411,0.694221,0][0.146013,1.32654,-2.18107][0.436308,0.18145,-0.881312][0.775317,0.687416,0][0.27884,1.2961,-2.12158][0.436308,0.18145,-0.881312][0.901709,0.557096,0][0.176253,1.25526,-2.18078][0.436308,0.18145,-0.881312][0.890697,0.557012,0][0.146013,1.32654,-2.18107][0.436308,0.18145,-0.881312][0.890603,0.550207,0][-0.134039,0.553037,-2.1205][-0.20541,-0.215344,-0.954691][0.365483,0.48644,0][-0.0841783,0.774029,-2.18107][-0.20541,-0.215344,-0.954691][0.3474,0.496331,0][7.72071e-007,0.693744,-2.18108][-0.20541,-0.215344,-0.954691][0.347595,0.486108,0][-0.134039,0.553037,-2.1205][-0.20541,-0.215344,-0.954691][0.135019,0.577274,0][-0.0841783,0.774029,-2.18107][-0.20541,-0.215344,-0.954691][0.116936,0.587165,0][7.72071e-007,0.693744,-2.18108][-0.20541,-0.215344,-0.954691][0.117131,0.576943,0][0.135983,0.552794,-2.12049][0.477857,-0.188095,-0.858063][0.341594,0.148952,0][0.141541,0.843273,-2.18107][0.477857,-0.188095,-0.858063][0.351496,0.173084,0][0.30333,0.979945,-2.12093][0.477857,-0.188095,-0.858063][0.340887,0.189267,0][0.286832,0.664407,-2.01073][0.689299,-0.270741,-0.671987][0.436063,0.243942,0][0.135983,0.552794,-2.12049][0.689299,-0.270741,-0.671987][0.422459,0.230524,0][0.30333,0.979945,-2.12093][0.689299,-0.270741,-0.671987][0.462767,0.231614,0][0.135983,0.552794,-2.12049][0.477857,-0.188095,-0.858063][0.189267,0.341594,0][0.141541,0.843273,-2.18107][0.477857,-0.188095,-0.858063][0.165135,0.351496,0][0.30333,0.979945,-2.12093][0.477857,-0.188095,-0.858063][0.148952,0.340887,0][0.286832,0.664407,-2.01073][0.689299,-0.270741,-0.671987][0.235322,0.436063,0][0.135983,0.552794,-2.12049][0.689299,-0.270741,-0.671987][0.248741,0.422459,0][0.30333,0.979945,-2.12093][0.689299,-0.270741,-0.671987][0.247651,0.462767,0][0.402082,1.18254,-1.98921][0.992317,-0.123719,1.90431e-005][0.760634,0.79425,0][0.371357,0.936111,-1.98889][0.992317,-0.123719,1.90431e-005][0.738974,0.794278,0][0.371358,0.936111,-2.01063][0.992317,-0.123719,1.90431e-005][0.738974,0.792367,0][0.402082,1.18254,-2.01095][0.992317,-0.12372,2.04033e-005][0.756798,0.668602,0][0.402082,1.18254,-1.98921][0.992317,-0.12372,2.04033e-005][0.756798,0.670513,0][0.371358,0.936111,-2.01063][0.992317,-0.12372,2.04033e-005][0.735138,0.66863,0][0.402082,1.18254,-1.98921][0.992317,-0.123719,1.90431e-005][0.795987,0.755087,0][0.371357,0.936111,-1.98889][0.992317,-0.123719,1.90431e-005][0.774327,0.755116,0][0.371358,0.936111,-2.01063][0.992317,-0.123719,1.90431e-005][0.774327,0.753205,0][0.402082,1.18254,-2.01095][0.992317,-0.12372,2.04033e-005][0.820216,0.734594,0][0.402082,1.18254,-1.98921][0.992317,-0.12372,2.04033e-005][0.820216,0.736505,0][0.371358,0.936111,-2.01063][0.992317,-0.12372,2.04033e-005][0.798557,0.734622,0][-0.305794,0.979987,-2.12109][-0.410252,-0.053341,-0.910411][0.490176,0.587464,0][-0.182699,1.05693,-2.18107][-0.410252,-0.053341,-0.910411][0.484839,0.574732,0][-0.154955,0.843617,-2.18107][-0.410252,-0.053341,-0.910411][0.503745,0.574693,0][-0.305794,0.979987,-2.12109][-0.410252,-0.053341,-0.910411][0.564233,0.527023,0][-0.182699,1.05693,-2.18107][-0.410252,-0.053341,-0.910411][0.558896,0.514291,0][-0.154955,0.843617,-2.18107][-0.410252,-0.053341,-0.910411][0.577803,0.514252,0][0.162831,0.447894,-1.98891][0.774529,-0.632539,0][0.785985,0.501044,0][7.43101e-007,0.248512,-1.98921][0.774529,-0.632539,0][0.763424,0.502748,0][7.46384e-007,0.248512,-2.01095][0.774529,-0.632539,0][0.763278,0.500843,0][0.162832,0.447894,-2.01065][0.774528,-0.63254,1.5925e-005][0.99178,0.226474,0][0.162831,0.447894,-1.98891][0.774528,-0.63254,1.5925e-005][0.991926,0.228379,0][7.46384e-007,0.248512,-2.01095][0.774528,-0.63254,1.5925e-005][0.969219,0.228179,0][0.162831,0.447894,-1.98891][0.774529,-0.632539,0][0.863138,0.468805,0][7.43101e-007,0.248512,-1.98921][0.774529,-0.632539,0][0.840577,0.470509,0][7.46384e-007,0.248512,-2.01095][0.774529,-0.632539,0][0.840431,0.468604,0][0.162832,0.447894,-2.01065][0.774528,-0.63254,1.5925e-005][0.96904,0.177786,0][0.162831,0.447894,-1.98891][0.774528,-0.63254,1.5925e-005][0.969186,0.179691,0][7.46384e-007,0.248512,-2.01095][0.774528,-0.63254,1.5925e-005][0.946479,0.179491,0][0.286832,0.664406,-1.98898][0.86776,-0.496984,1.78419e-005][0.938655,0.552111,0][0.162831,0.447894,-1.98891][0.86776,-0.496984,1.78419e-005][0.916725,0.552118,0][0.162832,0.447894,-2.01065][0.86776,-0.496984,1.78419e-005][0.916725,0.550207,0][0.286832,0.664407,-2.01073][0.867761,-0.496981,-2.17997e-005][0.928173,0.60248,0][0.286832,0.664406,-1.98898][0.867761,-0.496981,-2.17997e-005][0.928173,0.604391,0][0.162832,0.447894,-2.01065][0.867761,-0.496981,-2.17997e-005][0.906243,0.602487,0][0.286832,0.664406,-1.98898][0.86776,-0.496984,1.78419e-005][0.83413,0.711921,0][0.162831,0.447894,-1.98891][0.86776,-0.496984,1.78419e-005][0.8122,0.711928,0][0.162832,0.447894,-2.01065][0.86776,-0.496984,1.78419e-005][0.8122,0.710017,0][0.286832,0.664407,-2.01073][0.867761,-0.496981,-2.17997e-005][0.823369,0.687416,0][0.286832,0.664406,-1.98898][0.867761,-0.496981,-2.17997e-005][0.823369,0.689327,0][0.162832,0.447894,-2.01065][0.867761,-0.496981,-2.17997e-005][0.801439,0.687423,0][-0.278485,1.29612,-2.1215][-0.43956,0.182694,-0.879437][0.671886,0.805126,0][-0.176251,1.25531,-2.18107][-0.43956,0.182694,-0.879437][0.660896,0.805619,0][-0.206491,1.18254,-2.18108][-0.43956,0.182694,-0.879437][0.660671,0.798697,0][-0.278485,1.29612,-2.1215][-0.43956,0.182694,-0.879437][0.698134,0.780476,0][-0.176251,1.25531,-2.18107][-0.43956,0.182694,-0.879437][0.687144,0.780969,0][-0.206491,1.18254,-2.18108][-0.43956,0.182694,-0.879437][0.686919,0.774047,0][-0.157369,0.447843,-1.98889][-0.86272,-0.505682,-2.07946e-005][0.741225,0.771552,0][-0.284316,0.664421,-1.98889][-0.86272,-0.505682,-2.07946e-005][0.76329,0.771551,0][-0.284316,0.664422,-2.01064][-0.86272,-0.505682,-2.07946e-005][0.76329,0.773462,0][-0.157369,0.447845,-2.01063][-0.862719,-0.505683,-3.04987e-005][0.763456,0.628975,0][-0.157369,0.447843,-1.98889][-0.862719,-0.505683,-3.04987e-005][0.763456,0.627064,0][-0.284316,0.664422,-2.01064][-0.862719,-0.505683,-3.04987e-005][0.785521,0.628975,0][-0.157369,0.447843,-1.98889][-0.86272,-0.505682,-2.07946e-005][0.727987,0.647883,0][-0.284316,0.664421,-1.98889][-0.86272,-0.505682,-2.07946e-005][0.750051,0.647883,0][-0.284316,0.664422,-2.01064][-0.86272,-0.505682,-2.07946e-005][0.750051,0.649794,0][-0.157369,0.447845,-2.01063][-0.862719,-0.505683,-3.04987e-005][0.761475,0.736505,0][-0.157369,0.447843,-1.98889][-0.862719,-0.505683,-3.04987e-005][0.761475,0.734594,0][-0.284316,0.664422,-2.01064][-0.862719,-0.505683,-3.04987e-005][0.78354,0.736504,0][7.43101e-007,0.248512,-1.98921][-0.784877,-0.619652,-3.73724e-005][0.794306,0.225027,0][-0.157369,0.447843,-1.98889][-0.784877,-0.619652,-3.73724e-005][0.816627,0.224998,0][-0.157369,0.447845,-2.01063][-0.784877,-0.619652,-3.73724e-005][0.816628,0.226909,0][7.46384e-007,0.248512,-2.01095][-0.784879,-0.619649,0][0.6978,0.670513,0][7.43101e-007,0.248512,-1.98921][-0.784879,-0.619649,0][0.6978,0.668602,0][-0.157369,0.447845,-2.01063][-0.784879,-0.619649,0][0.720121,0.670485,0][7.43101e-007,0.248512,-1.98921][-0.784877,-0.619652,-3.73724e-005][0.888894,0.175979,0][-0.157369,0.447843,-1.98889][-0.784877,-0.619652,-3.73724e-005][0.911216,0.175951,0][-0.157369,0.447845,-2.01063][-0.784877,-0.619652,-3.73724e-005][0.911216,0.177862,0][7.46384e-007,0.248512,-2.01095][-0.784879,-0.619649,0][0.736989,0.755116,0][7.43101e-007,0.248512,-1.98921][-0.784879,-0.619649,0][0.736989,0.753205,0][-0.157369,0.447845,-2.01063][-0.784879,-0.619649,0][0.75931,0.755087,0][-0.117181,1.45308,-2.11988][-0.449541,0.469808,-0.759733][0.570222,0.647883,0][-0.146012,1.32654,-2.18107][-0.449541,0.469808,-0.759733][0.560854,0.656325,0][-0.278485,1.29612,-2.1215][-0.449541,0.469808,-0.759733][0.550448,0.64846,0][-0.284316,1.45899,-2.01003][-0.467333,0.487862,-0.737286][0.446065,0.854673,0][-0.117181,1.45308,-2.11988][-0.467333,0.487862,-0.737286][0.463651,0.854612,0][-0.278485,1.29612,-2.1215][-0.467333,0.487862,-0.737286][0.452351,0.870849,0][-0.117181,1.45308,-2.11988][-0.449541,0.469808,-0.759733][0.675161,0.574693,0][-0.146012,1.32654,-2.18107][-0.449541,0.469808,-0.759733][0.665792,0.583135,0][-0.278485,1.29612,-2.1215][-0.449541,0.469808,-0.759733][0.655387,0.57527,0][-0.284316,1.45899,-2.01003][-0.467333,0.487862,-0.737286][0.367394,0.886992,0][-0.117181,1.45308,-2.11988][-0.467333,0.487862,-0.737286][0.384981,0.88693,0][-0.278485,1.29612,-2.1215][-0.467333,0.487862,-0.737286][0.373681,0.903167,0][-0.36918,0.936029,-1.98889][-0.991211,-0.132294,-2.03806e-005][0.950931,0.438582,0][-0.402082,1.18254,-1.98921][-0.991211,-0.132294,-2.03806e-005][0.972536,0.436953,0][-0.402081,1.18254,-2.01095][-0.991211,-0.132294,-2.03806e-005][0.972682,0.438858,0][-0.36918,0.936029,-2.01064][-0.991211,-0.132292,0][0.729591,0.538734,0][-0.36918,0.936029,-1.98889][-0.991211,-0.132292,0][0.729444,0.536829,0][-0.402081,1.18254,-2.01095][-0.991211,-0.132292,0][0.751196,0.537104,0][-0.36918,0.936029,-1.98889][-0.991211,-0.132294,-2.03806e-005][0.916149,0.437915,0][-0.402082,1.18254,-1.98921][-0.991211,-0.132294,-2.03806e-005][0.937754,0.436285,0][-0.402081,1.18254,-2.01095][-0.991211,-0.132294,-2.03806e-005][0.9379,0.438191,0][-0.36918,0.936029,-2.01064][-0.991211,-0.132292,0][0.884432,0.538692,0][-0.36918,0.936029,-1.98889][-0.991211,-0.132292,0][0.884286,0.536787,0][-0.402081,1.18254,-2.01095][-0.991211,-0.132292,0][0.906037,0.537063,0][-0.278485,1.29612,-2.1215][-0.588915,0.0498437,-0.806656][0.293165,0.349826,0][-0.206491,1.18254,-2.18108][-0.588915,0.0498437,-0.806656][0.302504,0.340887,0][-0.305794,0.979987,-2.12109][-0.588915,0.0498437,-0.806656][0.321054,0.349651,0][-0.402081,1.18254,-2.01095][-0.695122,0.0591336,-0.716456][0.172943,0.121649,0][-0.278485,1.29612,-2.1215][-0.695122,0.0591336,-0.716456][0.186698,0.110564,0][-0.305794,0.979987,-2.12109][-0.695122,0.0591336,-0.716456][0.187085,0.138451,0][-0.278485,1.29612,-2.1215][-0.588915,0.0498437,-0.806656][0.129758,0.292601,0][-0.206491,1.18254,-2.18108][-0.588915,0.0498437,-0.806656][0.138697,0.30194,0][-0.305794,0.979987,-2.12109][-0.588915,0.0498437,-0.806656][0.129933,0.32049,0][-0.402081,1.18254,-2.01095][-0.695122,0.0591336,-0.716456][0.283306,0.121649,0][-0.278485,1.29612,-2.1215][-0.695122,0.0591336,-0.716456][0.297061,0.110564,0][-0.305794,0.979987,-2.12109][-0.695122,0.0591336,-0.716456][0.297448,0.138451,0][-0.117181,1.45308,-2.11988][-0.197121,0.462838,-0.864248][0.244107,0.747048,0][-0.0752536,1.35683,-2.18099][-0.197121,0.462838,-0.864248][0.234958,0.752551,0][-0.146012,1.32654,-2.18107][-0.197121,0.462838,-0.864248][0.231499,0.746737,0][-0.117181,1.45308,-2.11988][-0.197121,0.462838,-0.864248][0.822985,0.127441,0][-0.0752536,1.35683,-2.18099][-0.197121,0.462838,-0.864248][0.813836,0.132944,0][-0.146012,1.32654,-2.18107][-0.197121,0.462838,-0.864248][0.810378,0.12713,0][-0.284316,1.45899,-2.01003][-0.825882,0.563842,-1.69809e-005][0.920235,0.773462,0][-0.36918,1.33469,-2.01003][-0.825883,0.563842,-1.69809e-005][0.907006,0.773462,0][-0.369181,1.33469,-1.98829][-0.825882,0.563842,-1.69809e-005][0.907006,0.771551,0][-0.284316,1.45899,-1.98829][-0.825881,0.563844,0][0.854286,0.809295,0][-0.284316,1.45899,-2.01003][-0.825881,0.563844,0][0.854286,0.811206,0][-0.369181,1.33469,-1.98829][-0.825881,0.563844,0][0.841057,0.809295,0][-0.284316,1.45899,-2.01003][-0.825882,0.563842,-1.69809e-005][0.915003,0.649794,0][-0.36918,1.33469,-2.01003][-0.825883,0.563842,-1.69809e-005][0.901774,0.649794,0][-0.369181,1.33469,-1.98829][-0.825882,0.563842,-1.69809e-005][0.901774,0.647883,0][-0.284316,1.45899,-1.98829][-0.825881,0.563844,0][0.950491,0.627064,0][-0.284316,1.45899,-2.01003][-0.825881,0.563844,0][0.950491,0.628975,0][-0.369181,1.33469,-1.98829][-0.825881,0.563844,0][0.937262,0.627065,0][-0.157436,1.5434,-1.98859][-0.163747,0.986502,5.94725e-005][0.297144,0.144117,0][3.0027e-007,1.56953,-1.9886][-0.163747,0.986502,5.94725e-005][0.283306,0.144116,0][3.03553e-007,1.56954,-2.01034][-0.163747,0.986502,5.94725e-005][0.283306,0.142205,0][-0.157436,1.5434,-2.01034][-0.163755,0.986501,0][0.875214,0.471182,0][-0.157436,1.5434,-1.98859][-0.163755,0.986501,0][0.875214,0.469271,0][3.03553e-007,1.56954,-2.01034][-0.163755,0.986501,0][0.889051,0.471182,0][-0.157436,1.5434,-1.98859][-0.163747,0.986502,5.94725e-005][0.328753,0.992351,0][3.0027e-007,1.56953,-1.9886][-0.163747,0.986502,5.94725e-005][0.342591,0.992352,0][3.03553e-007,1.56954,-2.01034][-0.163747,0.986502,5.94725e-005][0.342591,0.994263,0][-0.157436,1.5434,-2.01034][-0.163755,0.986501,0][0.699246,0.536882,0][-0.157436,1.5434,-1.98859][-0.163755,0.986501,0][0.699246,0.534971,0][3.03553e-007,1.56954,-2.01034][-0.163755,0.986501,0][0.713083,0.536883,0][0.119723,1.45312,-2.12007][0.180773,0.463612,-0.867401][0.50115,0.00739239,0][0.0743639,1.35667,-2.18107][0.180773,0.463612,-0.867401][0.491752,0.0127018,0][7.72071e-007,1.38566,-2.18107][0.180773,0.463612,-0.867401][0.487948,0.00680738,0][0.119723,1.45312,-2.12007][0.180773,0.463612,-0.867401][0.0213118,0.487231,0][0.0743639,1.35667,-2.18107][0.180773,0.463612,-0.867401][0.0119137,0.49254,0][7.72071e-007,1.38566,-2.18107][0.180773,0.463612,-0.867401][0.00810982,0.486646,0][0.119723,1.45312,-2.12007][-0.000705162,0.671434,-0.741064][0.446187,0.963818,0][7.72071e-007,1.38566,-2.18107][-0.000705162,0.671434,-0.741064][0.43567,0.971819,0][-0.117181,1.45308,-2.11988][-0.000705162,0.671434,-0.741064][0.425365,0.963823,0][3.03553e-007,1.56954,-2.01034][-0.000697767,0.685521,-0.728052][0.768418,0.385814,0][0.119723,1.45312,-2.12007][-0.000697767,0.685521,-0.728052][0.77895,0.399868,0][-0.117181,1.45308,-2.11988][-0.000697767,0.685521,-0.728052][0.758128,0.399873,0][0.119723,1.45312,-2.12007][-0.000705162,0.671434,-0.741064][0.451435,0.795671,0][7.72071e-007,1.38566,-2.18107][-0.000705162,0.671434,-0.741064][0.440918,0.803672,0][-0.117181,1.45308,-2.11988][-0.000705162,0.671434,-0.741064][0.430613,0.795676,0][3.03553e-007,1.56954,-2.01034][-0.000697767,0.685521,-0.728052][0.842544,0.353496,0][0.119723,1.45312,-2.12007][-0.000697767,0.685521,-0.728052][0.853076,0.36755,0][-0.117181,1.45308,-2.11988][-0.000697767,0.685521,-0.728052][0.832253,0.367555,0][0.286887,1.4585,-1.98819][0.526423,0.388229,0.756411][0.289411,0.340887,0][0.0790804,1.3668,-1.7965][0.526423,0.388229,0.756411][0.264243,0.347886,0][-1.07964e-006,1.18124,-1.64623][0.526423,0.388229,0.756411][0.243227,0.341026,0][0.190826,1.26134,-1.8003][0.386282,0.53074,0.754388][0.0873315,0.026567,0][0.286887,1.4585,-1.98819][0.386282,0.53074,0.754388][0.0811179,0.051178,0][-1.07964e-006,1.18124,-1.64623][0.386282,0.53074,0.754388][0.0803237,0.005,0][0.286887,1.4585,-1.98819][0.526423,0.388229,0.756411][0.347886,0.289411,0][0.0790804,1.3668,-1.7965][0.526423,0.388229,0.756411][0.340887,0.264243,0][-1.07964e-006,1.18124,-1.64623][0.526423,0.388229,0.756411][0.347747,0.243227,0][0.190826,1.26134,-1.8003][0.386282,0.53074,0.754388][0.0873403,0.410438,0][0.286887,1.4585,-1.98819][0.386282,0.53074,0.754388][0.0811268,0.435049,0][-1.07964e-006,1.18124,-1.64623][0.386282,0.53074,0.754388][0.0803325,0.388871,0][0.371348,1.33436,-1.98829][0.980117,0.19842,2.01524e-005][0.890512,0.648345,0][0.402082,1.18254,-1.98921][0.980117,0.19842,2.01524e-005][0.877246,0.649781,0][0.402082,1.18254,-2.01095][0.980117,0.19842,2.01524e-005][0.877029,0.647883,0][0.371348,1.33436,-2.01003][0.980116,0.198423,0][0.622692,0.989855,0][0.371348,1.33436,-1.98829][0.980116,0.198423,0][0.62291,0.991754,0][0.402082,1.18254,-2.01095][0.980116,0.198423,0][0.609426,0.991291,0][0.371348,1.33436,-1.98829][0.980117,0.19842,2.01524e-005][0.925999,0.627527,0][0.402082,1.18254,-1.98921][0.980117,0.19842,2.01524e-005][0.912733,0.628963,0][0.402082,1.18254,-2.01095][0.980117,0.19842,2.01524e-005][0.912516,0.627064,0][0.371348,1.33436,-2.01003][0.980116,0.198423,0][0.829577,0.809295,0][0.371348,1.33436,-1.98829][0.980116,0.198423,0][0.829795,0.811194,0][0.402082,1.18254,-2.01095][0.980116,0.198423,0][0.816311,0.810731,0][0.206492,1.18254,-2.18108][0.435067,0.184529,-0.881286][0.880244,0.609402,0][0.176253,1.25526,-2.18078][0.435067,0.184529,-0.881286][0.880215,0.60248,0][0.27884,1.2961,-2.12158][0.435067,0.184529,-0.881286][0.891227,0.602562,0][0.206492,1.18254,-2.18108][0.435067,0.184529,-0.881286][0.609455,0.875751,0][0.176253,1.25526,-2.18078][0.435067,0.184529,-0.881286][0.609426,0.868829,0][0.27884,1.2961,-2.12158][0.435067,0.184529,-0.881286][0.620438,0.868911,0][-0.134039,0.553037,-2.1205][-0.000340706,-0.395162,-0.918611][0.257525,0.96935,0][7.72071e-007,0.693744,-2.18108][-0.000340706,-0.395162,-0.918611][0.255323,0.951595,0][0.135983,0.552794,-2.12049][-0.000340706,-0.395162,-0.918611][0.273342,0.951655,0][7.46384e-007,0.248512,-2.01095][-0.000289626,-0.338595,-0.940932][0.322072,0.15375,0][-0.134039,0.553037,-2.1205][-0.000289626,-0.338595,-0.940932][0.33385,0.182196,0][0.135983,0.552794,-2.12049][-0.000289626,-0.338595,-0.940932][0.310118,0.182173,0][-0.134039,0.553037,-2.1205][-0.000340706,-0.395162,-0.918611][0.971421,0.211457,0][7.72071e-007,0.693744,-2.18108][-0.000340706,-0.395162,-0.918611][0.969219,0.193702,0][0.135983,0.552794,-2.12049][-0.000340706,-0.395162,-0.918611][0.987237,0.193763,0][7.46384e-007,0.248512,-2.01095][-0.000289626,-0.338595,-0.940932][0.427759,0.587451,0][-0.134039,0.553037,-2.1205][-0.000289626,-0.338595,-0.940932][0.456205,0.575673,0][0.135983,0.552794,-2.12049][-0.000289626,-0.338595,-0.940932][0.456182,0.599406,0][0.135983,0.552794,-2.12049][0.241404,-0.202547,-0.949052][0.697679,0.274116,0][0.0842644,0.774104,-2.18088][0.241404,-0.202547,-0.949052][0.677607,0.279046,0][0.141541,0.843273,-2.18107][0.241404,-0.202547,-0.949052][0.671595,0.273932,0][0.135983,0.552794,-2.12049][0.241404,-0.202547,-0.949052][0.312429,0.74692,0][0.0842644,0.774104,-2.18088][0.241404,-0.202547,-0.949052][0.292357,0.751851,0][0.141541,0.843273,-2.18107][0.241404,-0.202547,-0.949052][0.286345,0.746737,0][0.141541,0.843273,-2.18107][0.409981,-0.0857465,-0.908055][0.346849,0.925369,0][0.186311,1.05733,-2.18107][0.409981,-0.0857465,-0.908055][0.328783,0.931931,0][0.30333,0.979945,-2.12093][0.409981,-0.0857465,-0.908055][0.328753,0.918515,0][0.141541,0.843273,-2.18107][0.409981,-0.0857465,-0.908055][0.286304,0.802525,0][0.186311,1.05733,-2.18107][0.409981,-0.0857465,-0.908055][0.268237,0.809087,0][0.30333,0.979945,-2.12093][0.409981,-0.0857465,-0.908055][0.268207,0.795671,0][0.0842644,0.774104,-2.18088][0.2051,-0.212747,-0.955339][0.541102,0.611386,0][0.135983,0.552794,-2.12049][0.2051,-0.212747,-0.955339][0.520433,0.611454,0][7.72071e-007,0.693744,-2.18108][0.2051,-0.212747,-0.955339][0.536058,0.60248,0][0.0842644,0.774104,-2.18088][0.2051,-0.212747,-0.955339][0.606811,0.559112,0][0.135983,0.552794,-2.12049][0.2051,-0.212747,-0.955339][0.586143,0.559181,0][7.72071e-007,0.693744,-2.18108][0.2051,-0.212747,-0.955339][0.601768,0.550207,0][-0.154955,0.843617,-2.18107][-0.210387,-0.214006,-0.953907][0.582264,0.60248,0][-0.0841783,0.774029,-2.18107][-0.210387,-0.214006,-0.953907][0.576003,0.608555,0][-0.134039,0.553037,-2.1205][-0.210387,-0.214006,-0.953907][0.556118,0.603129,0][-0.154955,0.843617,-2.18107][-0.210387,-0.214006,-0.953907][0.647974,0.550207,0][-0.0841783,0.774029,-2.18107][-0.210387,-0.214006,-0.953907][0.641712,0.556282,0][-0.134039,0.553037,-2.1205][-0.210387,-0.214006,-0.953907][0.621828,0.550856,0][-0.284316,1.45899,-1.98829][-0.553902,0.832582,0][0.954141,0.276451,0][-0.157436,1.5434,-1.98859][-0.553902,0.832582,0][0.967451,0.274955,0][-0.157436,1.5434,-2.01034][-0.553902,0.832582,0][0.967668,0.276853,0][-0.284316,1.45899,-2.01003][-0.553902,0.832582,0][0.485056,0.992838,0][-0.284316,1.45899,-1.98829][-0.553902,0.832582,0][0.484839,0.990939,0][-0.157436,1.5434,-2.01034][-0.553902,0.832582,0][0.498366,0.991342,0][-0.284316,1.45899,-1.98829][-0.553902,0.832582,0][0.52025,0.992381,0][-0.157436,1.5434,-1.98859][-0.553902,0.832582,0][0.53356,0.990885,0][-0.157436,1.5434,-2.01034][-0.553902,0.832582,0][0.533777,0.992784,0][-0.284316,1.45899,-2.01003][-0.553902,0.832582,0][0.850155,0.0835915,0][-0.284316,1.45899,-1.98829][-0.553902,0.832582,0][0.849938,0.0816929,0][-0.157436,1.5434,-2.01034][-0.553902,0.832582,0][0.863466,0.0820953,0][3.0027e-007,1.56953,-1.9886][0.158817,0.987308,0][0.811431,0.792646,0][0.162945,1.54332,-1.98869][0.158817,0.987308,0][0.797201,0.794266,0][0.162945,1.54332,-2.01043][0.158817,0.987308,0][0.796984,0.792367,0][3.03553e-007,1.56954,-2.01034][0.158825,0.987307,5.95698e-005][0.846238,0.753205,0][3.0027e-007,1.56953,-1.9886][0.158825,0.987307,5.95697e-005][0.846455,0.755103,0][0.162945,1.54332,-2.01043][0.158825,0.987307,5.95698e-005][0.832008,0.754825,0][3.0027e-007,1.56953,-1.9886][0.158817,0.987308,0][0.806183,0.847771,0][0.162945,1.54332,-1.98869][0.158817,0.987308,0][0.791954,0.849391,0][0.162945,1.54332,-2.01043][0.158817,0.987308,0][0.791737,0.847493,0][3.03553e-007,1.56954,-2.01034][0.158825,0.987307,5.95698e-005][0.870467,0.734594,0][3.0027e-007,1.56953,-1.9886][0.158825,0.987307,5.95697e-005][0.870684,0.736492,0][0.162945,1.54332,-2.01043][0.158825,0.987307,5.95698e-005][0.856237,0.736214,0][0.162945,1.54332,-1.98869][0.564771,0.825248,0][0.857887,0.830325,0][0.286887,1.4585,-1.98819][0.564771,0.825248,0][0.844687,0.830369,0][0.286887,1.4585,-2.00993][0.564771,0.825248,0][0.844687,0.828458,0][0.162945,1.54332,-2.01043][0.564771,0.825248,0][0.92729,0.734594,0][0.162945,1.54332,-1.98869][0.564771,0.825248,0][0.92729,0.736505,0][0.286887,1.4585,-2.00993][0.564771,0.825248,0][0.91409,0.734637,0][0.162945,1.54332,-1.98869][0.564771,0.825248,0][0.853281,0.670469,0][0.286887,1.4585,-1.98819][0.564771,0.825248,0][0.84008,0.670513,0][0.286887,1.4585,-2.00993][0.564771,0.825248,0][0.84008,0.668602,0][0.162945,1.54332,-2.01043][0.564771,0.825248,0][0.903061,0.753205,0][0.162945,1.54332,-1.98869][0.564771,0.825248,0][0.903061,0.755116,0][0.286887,1.4585,-2.00993][0.564771,0.825248,0][0.889861,0.753248,0][0.162945,1.54332,-2.01043][0.421367,0.611789,-0.669451][0.913761,0.335211,0][0.286887,1.4585,-2.00993][0.421367,0.611789,-0.669451][0.900566,0.334823,0][0.119723,1.45312,-2.12007][0.421367,0.611789,-0.669451][0.912832,0.3222,0][0.162945,1.54332,-2.01043][0.421367,0.611789,-0.669451][0.921146,0.463462,0][0.286887,1.4585,-2.00993][0.421367,0.611789,-0.669451][0.907952,0.463074,0][0.119723,1.45312,-2.12007][0.421367,0.611789,-0.669451][0.920217,0.450451,0][3.03553e-007,1.56954,-2.01034][0.119183,0.743165,-0.658408][0.0748211,0.588034,0][0.162945,1.54332,-2.01043][0.119183,0.743165,-0.658408][0.0604639,0.590105,0][0.119723,1.45312,-2.12007][0.119183,0.743165,-0.658408][0.0610967,0.577076,0][3.03553e-007,1.56954,-2.01034][0.119183,0.743165,-0.658408][0.192987,0.588034,0][0.162945,1.54332,-2.01043][0.119183,0.743165,-0.658408][0.17863,0.590105,0][0.119723,1.45312,-2.12007][0.119183,0.743165,-0.658408][0.179263,0.577076,0][-0.157436,1.5434,-2.01034][-0.123337,0.742936,-0.657901][0.192987,0.487182,0][3.03553e-007,1.56954,-2.01034][-0.123337,0.742936,-0.657901][0.192682,0.501205,0][-0.117181,1.45308,-2.11988][-0.123337,0.742936,-0.657901][0.180158,0.489093,0][-0.157436,1.5434,-2.01034][-0.123337,0.742936,-0.657901][0.0748211,0.487182,0][3.03553e-007,1.56954,-2.01034][-0.123337,0.742936,-0.657901][0.0745154,0.501205,0][-0.117181,1.45308,-2.11988][-0.123337,0.742936,-0.657901][0.0619916,0.489093,0][-0.284316,1.45899,-2.01003][-0.414923,0.621267,-0.66473][0.328753,0.953008,0][-0.157436,1.5434,-2.01034][-0.414923,0.621267,-0.66473][0.337867,0.943193,0][-0.117181,1.45308,-2.11988][-0.414923,0.621267,-0.66473][0.34634,0.953015,0][-0.284316,1.45899,-2.01003][-0.414923,0.621267,-0.66473][0.358112,0.994451,0][-0.157436,1.5434,-2.01034][-0.414923,0.621267,-0.66473][0.367226,0.984636,0][-0.117181,1.45308,-2.11988][-0.414923,0.621267,-0.66473][0.375698,0.994458,0][-0.36918,1.33469,-2.01003][-0.623981,0.42601,-0.655105][0.529053,0.678496,0][-0.284316,1.45899,-2.01003][-0.623981,0.42601,-0.655105][0.52025,0.668622,0][-0.278485,1.29612,-2.1215][-0.623981,0.42601,-0.655105][0.537604,0.668602,0][-0.36918,1.33469,-2.01003][-0.623981,0.42601,-0.655105][0.493642,0.703155,0][-0.284316,1.45899,-2.01003][-0.623981,0.42601,-0.655105][0.484839,0.69328,0][-0.278485,1.29612,-2.1215][-0.623981,0.42601,-0.655105][0.502193,0.69326,0][-0.402081,1.18254,-2.01095][-0.736837,0.163323,-0.656047][0.469768,0.728208,0][-0.36918,1.33469,-2.01003][-0.736837,0.163323,-0.656047][0.456088,0.728435,0][-0.278485,1.29612,-2.1215][-0.736837,0.163323,-0.656047][0.457559,0.715441,0][-0.402081,1.18254,-2.01095][-0.736837,0.163323,-0.656047][0.148952,0.129985,0][-0.36918,1.33469,-2.01003][-0.736837,0.163323,-0.656047][0.162631,0.129758,0][-0.278485,1.29612,-2.1215][-0.736837,0.163323,-0.656047][0.161161,0.142752,0][-0.36918,0.936029,-2.01064][-0.841698,-0.113021,-0.527987][0.297047,0.83527,0][-0.402081,1.18254,-2.01095][-0.841698,-0.113021,-0.527987][0.276017,0.829308,0][-0.305794,0.979987,-2.12109][-0.841698,-0.113021,-0.527987][0.297177,0.82343,0][-0.36918,0.936029,-2.01064][-0.841698,-0.113021,-0.527987][0.31074,0.958562,0][-0.402081,1.18254,-2.01095][-0.841698,-0.113021,-0.527987][0.28971,0.9526,0][-0.305794,0.979987,-2.12109][-0.841698,-0.113021,-0.527987][0.31087,0.946721,0][-0.284316,0.664422,-2.01064][-0.794276,-0.248173,-0.55456][0.412863,0.177915,0][-0.36918,0.936029,-2.01064][-0.794276,-0.248173,-0.55456][0.435886,0.168145,0][-0.305794,0.979987,-2.12109][-0.794276,-0.248173,-0.55456][0.442309,0.178093,0][-0.284316,0.664422,-2.01064][-0.794276,-0.248173,-0.55456][0.168324,0.0385887,0][-0.36918,0.936029,-2.01064][-0.794276,-0.248173,-0.55456][0.178093,0.0616121,0][-0.305794,0.979987,-2.12109][-0.794276,-0.248173,-0.55456][0.168145,0.0680347,0][-0.157369,0.447845,-2.01063][-0.717582,-0.420614,-0.555121][0.687161,0.335651,0][-0.284316,0.664422,-2.01064][-0.717582,-0.420614,-0.555121][0.669511,0.32241,0][-0.134039,0.553037,-2.1205][-0.717582,-0.420614,-0.555121][0.688576,0.3222,0][-0.157369,0.447845,-2.01063][-0.717582,-0.420614,-0.555121][0.779329,0.304355,0][-0.284316,0.664422,-2.01064][-0.717582,-0.420614,-0.555121][0.761678,0.291115,0][-0.134039,0.553037,-2.1205][-0.717582,-0.420614,-0.555121][0.780744,0.290904,0][7.46384e-007,0.248512,-2.01095][-0.625546,-0.492887,-0.604776][0.27681,0.368918,0][-0.157369,0.447845,-2.01063][-0.625546,-0.492887,-0.604776][0.297308,0.360081,0][-0.134039,0.553037,-2.1205][-0.625546,-0.492887,-0.604776][0.307597,0.368858,0][7.46384e-007,0.248512,-2.01095][-0.625546,-0.492887,-0.604776][0.15375,0.336678,0][-0.157369,0.447845,-2.01063][-0.625546,-0.492887,-0.604776][0.174248,0.32784,0][-0.134039,0.553037,-2.1205][-0.625546,-0.492887,-0.604776][0.184538,0.336618,0][0.162832,0.447894,-2.01065][0.607381,-0.495086,-0.621271][0.369304,0.277274,0][7.46384e-007,0.248512,-2.01095][0.607381,-0.495086,-0.621271][0.360625,0.298169,0][0.135983,0.552794,-2.12049][0.607381,-0.495086,-0.621271][0.360081,0.267339,0][0.162832,0.447894,-2.01065][0.607381,-0.495086,-0.621271][0.119788,0.286745,0][7.46384e-007,0.248512,-2.01095][0.607381,-0.495086,-0.621271][0.111109,0.30764,0][0.135983,0.552794,-2.12049][0.607381,-0.495086,-0.621271][0.110564,0.27681,0][0.286832,0.664407,-2.01073][0.715196,-0.409802,-0.566177][0.752733,0.429201,0][0.162832,0.447894,-2.01065][0.715196,-0.409802,-0.566177][0.771665,0.418133,0][0.135983,0.552794,-2.12049][0.715196,-0.409802,-0.566177][0.771678,0.431689,0][0.286832,0.664407,-2.01073][0.715196,-0.409802,-0.566177][0.331042,0.132247,0][0.162832,0.447894,-2.01065][0.715196,-0.409802,-0.566177][0.31211,0.143315,0][0.135983,0.552794,-2.12049][0.715196,-0.409802,-0.566177][0.312097,0.129758,0][0.371358,0.936111,-2.01063][0.779759,-0.242385,-0.577257][0.0398581,0.168145,0][0.286832,0.664407,-2.01073][0.779759,-0.242385,-0.577257][0.0631724,0.177196,0][0.30333,0.979945,-2.12093][0.779759,-0.242385,-0.577257][0.0337903,0.178526,0][0.371358,0.936111,-2.01063][0.779759,-0.242385,-0.577257][0.312881,0.0398581,0][0.286832,0.664407,-2.01073][0.779759,-0.242385,-0.577257][0.303829,0.0631724,0][0.30333,0.979945,-2.12093][0.779759,-0.242385,-0.577257][0.3025,0.0337903,0][0.402082,1.18254,-2.01095][0.82755,-0.103894,-0.551694][0.696112,0.461901,0][0.371358,0.936111,-2.01063][0.82755,-0.103894,-0.551694][0.674286,0.462097,0][0.30333,0.979945,-2.12093][0.82755,-0.103894,-0.551694][0.677277,0.450451,0][0.402082,1.18254,-2.01095][0.82755,-0.103894,-0.551694][0.618959,0.49414,0][0.371358,0.936111,-2.01063][0.82755,-0.103894,-0.551694][0.597132,0.494336,0][0.30333,0.979945,-2.12093][0.82755,-0.103894,-0.551694][0.600124,0.48269,0][0.371348,1.33436,-2.01003][0.73436,0.152699,-0.661361][0.605664,0.00634344,0][0.402082,1.18254,-2.01095][0.73436,0.152699,-0.661361][0.614858,0.0163849,0][0.27884,1.2961,-2.12158][0.73436,0.152699,-0.661361][0.597208,0.016445,0][0.371348,1.33436,-2.01003][0.73436,0.152699,-0.661361][0.125826,0.486182,0][0.402082,1.18254,-2.01095][0.73436,0.152699,-0.661361][0.135019,0.496223,0][0.27884,1.2961,-2.12158][0.73436,0.152699,-0.661361][0.11737,0.496284,0][0.286887,1.4585,-2.00993][0.620927,0.422954,-0.659969][0.328753,0.964277,0][0.371348,1.33436,-2.01003][0.620927,0.422954,-0.659969][0.34195,0.964284,0][0.27884,1.2961,-2.12158][0.620927,0.422954,-0.659969][0.340157,0.977335,0][0.286887,1.4585,-2.00993][0.620927,0.422954,-0.659969][0.52025,0.693513,0][0.371348,1.33436,-2.01003][0.620927,0.422954,-0.659969][0.533447,0.693519,0][0.27884,1.2961,-2.12158][0.620927,0.422954,-0.659969][0.531653,0.70657,0][-0.0796965,1.36736,-1.79715][-0.117311,0.706821,0.697597][0.356132,0.891228,0][3.0027e-007,1.56953,-1.9886][-0.117311,0.706821,0.697597][0.33261,0.900957,0][-0.157436,1.5434,-1.98859][-0.117311,0.706821,0.697597][0.332664,0.88693,0][-0.0796965,1.36736,-1.79715][-0.117311,0.706821,0.697597][0.820991,0.357793,0][3.0027e-007,1.56953,-1.9886][-0.117311,0.706821,0.697597][0.797469,0.367523,0][-0.157436,1.5434,-1.98859][-0.117311,0.706821,0.697597][0.797523,0.353496,0][-1.07964e-006,1.18124,-1.64623][-0.532866,0.383497,0.75431][0.11815,0.223803,0][-0.0796965,1.36736,-1.79715][-0.532866,0.383497,0.75431][0.110564,0.202944,0][-0.284316,1.45899,-1.98829][-0.532866,0.383497,0.75431][0.116513,0.177742,0][-0.189725,1.26138,-1.80011][-0.386054,0.532495,0.753267][0.168145,0.434612,0][-1.07964e-006,1.18124,-1.64623][-0.386054,0.532495,0.753267][0.174275,0.412863,0][-0.284316,1.45899,-1.98829][-0.386054,0.532495,0.753267][0.175393,0.458939,0][-1.07964e-006,1.18124,-1.64623][-0.532866,0.383497,0.75431][0.223803,0.360081,0][-0.0796965,1.36736,-1.79715][-0.532866,0.383497,0.75431][0.202944,0.367666,0][-0.284316,1.45899,-1.98829][-0.532866,0.383497,0.75431][0.177742,0.361717,0][-0.189725,1.26138,-1.80011][-0.386054,0.532495,0.753267][0.43719,0.3025,0][-1.07964e-006,1.18124,-1.64623][-0.386054,0.532495,0.753267][0.458939,0.30863,0][-0.284316,1.45899,-1.98829][-0.386054,0.532495,0.753267][0.412863,0.309748,0][-1.07964e-006,1.18124,-1.64623][-0.647254,-0.0758758,0.758489][0.136822,0.239593,0][-0.189725,1.26138,-1.80011][-0.647254,-0.0758758,0.758489][0.129758,0.218129,0][-0.402082,1.18254,-1.98921][-0.647254,-0.0758758,0.758489][0.136707,0.193142,0][-0.204582,1.04185,-1.79856][-0.644095,0.119663,0.755528][0.24298,0.0290813,0][-1.07964e-006,1.18124,-1.64623][-0.644095,0.119663,0.755528][0.230639,0.0514509,0][-0.402082,1.18254,-1.98921][-0.644095,0.119663,0.755528][0.230524,0.005,0][-1.07964e-006,1.18124,-1.64623][-0.647254,-0.0758758,0.758489][0.367144,0.263585,0][-0.189725,1.26138,-1.80011][-0.647254,-0.0758758,0.758489][0.360081,0.242121,0][-0.402082,1.18254,-1.98921][-0.647254,-0.0758758,0.758489][0.367029,0.217134,0][-0.204582,1.04185,-1.79856][-0.644095,0.119663,0.755528][0.0290813,0.235322,0][-1.07964e-006,1.18124,-1.64623][-0.644095,0.119663,0.755528][0.0514509,0.247663,0][-0.402082,1.18254,-1.98921][-0.644095,0.119663,0.755528][0.005,0.247778,0][-0.204582,1.04185,-1.79856][-0.646398,-0.230279,0.727421][0.305673,0.18322,0][-0.284316,0.664421,-1.98889][-0.646398,-0.230279,0.727421][0.281989,0.15375,0][-0.0932789,0.729317,-1.79859][-0.646398,-0.230279,0.727421][0.306363,0.154069,0][-1.07964e-006,1.18124,-1.64623][-0.505547,-0.180129,0.843787][0.598089,0.0201992,0][-0.204582,1.04185,-1.79856][-0.505547,-0.180129,0.843787][0.614858,0.0394731,0][-0.0932789,0.729317,-1.79859][-0.505547,-0.180129,0.843787][0.597505,0.062907,0][-0.204582,1.04185,-1.79856][-0.646398,-0.230279,0.727421][0.215089,0.311279,0][-0.284316,0.664421,-1.98889][-0.646398,-0.230279,0.727421][0.191405,0.281809,0][-0.0932789,0.729317,-1.79859][-0.646398,-0.230279,0.727421][0.215779,0.282128,0][-1.07964e-006,1.18124,-1.64623][-0.505547,-0.180129,0.843787][0.11825,0.500038,0][-0.204582,1.04185,-1.79856][-0.505547,-0.180129,0.843787][0.135019,0.519312,0][-0.0932789,0.729317,-1.79859][-0.505547,-0.180129,0.843787][0.117666,0.542745,0][-0.0932789,0.729317,-1.79859][-0.506273,-0.400925,0.76351][0.659957,0.0167184,0][-0.157369,0.447843,-1.98889][-0.506273,-0.400925,0.76351][0.672826,0.0442489,0][7.43101e-007,0.248512,-1.98921][-0.506273,-0.400925,0.76351][0.660573,0.062907,0][-0.0932789,0.729317,-1.79859][-0.506273,-0.400925,0.76351][0.541791,0.0167184,0][-0.157369,0.447843,-1.98889][-0.506273,-0.400925,0.76351][0.55466,0.0442489,0][7.43101e-007,0.248512,-1.98921][-0.506273,-0.400925,0.76351][0.542407,0.062907,0][0.0913676,0.729502,-1.79881][0.637144,-0.233099,0.734651][0.201965,0.100968,0][0.286832,0.664406,-1.98898][0.637144,-0.233099,0.734651][0.226598,0.101654,0][0.205225,1.04179,-1.79847][0.637144,-0.233099,0.734651][0.201734,0.130182,0][-1.07964e-006,1.18124,-1.64623][0.501938,-0.183926,0.845121][0.135019,0.590919,0][0.0913676,0.729502,-1.79881][0.501938,-0.183926,0.845121][0.134087,0.63358,0][0.205225,1.04179,-1.79847][0.501938,-0.183926,0.845121][0.117478,0.609545,0][0.0913676,0.729502,-1.79881][0.637144,-0.233099,0.734651][0.350908,0.451481,0][0.286832,0.664406,-1.98898][0.637144,-0.233099,0.734651][0.350221,0.476114,0][0.205225,1.04179,-1.79847][0.637144,-0.233099,0.734651][0.321693,0.45125,0][-1.07964e-006,1.18124,-1.64623][0.501938,-0.183926,0.845121][0.365483,0.500085,0][0.0913676,0.729502,-1.79881][0.501938,-0.183926,0.845121][0.364551,0.542745,0][0.205225,1.04179,-1.79847][0.501938,-0.183926,0.845121][0.347941,0.518711,0][0.190826,1.26134,-1.8003][0.687992,0.134937,0.713063][0.639412,0.461156,0][0.402082,1.18254,-1.98921][0.687992,0.134937,0.713063][0.662946,0.450451,0][0.371348,1.33436,-1.98829][0.687992,0.134937,0.713063][0.663023,0.464065,0][0.190826,1.26134,-1.8003][0.687992,0.134937,0.713063][0.71786,0.428838,0][0.402082,1.18254,-1.98921][0.687992,0.134937,0.713063][0.741393,0.418133,0][0.371348,1.33436,-1.98829][0.687992,0.134937,0.713063][0.741471,0.431747,0][0.0790804,1.3668,-1.7965][0.396428,0.58341,0.708857][0.261,0.825193,0][0.286887,1.4585,-1.98819][0.396428,0.58341,0.708857][0.237509,0.836619,0][0.162945,1.54332,-1.98869][0.396428,0.58341,0.708857][0.236974,0.82343,0][0.0790804,1.3668,-1.7965][0.396428,0.58341,0.708857][0.313736,0.920278,0][0.286887,1.4585,-1.98819][0.396428,0.58341,0.708857][0.290245,0.931704,0][0.162945,1.54332,-1.98869][0.396428,0.58341,0.708857][0.28971,0.918515,0][0.205225,1.04179,-1.79847][0.675801,-0.210475,0.706395][0.270129,0.100968,0][0.286832,0.664406,-1.98898][0.675801,-0.210475,0.706395][0.270156,0.138811,0][0.371357,0.936111,-1.98889][0.675801,-0.210475,0.706395][0.254516,0.119294,0][0.205225,1.04179,-1.79847][0.675801,-0.210475,0.706395][0.425338,0.624633,0][0.286832,0.664406,-1.98898][0.675801,-0.210475,0.706395][0.463181,0.624607,0][0.371357,0.936111,-1.98889][0.675801,-0.210475,0.706395][0.443665,0.640247,0][0.205225,1.04179,-1.79847][0.725361,-0.0895492,0.682519][0.255323,0.925214,0][0.371357,0.936111,-1.98889][0.725361,-0.0895492,0.682519][0.278448,0.918515,0][0.402082,1.18254,-1.98921][0.725361,-0.0895492,0.682519][0.277794,0.940332,0][0.205225,1.04179,-1.79847][0.725361,-0.0895492,0.682519][0.178036,0.957453,0][0.371357,0.936111,-1.98889][0.725361,-0.0895492,0.682519][0.201161,0.950754,0][0.402082,1.18254,-1.98921][0.725361,-0.0895492,0.682519][0.200507,0.972571,0][-0.0932789,0.729317,-1.79859][0.00146396,-0.368309,0.929702][0.423451,0.500486,0][7.43101e-007,0.248512,-1.98921][0.00146396,-0.368309,0.929702][0.415253,0.542745,0][0.0913676,0.729502,-1.79881][0.00146396,-0.368309,0.929702][0.407222,0.50047,0][-1.07964e-006,1.18124,-1.64623][0.00143615,-0.319739,0.947505][0.0666227,0.593859,0][-0.0932789,0.729317,-1.79859][0.00143615,-0.319739,0.947505][0.0748211,0.63358,0][0.0913676,0.729502,-1.79881][0.00143615,-0.319739,0.947505][0.058592,0.633563,0][-0.0932789,0.729317,-1.79859][0.00146396,-0.368309,0.929702][0.305285,0.500486,0][7.43101e-007,0.248512,-1.98921][0.00146396,-0.368309,0.929702][0.297086,0.542745,0][0.0913676,0.729502,-1.79881][0.00146396,-0.368309,0.929702][0.289056,0.50047,0][-1.07964e-006,1.18124,-1.64623][0.00143615,-0.319739,0.947505][0.184789,0.593859,0][-0.0932789,0.729317,-1.79859][0.00143615,-0.319739,0.947505][0.192987,0.63358,0][0.0913676,0.729502,-1.79881][0.00143615,-0.319739,0.947505][0.176758,0.633563,0][0.0913676,0.729502,-1.79881][0.594968,-0.340495,0.728063][0.971117,0.145247,0][0.162831,0.447894,-1.98891][0.594968,-0.340495,0.728063][0.949241,0.166523,0][0.286832,0.664406,-1.98898][0.594968,-0.340495,0.728063][0.946479,0.144768,0][0.0913676,0.729502,-1.79881][0.594968,-0.340495,0.728063][0.355141,0.45125,0][0.162831,0.447894,-1.98891][0.594968,-0.340495,0.728063][0.376418,0.473126,0][0.286832,0.664406,-1.98898][0.594968,-0.340495,0.728063][0.354662,0.475888,0][-0.204582,1.04185,-1.79856][-0.677892,-0.211809,0.703989][0.192987,0.542745,0][-0.36918,0.936029,-1.98889][-0.677892,-0.211809,0.703989][0.176795,0.525041,0][-0.284316,0.664421,-1.98889][-0.677892,-0.211809,0.703989][0.191703,0.504959,0][-0.204582,1.04185,-1.79856][-0.677892,-0.211809,0.703989][0.0748211,0.542745,0][-0.36918,0.936029,-1.98889][-0.677892,-0.211809,0.703989][0.0586284,0.525041,0][-0.284316,0.664421,-1.98889][-0.677892,-0.211809,0.703989][0.0735369,0.504959,0][0.0913676,0.729502,-1.79881][0.488132,-0.39983,0.775798][0.251776,0.496576,0][7.43101e-007,0.248512,-1.98921][0.488132,-0.39983,0.775798][0.251385,0.542745,0][0.162831,0.447894,-1.98891][0.488132,-0.39983,0.775798][0.23858,0.524092,0][0.0913676,0.729502,-1.79881][0.488132,-0.39983,0.775798][0.0213118,0.58741,0][7.43101e-007,0.248512,-1.98921][0.488132,-0.39983,0.775798][0.0209209,0.63358,0][0.162831,0.447894,-1.98891][0.488132,-0.39983,0.775798][0.00811607,0.614926,0][-0.189725,1.26138,-1.80011][-0.687411,0.144333,0.711783][0.411058,0.854822,0][-0.369181,1.33469,-1.98829][-0.687411,0.144333,0.711783][0.434802,0.854612,0][-0.402082,1.18254,-1.98921][-0.687411,0.144333,0.711783][0.433271,0.868208,0][-0.189725,1.26138,-1.80011][-0.687411,0.144333,0.711783][0.562125,0.4829,0][-0.369181,1.33469,-1.98829][-0.687411,0.144333,0.711783][0.58587,0.48269,0][-0.402082,1.18254,-1.98921][-0.687411,0.144333,0.711783][0.584339,0.496285,0][-0.0932789,0.729317,-1.79859][-0.59841,-0.350753,0.720331][0.966969,0.114727,0][-0.284316,0.664421,-1.98889][-0.59841,-0.350753,0.720331][0.942799,0.117896,0][-0.157369,0.447843,-1.98889][-0.59841,-0.350753,0.720331][0.943166,0.0958342,0][-0.0932789,0.729317,-1.79859][-0.59841,-0.350753,0.720331][0.954202,0.212595,0][-0.284316,0.664421,-1.98889][-0.59841,-0.350753,0.720331][0.930032,0.215764,0][-0.157369,0.447843,-1.98889][-0.59841,-0.350753,0.720331][0.930399,0.193702,0][-0.0796965,1.36736,-1.79715][-0.392281,0.592201,0.703857][0.746662,0.301196,0][-0.157436,1.5434,-1.98859][-0.392281,0.592201,0.703857][0.723006,0.304298,0][-0.284316,1.45899,-1.98829][-0.392281,0.592201,0.703857][0.7229,0.290904,0][-0.0796965,1.36736,-1.79715][-0.392281,0.592201,0.703857][0.654494,0.332492,0][-0.157436,1.5434,-1.98859][-0.392281,0.592201,0.703857][0.630838,0.335594,0][-0.284316,1.45899,-1.98829][-0.392281,0.592201,0.703857][0.630733,0.3222,0][-0.204582,1.04185,-1.79856][-0.725874,-0.0959981,0.681096][0.508828,0.514663,0][-0.402082,1.18254,-1.98921][-0.725874,-0.0959981,0.681096][0.491117,0.53519,0][-0.36918,0.936029,-1.98889][-0.725874,-0.0959981,0.681096][0.484839,0.514252,0][-0.204582,1.04185,-1.79856][-0.725874,-0.0959981,0.681096][0.236413,0.951165,0][-0.402082,1.18254,-1.98921][-0.725874,-0.0959981,0.681096][0.218701,0.971692,0][-0.36918,0.936029,-1.98889][-0.725874,-0.0959981,0.681096][0.212423,0.950754,0][0.0790804,1.3668,-1.7965][0.114022,0.70639,0.698579][0.743111,0.399904,0][0.162945,1.54332,-1.98869][0.114022,0.70639,0.698579][0.719021,0.400043,0][3.0027e-007,1.56953,-1.9886][0.114022,0.70639,0.698579][0.721843,0.385814,0][0.0790804,1.3668,-1.7965][0.114022,0.70639,0.698579][0.397879,0.778465,0][0.162945,1.54332,-1.98869][0.114022,0.70639,0.698579][0.373789,0.778603,0][3.0027e-007,1.56953,-1.9886][0.114022,0.70639,0.698579][0.376611,0.764375,0][-0.189725,1.26138,-1.80011][-0.581871,0.397244,0.709664][0.508408,0.553095,0][-0.284316,1.45899,-1.98829][-0.581871,0.397244,0.709664][0.485223,0.56343,0][-0.369181,1.33469,-1.98829][-0.581871,0.397244,0.709664][0.484839,0.550207,0][-0.189725,1.26138,-1.80011][-0.581871,0.397244,0.709664][0.256945,0.798559,0][-0.284316,1.45899,-1.98829][-0.581871,0.397244,0.709664][0.23376,0.808894,0][-0.369181,1.33469,-1.98829][-0.581871,0.397244,0.709664][0.233376,0.795671,0][0.190826,1.26134,-1.8003][0.581228,0.394888,0.711504][0.547633,0.527114,0][0.371348,1.33436,-1.98829][0.581228,0.394888,0.711504][0.523845,0.527311,0][0.286887,1.4585,-1.98819][0.581228,0.394888,0.711504][0.52575,0.514252,0][0.190826,1.26134,-1.8003][0.581228,0.394888,0.711504][0.436685,0.777236,0][0.371348,1.33436,-1.98829][0.581228,0.394888,0.711504][0.412896,0.777434,0][0.286887,1.4585,-1.98819][0.581228,0.394888,0.711504][0.414801,0.764375,0][-1.07964e-006,1.18124,-1.64623][-0.125504,0.656128,0.74414][0.136842,0.288847,0][0.0790804,1.3668,-1.7965][-0.125504,0.656128,0.74414][0.129758,0.267905,0][3.0027e-007,1.56953,-1.9886][-0.125504,0.656128,0.74414][0.136672,0.243347,0][-0.0796965,1.36736,-1.79715][0.123129,0.656324,0.744364][0.117784,0.252067,0][-1.07964e-006,1.18124,-1.64623][0.123129,0.656324,0.744364][0.110564,0.273056,0][3.0027e-007,1.56953,-1.9886][0.123129,0.656324,0.744364][0.110912,0.227557,0][-1.07964e-006,1.18124,-1.64623][-0.125504,0.656128,0.74414][0.474423,0.464189,0][0.0790804,1.3668,-1.7965][-0.125504,0.656128,0.74414][0.453481,0.471273,0][3.0027e-007,1.56953,-1.9886][-0.125504,0.656128,0.74414][0.428923,0.464359,0][-0.0796965,1.36736,-1.79715][0.123129,0.656324,0.744364][0.248546,0.3673,0][-1.07964e-006,1.18124,-1.64623][0.123129,0.656324,0.744364][0.227557,0.360081,0][3.0027e-007,1.56953,-1.9886][0.123129,0.656324,0.744364][0.273056,0.360428,0][-0.534229,0.588469,-1.93924][0.768177,0.555571,-0.31819][0.943279,0.809295,0][-0.590536,0.679682,-1.91592][0.768177,0.555571,-0.31819][0.952921,0.809295,0][-0.587091,0.679682,-1.9076][0.768177,0.555571,-0.31819][0.952921,0.810086,0][-0.530783,0.588469,-1.93092][0.768176,0.555571,-0.318191][0.979337,0.648674,0][-0.534229,0.588469,-1.93924][0.768176,0.555571,-0.318191][0.979337,0.647883,0][-0.587091,0.679682,-1.9076][0.768176,0.555571,-0.318191][0.988979,0.648674,0][-0.534229,0.588469,-1.93924][0.768177,0.555571,-0.31819][0.94688,0.828458,0][-0.590536,0.679682,-1.91592][0.768177,0.555571,-0.31819][0.956522,0.828458,0][-0.587091,0.679682,-1.9076][0.768177,0.555571,-0.31819][0.956522,0.829249,0][-0.530783,0.588469,-1.93092][0.768176,0.555571,-0.318191][0.791737,0.909977,0][-0.534229,0.588469,-1.93924][0.768176,0.555571,-0.318191][0.791737,0.909185,0][-0.587091,0.679682,-1.9076][0.768176,0.555571,-0.318191][0.801378,0.909977,0][-0.590536,0.679682,-1.91592][0.513282,0.831469,-0.212606][0.369722,0.302715,0][-0.674806,0.740629,-1.88101][0.513282,0.831469,-0.212606][0.360081,0.302715,0][-0.67136,0.740629,-1.8727][0.513282,0.831469,-0.212606][0.360081,0.301923,0][-0.587091,0.679682,-1.9076][0.513281,0.831469,-0.212609][0.841054,0.894169,0][-0.590536,0.679682,-1.91592][0.513281,0.831469,-0.212609][0.841054,0.893377,0][-0.67136,0.740629,-1.8727][0.513281,0.831469,-0.212609][0.850696,0.894169,0][-0.590536,0.679682,-1.91592][0.513282,0.831469,-0.212606][0.274701,0.12776,0][-0.674806,0.740629,-1.88101][0.513282,0.831469,-0.212606][0.274701,0.137402,0][-0.67136,0.740629,-1.8727][0.513282,0.831469,-0.212606][0.27391,0.137402,0][-0.587091,0.679682,-1.9076][0.513281,0.831469,-0.212609][0.816395,0.909977,0][-0.590536,0.679682,-1.91592][0.513281,0.831469,-0.212609][0.816395,0.909185,0][-0.67136,0.740629,-1.8727][0.513281,0.831469,-0.212609][0.826037,0.909977,0][-0.674806,0.740629,-1.88101][0.180239,0.980785,-0.074659][0.713167,0.922878,0][-0.774209,0.76203,-1.83984][0.180239,0.980785,-0.074659][0.722809,0.922878,0][-0.770763,0.76203,-1.83152][0.180239,0.980785,-0.074659][0.722809,0.92367,0][-0.67136,0.740629,-1.8727][0.18024,0.980785,-0.0746571][0.686919,0.874834,0][-0.674806,0.740629,-1.88101][0.18024,0.980785,-0.0746571][0.686919,0.874043,0][-0.770763,0.76203,-1.83152][0.18024,0.980785,-0.0746571][0.696561,0.874834,0][-0.674806,0.740629,-1.88101][0.180239,0.980785,-0.074659][0.967395,0.753205,0][-0.774209,0.76203,-1.83984][0.180239,0.980785,-0.074659][0.977037,0.753205,0][-0.770763,0.76203,-1.83152][0.180239,0.980785,-0.074659][0.977037,0.753996,0][-0.67136,0.740629,-1.8727][0.18024,0.980785,-0.0746571][0.426516,0.748551,0][-0.674806,0.740629,-1.88101][0.18024,0.980785,-0.0746571][0.426516,0.747759,0][-0.770763,0.76203,-1.83152][0.18024,0.980785,-0.0746571][0.436158,0.748551,0][-0.774209,0.76203,-1.83984][-0.180239,0.980785,0.0746567][0.801378,0.878361,0][-0.873612,0.740629,-1.79867][-0.180239,0.980785,0.0746567][0.791737,0.878361,0][-0.870167,0.740629,-1.79035][-0.180239,0.980785,0.0746567][0.791737,0.877569,0][-0.770763,0.76203,-1.83152][-0.180238,0.980786,0.0746586][0.833099,0.341142,0][-0.774209,0.76203,-1.83984][-0.180238,0.980786,0.0746586][0.833047,0.340353,0][-0.870167,0.740629,-1.79035][-0.180238,0.980786,0.0746586][0.842535,0.340511,0][-0.774209,0.76203,-1.83984][-0.180239,0.980785,0.0746567][0.988573,0.275746,0][-0.873612,0.740629,-1.79867][-0.180239,0.980785,0.0746567][0.978931,0.275746,0][-0.870167,0.740629,-1.79035][-0.180239,0.980785,0.0746567][0.978931,0.274955,0][-0.770763,0.76203,-1.83152][-0.180238,0.980786,0.0746586][0.925258,0.309846,0][-0.774209,0.76203,-1.83984][-0.180238,0.980786,0.0746586][0.925205,0.309057,0][-0.870167,0.740629,-1.79035][-0.180238,0.980786,0.0746586][0.934693,0.309215,0][-0.873612,0.740629,-1.79867][-0.51328,0.83147,0.212606][0.670313,0.899408,0][-0.957882,0.679682,-1.76376][-0.51328,0.83147,0.212606][0.660671,0.899408,0][-0.954436,0.679682,-1.75544][-0.51328,0.83147,0.212606][0.660671,0.898616,0][-0.870167,0.740629,-1.79035][-0.513281,0.83147,0.212605][0.0918859,0.398513,0][-0.873612,0.740629,-1.79867][-0.513281,0.83147,0.212605][0.0910945,0.398513,0][-0.954436,0.679682,-1.75544][-0.513281,0.83147,0.212605][0.0918859,0.388871,0][-0.873612,0.740629,-1.79867][-0.51328,0.83147,0.212606][0.820543,0.275746,0][-0.957882,0.679682,-1.76376][-0.51328,0.83147,0.212606][0.810901,0.275746,0][-0.954436,0.679682,-1.75544][-0.51328,0.83147,0.212606][0.810901,0.274955,0][-0.870167,0.740629,-1.79035][-0.513281,0.83147,0.212605][0.067718,0.177787,0][-0.873612,0.740629,-1.79867][-0.513281,0.83147,0.212605][0.0669266,0.177787,0][-0.954436,0.679682,-1.75544][-0.513281,0.83147,0.212605][0.067718,0.168145,0][-0.957882,0.679682,-1.76376][-0.76818,0.55557,0.318183][0.27391,0.11061,0][-1.01419,0.588469,-1.74044][-0.76818,0.55557,0.318183][0.27391,0.100968,0][-1.01074,0.588469,-1.73212][-0.76818,0.55557,0.318184][0.274701,0.100968,0][-0.954436,0.679682,-1.75544][-0.768178,0.555571,0.318187][0.591064,0.99027,0][-0.957882,0.679682,-1.76376][-0.768178,0.555571,0.318187][0.591064,0.991062,0][-1.01074,0.588469,-1.73212][-0.768178,0.555571,0.318187][0.581422,0.99027,0][-0.957882,0.679682,-1.76376][-0.76818,0.55557,0.318183][0.0552051,0.244964,0][-1.01419,0.588469,-1.74044][-0.76818,0.55557,0.318183][0.0552051,0.235322,0][-1.01074,0.588469,-1.73212][-0.76818,0.55557,0.318184][0.0559965,0.235322,0][-0.954436,0.679682,-1.75544][-0.768178,0.555571,0.318187][0.910103,0.226021,0][-0.957882,0.679682,-1.76376][-0.768178,0.555571,0.318187][0.910103,0.226812,0][-1.01074,0.588469,-1.73212][-0.768178,0.555571,0.318187][0.900461,0.226021,0][-1.01419,0.588469,-1.74044][-0.90613,0.195091,0.375323][0.807621,0.501876,0][-1.03396,0.480876,-1.73225][-0.90613,0.195091,0.375323][0.798144,0.502236,0][-1.03052,0.480876,-1.72393][-0.90613,0.195091,0.375323][0.79806,0.50151,0][-1.01074,0.588469,-1.73212][-0.90613,0.195091,0.375323][0.969464,0.309724,0][-1.01419,0.588469,-1.74044][-0.90613,0.195091,0.375323][0.969547,0.310451,0][-1.03052,0.480876,-1.72393][-0.90613,0.195091,0.375323][0.959987,0.310084,0][-1.01419,0.588469,-1.74044][-0.90613,0.195091,0.375323][0.451198,0.841949,0][-1.03396,0.480876,-1.73225][-0.90613,0.195091,0.375323][0.441721,0.842309,0][-1.03052,0.480876,-1.72393][-0.90613,0.195091,0.375323][0.441638,0.841582,0][-1.01074,0.588469,-1.73212][-0.90613,0.195091,0.375323][0.877306,0.34102,0][-1.01419,0.588469,-1.74044][-0.90613,0.195091,0.375323][0.877389,0.341746,0][-1.03052,0.480876,-1.72393][-0.90613,0.195091,0.375323][0.867829,0.34138,0][-1.03396,0.480876,-1.73225][-0.90613,-0.19509,0.375323][0.748431,0.987623,0][-1.01419,0.373283,-1.74044][-0.90613,-0.19509,0.375323][0.738974,0.988343,0][-1.01074,0.373283,-1.73212][-0.90613,-0.19509,0.375323][0.738974,0.987612,0][-1.03052,0.480876,-1.72393][-0.90613,-0.19509,0.375323][0.670127,0.977656,0][-1.03396,0.480876,-1.73225][-0.90613,-0.19509,0.375323][0.670127,0.978387,0][-1.01074,0.373283,-1.73212][-0.90613,-0.19509,0.375323][0.660671,0.978375,0][-1.03396,0.480876,-1.73225][-0.90613,-0.19509,0.375323][0.776435,0.979343,0][-1.01419,0.373283,-1.74044][-0.90613,-0.19509,0.375323][0.766978,0.980063,0][-1.01074,0.373283,-1.73212][-0.90613,-0.19509,0.375323][0.766978,0.979332,0][-1.03052,0.480876,-1.72393][-0.90613,-0.19509,0.375323][0.825852,0.940801,0][-1.03396,0.480876,-1.73225][-0.90613,-0.19509,0.375323][0.825852,0.941532,0][-1.01074,0.373283,-1.73212][-0.90613,-0.19509,0.375323][0.816395,0.94152,0][-0.954436,0.28207,-1.75544][-0.272585,-0.392848,0.878275][0.13437,0.983719,0][-0.782485,0.400276,-1.6492][-0.272585,-0.392848,0.878275][0.154798,0.986216,0][-1.01074,0.373283,-1.73212][-0.272585,-0.392848,0.878275][0.134545,0.993359,0][-0.954436,0.28207,-1.75544][-0.272585,-0.392848,0.878275][0.0397819,0.985155,0][-0.782485,0.400276,-1.6492][-0.272585,-0.392848,0.878275][0.06021,0.987652,0][-1.01074,0.373283,-1.73212][-0.272585,-0.392848,0.878275][0.0399563,0.994795,0][-0.770763,0.199722,-1.83152][0.14315,-0.69352,0.706073][0.375875,0.82343,0][-0.70802,0.36689,-1.68005][0.14315,-0.69352,0.706073][0.396269,0.826189,0][-0.870166,0.221123,-1.79035][0.14315,-0.69352,0.706073][0.375926,0.833071,0][-0.770763,0.199722,-1.83152][0.14315,-0.69352,0.706073][0.859442,0.290904,0][-0.70802,0.36689,-1.68005][0.14315,-0.69352,0.706073][0.879837,0.293663,0][-0.870166,0.221123,-1.79035][0.14315,-0.69352,0.706073][0.859493,0.300546,0][-0.770763,0.199722,-1.83152][0.398046,-0.69352,0.600491][0.650798,0.48269,0][-0.67136,0.221123,-1.8727][0.398046,-0.69352,0.600491][0.649634,0.492261,0][-0.70802,0.36689,-1.68005][0.398046,-0.69352,0.600491][0.630221,0.483074,0][-0.770763,0.199722,-1.83152][0.398046,-0.69352,0.600491][0.727951,0.450451,0][-0.67136,0.221123,-1.8727][0.398046,-0.69352,0.600491][0.726787,0.460022,0][-0.70802,0.36689,-1.68005][0.398046,-0.69352,0.600491][0.707375,0.450835,0][-0.58709,0.28207,-1.9076][0.633542,-0.587937,0.502946][0.57476,0.584334,0][-0.633555,0.400276,-1.71089][0.633542,-0.587937,0.502946][0.554357,0.581645,0][-0.67136,0.221123,-1.8727][0.633542,-0.587937,0.502946][0.574677,0.574693,0][-0.58709,0.28207,-1.9076][0.633542,-0.587937,0.502946][0.648818,0.523894,0][-0.633555,0.400276,-1.71089][0.633542,-0.587937,0.502946][0.628414,0.521205,0][-0.67136,0.221123,-1.8727][0.633542,-0.587937,0.502946][0.648734,0.514252,0][-0.511011,0.480876,-1.93911][0.911327,0.13795,0.387884][0.484839,0.681998,0][-0.530783,0.588469,-1.93092][0.911327,0.13795,0.387884][0.485558,0.672541,0][-0.602711,0.480876,-1.72367][0.911327,0.13795,0.387884][0.503775,0.681998,0][-0.511011,0.480876,-1.93911][0.911327,0.13795,0.387884][0.389954,0.977214,0][-0.530783,0.588469,-1.93092][0.911327,0.13795,0.387884][0.390674,0.967757,0][-0.602711,0.480876,-1.72367][0.911327,0.13795,0.387884][0.40889,0.977214,0][-0.587091,0.679682,-1.9076][0.633542,0.587937,0.502945][0.613397,0.514252,0][-0.67136,0.740629,-1.8727][0.633542,0.587937,0.502945][0.6122,0.52382,0][-0.633555,0.561476,-1.71089][0.633542,0.587937,0.502945][0.592819,0.514566,0][-0.587091,0.679682,-1.9076][0.633542,0.587937,0.502945][0.53934,0.574693,0][-0.67136,0.740629,-1.8727][0.633542,0.587937,0.502945][0.538143,0.58426,0][-0.633555,0.561476,-1.71089][0.633542,0.587937,0.502945][0.518762,0.575007,0][-0.587091,0.679682,-1.9076][0.813781,0.392849,0.428288][0.57488,0.559847,0][-0.633555,0.561476,-1.71089][0.813781,0.392849,0.428288][0.554452,0.55735,0][-0.530783,0.588469,-1.93092][0.813781,0.392849,0.428288][0.574706,0.550207,0][-0.587091,0.679682,-1.9076][0.813781,0.392849,0.428288][0.452265,0.896571,0][-0.633555,0.561476,-1.71089][0.813781,0.392849,0.428288][0.431837,0.894073,0][-0.530783,0.588469,-1.93092][0.813781,0.392849,0.428288][0.45209,0.88693,0][-1.03052,0.480876,-1.72393][-0.37013,0.13795,0.91868][0.821784,0.331657,0][-0.813329,0.480876,-1.63643][-0.37013,0.13795,0.91868][0.802695,0.331657,0][-1.01074,0.588469,-1.73212][-0.37013,0.13795,0.91868][0.820046,0.3222,0][-1.03052,0.480876,-1.72393][-0.37013,0.13795,0.91868][0.913943,0.300361,0][-0.813329,0.480876,-1.63643][-0.37013,0.13795,0.91868][0.894853,0.300361,0][-1.01074,0.588469,-1.73212][-0.37013,0.13795,0.91868][0.912205,0.290904,0][-0.770763,0.76203,-1.83152][0.398047,0.69352,0.600491][0.684229,0.523894,0][-0.70802,0.594863,-1.68005][0.398047,0.69352,0.600491][0.663835,0.521135,0][-0.67136,0.740629,-1.8727][0.398047,0.69352,0.600491][0.684178,0.514252,0][-0.770763,0.76203,-1.83152][0.398047,0.69352,0.600491][0.919306,0.395456,0][-0.70802,0.594863,-1.68005][0.398047,0.69352,0.600491][0.898912,0.392697,0][-0.67136,0.740629,-1.8727][0.398047,0.69352,0.600491][0.919255,0.385814,0][-0.70802,0.594863,-1.68005][0.520999,0.630085,0.575807][0.951639,0.582041,0][-0.67044,0.480876,-1.58932][0.520999,0.630085,0.575807][0.940605,0.574752,0][-0.633555,0.561476,-1.71089][0.520999,0.630085,0.575807][0.953829,0.574693,0][-0.67136,0.740629,-1.8727][0.520999,0.63004,0.575856][0.950931,0.425482,0][-0.70802,0.594863,-1.68005][0.520999,0.63004,0.575856][0.97111,0.418133,0][-0.633555,0.561476,-1.71089][0.520999,0.63004,0.575856][0.972406,0.42569,0][-0.70802,0.594863,-1.68005][0.520999,0.630085,0.575807][0.750453,0.717366,0][-0.67044,0.480876,-1.58932][0.520999,0.630085,0.575807][0.73942,0.710076,0][-0.633555,0.561476,-1.71089][0.520999,0.630085,0.575807][0.752643,0.710017,0][-0.67136,0.740629,-1.8727][0.520999,0.63004,0.575856][0.875214,0.4578,0][-0.70802,0.594863,-1.68005][0.520999,0.63004,0.575856][0.895393,0.450451,0][-0.633555,0.561476,-1.71089][0.520999,0.63004,0.575856][0.896689,0.458009,0][-0.770763,0.76203,-1.83152][0.14315,0.69352,0.706072][0.782941,0.427704,0][-0.870167,0.740629,-1.79035][0.14315,0.69352,0.706072][0.784105,0.418133,0][-0.70802,0.594863,-1.68005][0.14315,0.69352,0.706072][0.803517,0.42732,0][-0.770763,0.76203,-1.83152][0.14315,0.69352,0.706072][0.699839,0.331771,0][-0.870167,0.740629,-1.79035][0.14315,0.69352,0.706072][0.701003,0.3222,0][-0.70802,0.594863,-1.68005][0.14315,0.69352,0.706072][0.720415,0.331387,0][-0.954436,0.679682,-1.75544][-0.0923448,0.587938,0.803618][0.767275,0.3222,0][-0.782485,0.561477,-1.6492][-0.0923448,0.587938,0.803618][0.787678,0.324889,0][-0.870167,0.740629,-1.79035][-0.0923448,0.587938,0.803618][0.767358,0.331841,0][-0.954436,0.679682,-1.75544][-0.0923448,0.587938,0.803618][0.850377,0.418133,0][-0.782485,0.561477,-1.6492][-0.0923448,0.587938,0.803618][0.87078,0.420822,0][-0.870167,0.740629,-1.79035][-0.0923448,0.587938,0.803618][0.85046,0.427774,0][-0.782485,0.561477,-1.6492][0.0387557,0.630085,0.775558][0.45961,0.963818,0][-0.67044,0.480876,-1.58932][0.0387557,0.630085,0.775558][0.470673,0.971062,0][-0.70802,0.594863,-1.68005][0.0387557,0.630085,0.775558][0.45745,0.971175,0][-0.870167,0.740629,-1.79035][0.0387906,0.63004,0.775593][0.574096,0.668721,0][-0.782485,0.561477,-1.6492][0.0387906,0.63004,0.775593][0.553947,0.676154,0][-0.70802,0.594863,-1.68005][0.0387906,0.63004,0.775593][0.55262,0.668602,0][-0.782485,0.561477,-1.6492][0.0387557,0.630085,0.775558][0.457724,0.943099,0][-0.67044,0.480876,-1.58932][0.0387557,0.630085,0.775558][0.468788,0.950343,0][-0.70802,0.594863,-1.68005][0.0387557,0.630085,0.775558][0.455564,0.950456,0][-0.870167,0.740629,-1.79035][0.0387906,0.63004,0.775593][0.602961,0.648002,0][-0.782485,0.561477,-1.6492][0.0387906,0.63004,0.775593][0.582811,0.655435,0][-0.70802,0.594863,-1.68005][0.0387906,0.63004,0.775593][0.581485,0.647883,0][-0.954436,0.679682,-1.75544][-0.272585,0.392848,0.878276][0.505418,0.627064,0][-1.01074,0.588469,-1.73212][-0.272585,0.392848,0.878276][0.504131,0.63662,0][-0.782485,0.561477,-1.6492][-0.272585,0.392848,0.878276][0.484839,0.627185,0][-0.954436,0.679682,-1.75544][-0.272585,0.392848,0.878276][0.353741,0.795671,0][-1.01074,0.588469,-1.73212][-0.272585,0.392848,0.878276][0.352453,0.805226,0][-0.782485,0.561477,-1.6492][-0.272585,0.392848,0.878276][0.333161,0.795791,0][-1.03052,0.480876,-1.72393][-0.37013,-0.13795,0.91868][0.377201,0.963917,0][-1.01074,0.373283,-1.73212][-0.37013,-0.13795,0.91868][0.375463,0.973374,0][-0.813329,0.480876,-1.63643][-0.37013,-0.13795,0.91868][0.358112,0.963917,0][-1.03052,0.480876,-1.72393][-0.37013,-0.13795,0.91868][0.829168,0.450451,0][-1.01074,0.373283,-1.73212][-0.37013,-0.13795,0.91868][0.82743,0.459908,0][-0.813329,0.480876,-1.63643][-0.37013,-0.13795,0.91868][0.810079,0.450451,0][-0.813329,0.480876,-1.63643][-0.302245,0.260989,0.916806][0.532809,0.917783,0][-0.67044,0.480876,-1.58932][-0.302245,0.260989,0.916806][0.52025,0.917783,0][-0.782485,0.561477,-1.6492][-0.302245,0.260989,0.916806][0.530098,0.910698,0][-1.01074,0.588469,-1.73212][-0.302186,0.260971,0.916831][0.884286,0.514259,0][-0.813329,0.480876,-1.63643][-0.302186,0.260971,0.916831][0.904047,0.514252,0][-0.782485,0.561477,-1.6492][-0.302186,0.260971,0.916831][0.903039,0.52177,0][-0.813329,0.480876,-1.63643][-0.302245,0.260989,0.916806][0.0213118,0.583656,0][-0.67044,0.480876,-1.58932][-0.302245,0.260989,0.916806][0.00875285,0.583656,0][-0.782485,0.561477,-1.6492][-0.302245,0.260989,0.916806][0.0186009,0.576572,0][-1.01074,0.588469,-1.73212][-0.302186,0.260971,0.916831][0.949147,0.482696,0][-0.813329,0.480876,-1.63643][-0.302186,0.260971,0.916831][0.968908,0.48269,0][-0.782485,0.561477,-1.6492][-0.302186,0.260971,0.916831][0.967901,0.490208,0][-0.954436,0.28207,-1.75544][-0.0923464,-0.587937,0.803618][0.358112,0.928082,0][-0.870166,0.221123,-1.79035][-0.0923464,-0.587937,0.803618][0.359309,0.918515,0][-0.782485,0.400276,-1.6492][-0.0923464,-0.587937,0.803618][0.37869,0.927768,0][-0.954436,0.28207,-1.75544][-0.0923464,-0.587937,0.803618][0.28971,0.979392,0][-0.870166,0.221123,-1.79035][-0.0923464,-0.587937,0.803618][0.290907,0.969824,0][-0.782485,0.400276,-1.6492][-0.0923464,-0.587937,0.803618][0.310288,0.979078,0][-0.782485,0.400276,-1.6492][-0.302246,-0.260988,0.916806][0.974939,0.581777,0][-0.67044,0.480876,-1.58932][-0.302246,-0.260988,0.916806][0.965092,0.574693,0][-0.813329,0.480876,-1.63643][-0.302246,-0.260988,0.916806][0.97765,0.574693,0][-1.01074,0.373283,-1.73212][-0.302186,-0.260969,0.916831][0.63823,0.692711,0][-0.782485,0.400276,-1.6492][-0.302186,-0.260969,0.916831][0.657726,0.687416,0][-0.813329,0.480876,-1.63643][-0.302186,-0.260969,0.916831][0.657858,0.695001,0][-0.782485,0.400276,-1.6492][-0.302246,-0.260988,0.916806][0.749483,0.634149,0][-0.67044,0.480876,-1.58932][-0.302246,-0.260988,0.916806][0.739635,0.627064,0][-0.813329,0.480876,-1.63643][-0.302246,-0.260988,0.916806][0.752193,0.627064,0][-1.01074,0.373283,-1.73212][-0.302186,-0.260969,0.916831][0.804771,0.579988,0][-0.782485,0.400276,-1.6492][-0.302186,-0.260969,0.916831][0.824267,0.574693,0][-0.813329,0.480876,-1.63643][-0.302186,-0.260969,0.916831][0.824399,0.582277,0][-0.58709,0.28207,-1.9076][0.813782,-0.392847,0.428288][0.818534,0.427688,0][-0.530783,0.373283,-1.93092][0.813782,-0.392847,0.428288][0.819821,0.418133,0][-0.633555,0.400276,-1.71089][0.813782,-0.392847,0.428288][0.839114,0.427568,0][-0.58709,0.28207,-1.9076][0.813782,-0.392847,0.428288][0.735432,0.331756,0][-0.530783,0.373283,-1.93092][0.813782,-0.392847,0.428288][0.736719,0.3222,0][-0.633555,0.400276,-1.71089][0.813782,-0.392847,0.428288][0.756012,0.331635,0][-0.70802,0.36689,-1.68005][0.0387543,-0.630084,0.775559][0.720004,0.687416,0][-0.67044,0.480876,-1.58932][0.0387543,-0.630084,0.775559][0.731037,0.694706,0][-0.782485,0.400276,-1.6492][0.0387543,-0.630084,0.775559][0.717814,0.694765,0][-0.870166,0.221123,-1.79035][0.0387889,-0.630039,0.775594][0.981462,0.291113,0][-0.70802,0.36689,-1.68005][0.0387889,-0.630039,0.775594][0.961282,0.298462,0][-0.782485,0.400276,-1.6492][0.0387889,-0.630039,0.775594][0.959987,0.290904,0][-0.70802,0.36689,-1.68005][0.0387543,-0.630084,0.775559][0.689109,0.755436,0][-0.67044,0.480876,-1.58932][0.0387543,-0.630084,0.775559][0.700142,0.762725,0][-0.782485,0.400276,-1.6492][0.0387543,-0.630084,0.775559][0.686919,0.762785,0][-0.870166,0.221123,-1.79035][0.0387889,-0.630039,0.775594][0.889304,0.322409,0][-0.70802,0.36689,-1.68005][0.0387889,-0.630039,0.775594][0.869124,0.329758,0][-0.782485,0.400276,-1.6492][0.0387889,-0.630039,0.775594][0.867829,0.3222,0][-0.511011,0.480876,-1.93911][0.911326,-0.13795,0.387884][0.699246,0.514252,0][-0.602711,0.480876,-1.72367][0.911326,-0.13795,0.387884][0.718182,0.514252,0][-0.530783,0.373283,-1.93092][0.911326,-0.13795,0.387884][0.699965,0.523709,0][-0.511011,0.480876,-1.93911][0.911326,-0.13795,0.387884][0.934323,0.385814,0][-0.602711,0.480876,-1.72367][0.911326,-0.13795,0.387884][0.953259,0.385814,0][-0.530783,0.373283,-1.93092][0.911326,-0.13795,0.387884][0.935043,0.395271,0][-0.633555,0.400276,-1.71089][0.521,-0.630084,0.575806][0.563684,0.8661,0][-0.67044,0.480876,-1.58932][0.521,-0.630084,0.575806][0.55262,0.858856,0][-0.70802,0.36689,-1.68005][0.521,-0.630084,0.575806][0.565844,0.858743,0][-0.67136,0.221123,-1.8727][0.521,-0.630039,0.575856][0.425365,0.990514,0][-0.633555,0.400276,-1.71089][0.521,-0.630039,0.575856][0.445515,0.983082,0][-0.70802,0.36689,-1.68005][0.521,-0.630039,0.575856][0.446841,0.990634,0][-0.633555,0.400276,-1.71089][0.521,-0.630084,0.575806][0.592486,0.816763,0][-0.67044,0.480876,-1.58932][0.521,-0.630084,0.575806][0.581422,0.809519,0][-0.70802,0.36689,-1.68005][0.521,-0.630084,0.575806][0.594646,0.809406,0][-0.67136,0.221123,-1.8727][0.521,-0.630039,0.575856][0.484839,0.725604,0][-0.633555,0.400276,-1.71089][0.521,-0.630039,0.575856][0.504988,0.718171,0][-0.70802,0.36689,-1.68005][0.521,-0.630039,0.575856][0.506315,0.725724,0][-0.67044,0.480876,-1.58932][0.862033,0.260849,0.434577][0.613212,0.273932,0][-0.602711,0.480876,-1.72367][0.862033,0.260849,0.434577][0.600603,0.27792,0][-0.530783,0.588469,-1.93092][0.862033,0.260849,0.434577][0.579427,0.274343,0][-0.633555,0.561476,-1.71089][0.861935,0.261106,0.434618][0.0252505,0.352732,0][-0.67044,0.480876,-1.58932][0.861935,0.261106,0.434618][0.0289305,0.340031,0][-0.530783,0.588469,-1.93092][0.861935,0.261106,0.434618][0.0293408,0.373815,0][-0.67044,0.480876,-1.58932][0.862033,0.260849,0.434577][0.327002,0.697803,0][-0.602711,0.480876,-1.72367][0.862033,0.260849,0.434577][0.314393,0.70179,0][-0.530783,0.588469,-1.93092][0.862033,0.260849,0.434577][0.293217,0.698214,0][-0.633555,0.561476,-1.71089][0.861935,0.261106,0.434618][0.4715,0.1512,0][-0.67044,0.480876,-1.58932][0.861935,0.261106,0.434618][0.47518,0.138498,0][-0.530783,0.588469,-1.93092][0.861935,0.261106,0.434618][0.475591,0.172283,0][-0.602711,0.480876,-1.72367][0.861999,-0.260988,0.43456][0.670484,0.647883,0][-0.67044,0.480876,-1.58932][0.861999,-0.260988,0.43456][0.683708,0.647883,0][-0.633555,0.400276,-1.71089][0.861999,-0.260988,0.43456][0.672707,0.655221,0][-0.530783,0.373283,-1.93092][0.861975,-0.26097,0.434619][0.852275,0.482714,0][-0.602711,0.480876,-1.72367][0.861975,-0.26097,0.434619][0.832159,0.490236,0][-0.633555,0.400276,-1.71089][0.861975,-0.26097,0.434619][0.830798,0.48269,0][-0.602711,0.480876,-1.72367][0.861999,-0.260988,0.43456][0.660671,0.780096,0][-0.67044,0.480876,-1.58932][0.861999,-0.260988,0.43456][0.673895,0.780096,0][-0.633555,0.400276,-1.71089][0.861999,-0.260988,0.43456][0.662894,0.787434,0][-0.530783,0.373283,-1.93092][0.861975,-0.26097,0.434619][0.649694,0.627088,0][-0.602711,0.480876,-1.72367][0.861975,-0.26097,0.434619][0.629578,0.634611,0][-0.633555,0.400276,-1.71089][0.861975,-0.26097,0.434619][0.628217,0.627064,0][-0.590536,0.679682,-1.91592][0.300821,0.40632,-0.862793][0.520302,0.807042,0][-0.534229,0.588469,-1.93924][0.300821,0.40632,-0.862793][0.52025,0.797401,0][-0.683533,0.617397,-1.97768][0.300821,0.40632,-0.862793][0.531428,0.805471,0][-0.590536,0.679682,-1.91592][0.300821,0.40632,-0.862793][0.788214,0.559849,0][-0.534229,0.588469,-1.93924][0.300821,0.40632,-0.862793][0.788161,0.550207,0][-0.683533,0.617397,-1.97768][0.300821,0.40632,-0.862793][0.799339,0.558278,0][-0.774209,0.76203,-1.83984][-0.129171,0.717301,-0.684686][0.77967,0.61204,0][-0.674806,0.740629,-1.88101][-0.129171,0.717301,-0.684686][0.780926,0.60248,0][-0.809662,0.673946,-1.92543][-0.129171,0.717301,-0.684686][0.790905,0.611993,0][-0.774209,0.76203,-1.83984][-0.129171,0.717301,-0.684686][0.52025,0.877071,0][-0.674806,0.740629,-1.88101][-0.129171,0.717301,-0.684686][0.521506,0.867511,0][-0.809662,0.673946,-1.92543][-0.129171,0.717301,-0.684686][0.531485,0.877023,0][-0.774209,0.76203,-1.83984][-0.392808,0.717301,-0.575484][0.620581,0.793623,0][-0.809662,0.673946,-1.92543][-0.392808,0.717301,-0.575484][0.609426,0.792278,0][-0.873612,0.740629,-1.79867][-0.392808,0.717301,-0.575484][0.620438,0.783982,0][-0.774209,0.76203,-1.83984][-0.392808,0.717301,-0.575484][0.563775,0.843726,0][-0.809662,0.673946,-1.92543][-0.392808,0.717301,-0.575484][0.55262,0.842381,0][-0.873612,0.740629,-1.79867][-0.392808,0.717301,-0.575484][0.563632,0.834085,0][-0.957882,0.679682,-1.76376][-0.636378,0.608098,-0.474594][0.620658,0.734776,0][-0.873612,0.740629,-1.79867][-0.636378,0.608098,-0.474594][0.619633,0.744363,0][-0.935791,0.617397,-1.87319][-0.636378,0.608098,-0.474594][0.609426,0.735095,0][-0.957882,0.679682,-1.76376][-0.636378,0.608098,-0.474594][0.531481,0.818305,0][-0.873612,0.740629,-1.79867][-0.636378,0.608098,-0.474594][0.530457,0.827892,0][-0.935791,0.617397,-1.87319][-0.636378,0.608098,-0.474594][0.52025,0.818624,0][-1.01419,0.373283,-1.74044][-0.768178,-0.555571,0.318188][0.92772,0.753996,0][-0.957882,0.28207,-1.76376][-0.768178,-0.555571,0.318188][0.918078,0.753996,0][-0.954436,0.28207,-1.75544][-0.768178,-0.555571,0.318188][0.918078,0.753205,0][-1.01074,0.373283,-1.73212][-0.76818,-0.555571,0.318183][0.722809,0.891262,0][-1.01419,0.373283,-1.74044][-0.76818,-0.555571,0.318183][0.722809,0.892054,0][-0.954436,0.28207,-1.75544][-0.76818,-0.555571,0.318183][0.713167,0.891262,0][-1.01419,0.373283,-1.74044][-0.768178,-0.555571,0.318188][0.951949,0.735385,0][-0.957882,0.28207,-1.76376][-0.768178,-0.555571,0.318188][0.942307,0.735385,0][-0.954436,0.28207,-1.75544][-0.768178,-0.555571,0.318188][0.942307,0.734594,0][-1.01074,0.373283,-1.73212][-0.76818,-0.555571,0.318183][0.467687,0.698825,0][-1.01419,0.373283,-1.74044][-0.76818,-0.555571,0.318183][0.467687,0.699617,0][-0.954436,0.28207,-1.75544][-0.76818,-0.555571,0.318183][0.458045,0.698825,0][-0.957882,0.28207,-1.76376][-0.513281,-0.831469,0.212606][0.816395,0.956927,0][-0.873612,0.221123,-1.79867][-0.513281,-0.831469,0.212606][0.824403,0.956549,0][-0.870166,0.221123,-1.79035][-0.513281,-0.831469,0.212606][0.82444,0.957339,0][-0.954436,0.28207,-1.75544][-0.513281,-0.831469,0.212607][0.895352,0.275745,0][-0.957882,0.28207,-1.76376][-0.513281,-0.831469,0.212607][0.895314,0.274955,0][-0.870166,0.221123,-1.79035][-0.513281,-0.831469,0.212607][0.90336,0.275367,0][-0.957882,0.28207,-1.76376][-0.513281,-0.831469,0.212606][0.841054,0.941118,0][-0.873612,0.221123,-1.79867][-0.513281,-0.831469,0.212606][0.849062,0.94074,0][-0.870166,0.221123,-1.79035][-0.513281,-0.831469,0.212606][0.849099,0.941531,0][-0.954436,0.28207,-1.75544][-0.513281,-0.831469,0.212607][0.791774,0.9574,0][-0.957882,0.28207,-1.76376][-0.513281,-0.831469,0.212607][0.791737,0.95661,0][-0.870166,0.221123,-1.79035][-0.513281,-0.831469,0.212607][0.799782,0.957022,0][-0.873612,0.221123,-1.79867][-0.18024,-0.980785,0.0746571][0.738974,0.97225,0][-0.774209,0.199722,-1.83984][-0.18024,-0.980785,0.0746571][0.74842,0.971805,0][-0.770763,0.199722,-1.83152][-0.18024,-0.980785,0.0746571][0.748457,0.972595,0][-0.870166,0.221123,-1.79035][-0.18024,-0.980785,0.0746573][0.94231,0.669392,0][-0.873612,0.221123,-1.79867][-0.18024,-0.980785,0.0746573][0.942273,0.668602,0][-0.770763,0.199722,-1.83152][-0.18024,-0.980785,0.0746573][0.951757,0.668946,0][-0.873612,0.221123,-1.79867][-0.18024,-0.980785,0.0746571][0.766978,0.963971,0][-0.774209,0.199722,-1.83984][-0.18024,-0.980785,0.0746571][0.776424,0.963525,0][-0.770763,0.199722,-1.83152][-0.18024,-0.980785,0.0746571][0.776461,0.964315,0][-0.870166,0.221123,-1.79035][-0.18024,-0.980785,0.0746573][0.713205,0.939477,0][-0.873612,0.221123,-1.79867][-0.18024,-0.980785,0.0746573][0.713167,0.938686,0][-0.770763,0.199722,-1.83152][-0.18024,-0.980785,0.0746573][0.722651,0.939031,0][-0.774209,0.199722,-1.83984][0.180239,-0.980785,-0.0746584][0.660671,0.962294,0][-0.674806,0.221123,-1.88101][0.180239,-0.980785,-0.0746584][0.670117,0.961848,0][-0.67136,0.221123,-1.8727][0.180239,-0.980785,-0.0746584][0.670154,0.962639,0][-0.770763,0.199722,-1.83152][0.180239,-0.980786,-0.0746566][0.841091,0.909976,0][-0.774209,0.199722,-1.83984][0.180239,-0.980786,-0.0746566][0.841054,0.909185,0][-0.67136,0.221123,-1.8727][0.180239,-0.980786,-0.0746566][0.850537,0.90953,0][-0.774209,0.199722,-1.83984][0.180239,-0.980785,-0.0746584][0.686919,0.937721,0][-0.674806,0.221123,-1.88101][0.180239,-0.980785,-0.0746584][0.696365,0.937275,0][-0.67136,0.221123,-1.8727][0.180239,-0.980785,-0.0746584][0.696402,0.938066,0][-0.770763,0.199722,-1.83152][0.180239,-0.980786,-0.0746566][0.816432,0.925784,0][-0.774209,0.199722,-1.83984][0.180239,-0.980786,-0.0746566][0.816395,0.924993,0][-0.67136,0.221123,-1.8727][0.180239,-0.980786,-0.0746566][0.825879,0.925338,0][-0.674806,0.221123,-1.88101][0.51328,-0.83147,-0.212609][0.914667,0.893755,0][-0.590536,0.28207,-1.91592][0.51328,-0.83147,-0.212609][0.922675,0.893377,0][-0.58709,0.28207,-1.9076][0.51328,-0.83147,-0.212609][0.922712,0.894168,0][-0.67136,0.221123,-1.8727][0.51328,-0.83147,-0.212607][0.713205,0.971027,0][-0.674806,0.221123,-1.88101][0.51328,-0.83147,-0.212607][0.713167,0.970237,0][-0.58709,0.28207,-1.9076][0.51328,-0.83147,-0.212607][0.721213,0.970649,0][-0.674806,0.221123,-1.88101][0.51328,-0.83147,-0.212609][0.865554,0.925311,0][-0.590536,0.28207,-1.91592][0.51328,-0.83147,-0.212609][0.873562,0.924933,0][-0.58709,0.28207,-1.9076][0.51328,-0.83147,-0.212609][0.873599,0.925724,0][-0.67136,0.221123,-1.8727][0.51328,-0.83147,-0.212607][0.686956,0.969616,0][-0.674806,0.221123,-1.88101][0.51328,-0.83147,-0.212607][0.686919,0.968826,0][-0.58709,0.28207,-1.9076][0.51328,-0.83147,-0.212607][0.694964,0.969238,0][-0.590536,0.28207,-1.91592][0.768178,-0.555571,-0.318187][0.95991,0.771551,0][-0.534229,0.373283,-1.93924][0.768178,-0.555571,-0.318187][0.969552,0.771551,0][-0.530783,0.373283,-1.93092][0.768178,-0.555571,-0.318187][0.969552,0.772343,0][-0.58709,0.28207,-1.9076][0.768177,-0.55557,-0.318191][0.897562,0.829249,0][-0.590536,0.28207,-1.91592][0.768177,-0.55557,-0.318191][0.897562,0.828458,0][-0.530783,0.373283,-1.93092][0.768177,-0.55557,-0.318191][0.907204,0.829249,0][-0.590536,0.28207,-1.91592][0.768178,-0.555571,-0.318187][0.954679,0.647883,0][-0.534229,0.373283,-1.93924][0.768178,-0.555571,-0.318187][0.96432,0.647883,0][-0.530783,0.373283,-1.93092][0.768178,-0.555571,-0.318187][0.96432,0.648674,0][-0.58709,0.28207,-1.9076][0.768177,-0.55557,-0.318191][0.892956,0.669393,0][-0.590536,0.28207,-1.91592][0.768177,-0.55557,-0.318191][0.892956,0.668602,0][-0.530783,0.373283,-1.93092][0.768177,-0.55557,-0.318191][0.902598,0.669393,0][-0.534229,0.373283,-1.93924][0.906126,-0.19509,-0.375333][0.791737,0.893377,0][-0.514456,0.480876,-1.94743][0.906126,-0.19509,-0.375333][0.801378,0.893377,0][-0.511011,0.480876,-1.93911][0.906126,-0.19509,-0.375333][0.801378,0.894169,0][-0.530783,0.373283,-1.93092][0.906129,-0.19509,-0.375328][0.968908,0.848224,0][-0.534229,0.373283,-1.93924][0.906129,-0.19509,-0.375328][0.968908,0.847493,0][-0.511011,0.480876,-1.93911][0.906129,-0.19509,-0.375328][0.978365,0.847504,0][-0.534229,0.373283,-1.93924][0.906126,-0.19509,-0.375333][0.893961,0.809295,0][-0.514456,0.480876,-1.94743][0.906126,-0.19509,-0.375333][0.903603,0.809295,0][-0.511011,0.480876,-1.93911][0.906126,-0.19509,-0.375333][0.903603,0.810086,0][-0.530783,0.373283,-1.93092][0.906129,-0.19509,-0.375328][0.974156,0.793099,0][-0.534229,0.373283,-1.93924][0.906129,-0.19509,-0.375328][0.974156,0.792367,0][-0.511011,0.480876,-1.93911][0.906129,-0.19509,-0.375328][0.983612,0.792379,0][-0.514456,0.480876,-1.94743][0.906127,0.19509,-0.375332][0.816395,0.893377,0][-0.534229,0.588469,-1.93924][0.906127,0.19509,-0.375332][0.826037,0.893377,0][-0.530783,0.588469,-1.93092][0.906127,0.19509,-0.375332][0.826037,0.894169,0][-0.511011,0.480876,-1.93911][0.906126,0.19509,-0.375333][0.875699,0.793159,0][-0.514456,0.480876,-1.94743][0.906126,0.19509,-0.375333][0.875699,0.792367,0][-0.530783,0.588469,-1.93092][0.906126,0.19509,-0.375333][0.885341,0.793159,0][-0.514456,0.480876,-1.94743][0.906127,0.19509,-0.375332][0.766978,0.931909,0][-0.534229,0.588469,-1.93924][0.906127,0.19509,-0.375332][0.77662,0.931909,0][-0.530783,0.588469,-1.93092][0.906127,0.19509,-0.375332][0.77662,0.9327,0][-0.511011,0.480876,-1.93911][0.906126,0.19509,-0.375333][0.870451,0.848284,0][-0.514456,0.480876,-1.94743][0.906126,0.19509,-0.375333][0.870451,0.847493,0][-0.530783,0.588469,-1.93092][0.906126,0.19509,-0.375333][0.880093,0.848284,0][-0.514456,0.480876,-1.94743][0.401711,-0.142679,-0.904584][0.671906,0.759279,0][-0.534229,0.373283,-1.93924][0.401711,-0.142679,-0.904584][0.67061,0.768833,0][-0.631289,0.480876,-1.99932][0.401711,-0.142679,-0.904584][0.660671,0.759279,0][-0.514456,0.480876,-1.94743][0.401711,-0.142679,-0.904584][0.706551,0.687416,0][-0.534229,0.373283,-1.93924][0.401711,-0.142679,-0.904584][0.705255,0.696971,0][-0.631289,0.480876,-1.99932][0.401711,-0.142679,-0.904584][0.695315,0.687416,0][-0.514456,0.480876,-1.94743][0.40171,0.142681,-0.904583][0.821837,0.559761,0][-0.631289,0.480876,-1.99932][0.40171,0.142681,-0.904583][0.810602,0.559761,0][-0.534229,0.588469,-1.93924][0.40171,0.142681,-0.904583][0.820541,0.550207,0][-0.514456,0.480876,-1.94743][0.40171,0.142681,-0.904583][0.993222,0.126271,0][-0.631289,0.480876,-1.99932][0.40171,0.142681,-0.904583][0.981986,0.126271,0][-0.534229,0.588469,-1.93924][0.40171,0.142681,-0.904583][0.991926,0.116717,0][-0.590536,0.679682,-1.91592][0.114402,0.608098,-0.785576][0.982379,0.144768,0][-0.683533,0.617397,-1.97768][0.114402,0.608098,-0.785576][0.99359,0.145527,0][-0.674806,0.740629,-1.88101][0.114402,0.608098,-0.785576][0.983027,0.154388,0][-0.590536,0.679682,-1.91592][0.114402,0.608098,-0.785576][0.981986,0.0958342,0][-0.683533,0.617397,-1.97768][0.114402,0.608098,-0.785576][0.993196,0.0965935,0][-0.674806,0.740629,-1.88101][0.114402,0.608098,-0.785576][0.982634,0.105454,0][-0.809662,0.673946,-1.92543][-0.0475394,0.618563,-0.784296][0.52025,0.748182,0][-0.674806,0.740629,-1.88101][-0.0475394,0.618563,-0.784296][0.534037,0.748232,0][-0.683533,0.617397,-1.97768][-0.0475394,0.618563,-0.784296][0.526326,0.759661,0][-0.770034,0.614677,-1.97455][-0.0478163,0.618197,-0.784568][0.588022,0.914111,0][-0.809662,0.673946,-1.92543][-0.0478163,0.618197,-0.784568][0.581422,0.910323,0][-0.683533,0.617397,-1.97768][-0.0478163,0.618197,-0.784568][0.594405,0.909965,0][-0.809662,0.673946,-1.92543][-0.0475394,0.618563,-0.784296][0.728467,0.550207,0][-0.674806,0.740629,-1.88101][-0.0475394,0.618563,-0.784296][0.742254,0.550257,0][-0.683533,0.617397,-1.97768][-0.0475394,0.618563,-0.784296][0.734543,0.561686,0][-0.770034,0.614677,-1.97455][-0.0478163,0.618197,-0.784568][0.745573,0.813441,0][-0.809662,0.673946,-1.92543][-0.0478163,0.618197,-0.784568][0.738974,0.809653,0][-0.683533,0.617397,-1.97768][-0.0478163,0.618197,-0.784568][0.751957,0.809295,0][-0.957882,0.679682,-1.76376][-0.822798,0.406319,-0.397376][0.581422,0.760146,0][-0.935791,0.617397,-1.87319][-0.822798,0.406319,-0.397376][0.592654,0.760442,0][-1.01419,0.588469,-1.74044][-0.822798,0.406319,-0.397376][0.582466,0.769732,0][-0.957882,0.679682,-1.76376][-0.822798,0.406319,-0.397376][0.55262,0.809483,0][-0.935791,0.617397,-1.87319][-0.822798,0.406319,-0.397376][0.563852,0.809779,0][-1.01419,0.588469,-1.74044][-0.822798,0.406319,-0.397376][0.553664,0.819068,0][-0.935791,0.617397,-1.87319][-0.520965,0.618563,-0.588197][0.59441,0.687416,0][-0.873612,0.740629,-1.79867][-0.520965,0.618563,-0.588197][0.588038,0.699643,0][-0.809662,0.673946,-1.92543][-0.520965,0.618563,-0.588197][0.581422,0.687546,0][-0.872437,0.614666,-1.93213][-0.520962,0.618196,-0.588586][0.977646,0.60248,0][-0.935791,0.617397,-1.87319][-0.520962,0.618196,-0.588586][0.984177,0.606385,0][-0.809662,0.673946,-1.92543][-0.520962,0.618196,-0.588586][0.97119,0.606512,0][-0.935791,0.617397,-1.87319][-0.520965,0.618563,-0.588197][0.760951,0.574693,0][-0.873612,0.740629,-1.79867][-0.520965,0.618563,-0.588197][0.754579,0.586919,0][-0.809662,0.673946,-1.92543][-0.520965,0.618563,-0.588197][0.747964,0.574823,0][-0.872437,0.614666,-1.93213][-0.520962,0.618196,-0.588586][0.872841,0.687416,0][-0.935791,0.617397,-1.87319][-0.520962,0.618196,-0.588586][0.879373,0.691321,0][-0.809662,0.673946,-1.92543][-0.520962,0.618196,-0.588586][0.866385,0.691449,0][-1.03396,0.480876,-1.73225][-0.923689,-0.14268,-0.355586][0.63823,0.730922,0][-0.988036,0.480876,-1.85155][-0.923689,-0.14268,-0.355586][0.648716,0.730922,0][-1.01419,0.373283,-1.74044][-0.923689,-0.14268,-0.355586][0.63895,0.740378,0][-1.03396,0.480876,-1.73225][-0.923689,-0.14268,-0.355586][0.983925,0.48269,0][-0.988036,0.480876,-1.85155][-0.923689,-0.14268,-0.355586][0.99441,0.48269,0][-1.01419,0.373283,-1.74044][-0.923689,-0.14268,-0.355586][0.984644,0.492147,0][-1.03396,0.480876,-1.73225][-0.923689,0.14268,-0.355586][0.609426,0.836716,0][-1.01419,0.588469,-1.74044][-0.923689,0.14268,-0.355586][0.610146,0.827259,0][-0.988036,0.480876,-1.85155][-0.923689,0.14268,-0.355586][0.619912,0.836716,0][-1.03396,0.480876,-1.73225][-0.923689,0.14268,-0.355586][0.830408,0.611937,0][-1.01419,0.588469,-1.74044][-0.923689,0.14268,-0.355586][0.831128,0.60248,0][-0.988036,0.480876,-1.85155][-0.923689,0.14268,-0.355586][0.840893,0.611937,0][-0.988036,0.480876,-1.85155][-0.855729,0.256217,-0.449533][0.861604,0.514252,0][-1.01419,0.588469,-1.74044][-0.855729,0.256217,-0.449533][0.869269,0.525712,0][-0.935791,0.617397,-1.87319][-0.855729,0.256217,-0.449533][0.855482,0.525707,0][-0.94484,0.536283,-1.90214][-0.855527,0.256065,-0.450004][0.773501,0.832476,0][-0.988036,0.480876,-1.85155][-0.855527,0.256065,-0.450004][0.766978,0.828558,0][-0.935791,0.617397,-1.87319][-0.855527,0.256065,-0.450004][0.779965,0.828458,0][-0.988036,0.480876,-1.85155][-0.855729,0.256217,-0.449533][0.926465,0.48269,0][-1.01419,0.588469,-1.74044][-0.855729,0.256217,-0.449533][0.93413,0.49415,0][-0.935791,0.617397,-1.87319][-0.855729,0.256217,-0.449533][0.920343,0.494144,0][-0.94484,0.536283,-1.90214][-0.855527,0.256065,-0.450004][0.900912,0.691435,0][-0.988036,0.480876,-1.85155][-0.855527,0.256065,-0.450004][0.894389,0.687517,0][-0.935791,0.617397,-1.87319][-0.855527,0.256065,-0.450004][0.907377,0.687416,0][-0.957882,0.28207,-1.76376][-0.822799,-0.406319,-0.397376][0.768354,0.60248,0][-1.01419,0.373283,-1.74044][-0.822799,-0.406319,-0.397376][0.768407,0.612122,0][-0.935791,0.344355,-1.87319][-0.822799,-0.406319,-0.397376][0.757229,0.604052,0][-0.957882,0.28207,-1.76376][-0.822799,-0.406319,-0.397376][0.495964,0.862577,0][-1.01419,0.373283,-1.74044][-0.822799,-0.406319,-0.397376][0.496017,0.872219,0][-0.935791,0.344355,-1.87319][-0.822799,-0.406319,-0.397376][0.484839,0.864149,0][-0.957882,0.28207,-1.76376][-0.636379,-0.608098,-0.474593][0.620636,0.723513,0][-0.935791,0.344355,-1.87319][-0.636379,-0.608098,-0.474593][0.609426,0.722754,0][-0.873612,0.221123,-1.79867][-0.636378,-0.608098,-0.474593][0.619989,0.713893,0][-0.957882,0.28207,-1.76376][-0.636379,-0.608098,-0.474593][0.56383,0.773616,0][-0.935791,0.344355,-1.87319][-0.636379,-0.608098,-0.474593][0.55262,0.772857,0][-0.873612,0.221123,-1.79867][-0.636378,-0.608098,-0.474593][0.563183,0.763996,0][-0.774209,0.199722,-1.83984][-0.392808,-0.717301,-0.575483][0.586783,0.848745,0][-0.873612,0.221123,-1.79867][-0.392808,-0.717301,-0.575483][0.593901,0.85497,0][-0.809662,0.287806,-1.92543][-0.392808,-0.717301,-0.575483][0.581422,0.854874,0][-0.774209,0.199722,-1.83984][-0.392808,-0.717301,-0.575483][0.557981,0.898082,0][-0.873612,0.221123,-1.79867][-0.392808,-0.717301,-0.575483][0.565099,0.904307,0][-0.809662,0.287806,-1.92543][-0.392808,-0.717301,-0.575483][0.55262,0.904211,0][-0.590536,0.28207,-1.91592][0.1144,-0.608098,-0.785576][0.941504,0.52384,0][-0.674806,0.221123,-1.88101][0.1144,-0.608098,-0.785576][0.942528,0.514252,0][-0.683533,0.344355,-1.97768][0.1144,-0.608098,-0.785576][0.952735,0.52352,0][-0.590536,0.28207,-1.91592][0.1144,-0.608098,-0.785576][0.484839,0.893069,0][-0.674806,0.221123,-1.88101][0.1144,-0.608098,-0.785576][0.485863,0.883482,0][-0.683533,0.344355,-1.97768][0.1144,-0.608098,-0.785576][0.49607,0.89275,0][-0.774209,0.199722,-1.83984][-0.129171,-0.717302,-0.684685][0.248534,0.704036,0][-0.809662,0.287806,-1.92543][-0.129171,-0.717302,-0.684685][0.243294,0.697803,0][-0.674806,0.221123,-1.88101][-0.129171,-0.717302,-0.684685][0.255773,0.697951,0][-0.774209,0.199722,-1.83984][-0.129171,-0.717302,-0.684685][0.728372,0.133363,0][-0.809662,0.287806,-1.92543][-0.129171,-0.717302,-0.684685][0.723133,0.12713,0][-0.674806,0.221123,-1.88101][-0.129171,-0.717302,-0.684685][0.735611,0.127278,0][-0.590536,0.28207,-1.91592][0.30082,-0.406319,-0.862793][0.899336,0.584278,0][-0.683533,0.344355,-1.97768][0.30082,-0.406319,-0.862793][0.888104,0.583982,0][-0.534229,0.373283,-1.93924][0.30082,-0.406319,-0.862793][0.898292,0.574693,0][-0.590536,0.28207,-1.91592][0.30082,-0.406319,-0.862793][0.69815,0.719603,0][-0.683533,0.344355,-1.97768][0.30082,-0.406319,-0.862793][0.686919,0.719306,0][-0.534229,0.373283,-1.93924][0.30082,-0.406319,-0.862793][0.697107,0.710017,0][-0.697608,0.536283,-2.00455][0.287196,0.255951,-0.923043][0.538536,0.0129642,0][-0.683533,0.617397,-1.97768][0.287196,0.255951,-0.923043][0.542311,0.00635468,0][-0.534229,0.588469,-1.93924][0.287196,0.255951,-0.923043][0.55466,0.0124865,0][-0.631289,0.480876,-1.99932][0.28702,0.256409,-0.92297][0.410998,0.496716,0][-0.697608,0.536283,-2.00455][0.28702,0.256409,-0.92297][0.407339,0.490044,0][-0.534229,0.588469,-1.93924][0.28702,0.256409,-0.92297][0.423451,0.4908,0][-0.697608,0.536283,-2.00455][0.287196,0.255951,-0.923043][0.656703,0.0129642,0][-0.683533,0.617397,-1.97768][0.287196,0.255951,-0.923043][0.660478,0.00635468,0][-0.534229,0.588469,-1.93924][0.287196,0.255951,-0.923043][0.672826,0.0124865,0][-0.631289,0.480876,-1.99932][0.28702,0.256409,-0.92297][0.292831,0.496716,0][-0.697608,0.536283,-2.00455][0.28702,0.256409,-0.92297][0.289172,0.490044,0][-0.534229,0.588469,-1.93924][0.28702,0.256409,-0.92297][0.305285,0.4908,0][-0.872437,0.614666,-1.93213][-0.340989,0.454117,-0.823106][0.771815,0.67445,0][-0.809662,0.673946,-1.92543][-0.340989,0.454117,-0.823106][0.776687,0.668602,0][-0.770034,0.614677,-1.97455][-0.340989,0.454117,-0.823106][0.781557,0.674449,0][-0.872437,0.614666,-1.93213][-0.340989,0.454117,-0.823106][0.255369,0.752585,0][-0.809662,0.673946,-1.92543][-0.340989,0.454117,-0.823106][0.260241,0.746737,0][-0.770034,0.614677,-1.97455][-0.340989,0.454117,-0.823106][0.265111,0.752584,0][-0.770034,0.614677,-1.97455][-0.0443114,0.321084,-0.946013][0.713167,0.82006,0][-0.683533,0.617397,-1.97768][-0.0443114,0.321084,-0.946013][0.718043,0.814216,0][-0.697608,0.536283,-2.00455][-0.0443114,0.321084,-0.946013][0.722911,0.820066,0][-0.770034,0.614677,-1.97455][-0.0443114,0.321084,-0.946013][0.686919,0.818649,0][-0.683533,0.617397,-1.97768][-0.0443114,0.321084,-0.946013][0.691794,0.812804,0][-0.697608,0.536283,-2.00455][-0.0443114,0.321084,-0.946013][0.696663,0.818655,0][-0.94484,0.536283,-1.90214][-0.637641,0.321077,-0.700231][0.768384,0.875869,0][-0.935791,0.617397,-1.87319][-0.637641,0.321077,-0.700231][0.766978,0.868388,0][-0.872437,0.614666,-1.93213][-0.637641,0.321077,-0.700231][0.774587,0.868357,0][-0.94484,0.536283,-1.90214][-0.637641,0.321077,-0.700231][0.639636,0.793081,0][-0.935791,0.617397,-1.87319][-0.637641,0.321077,-0.700231][0.63823,0.7856,0][-0.872437,0.614666,-1.93213][-0.637641,0.321077,-0.700231][0.64584,0.78557,0][-0.935791,0.344355,-1.87319][-0.85573,-0.256217,-0.449533][0.725463,0.574693,0][-1.01419,0.373283,-1.74044][-0.85573,-0.256217,-0.449533][0.732947,0.586272,0][-0.988036,0.480876,-1.85155][-0.85573,-0.256217,-0.449533][0.719162,0.58605,0][-0.94483,0.425444,-1.90214][-0.855529,-0.256065,-0.450002][0.616034,0.894927,0][-0.935791,0.344355,-1.87319][-0.855529,-0.256065,-0.450002][0.609426,0.891153,0][-0.988036,0.480876,-1.85155][-0.855529,-0.256065,-0.450002][0.622409,0.890768,0][-0.935791,0.344355,-1.87319][-0.85573,-0.256217,-0.449533][0.804977,0.514252,0][-1.01419,0.373283,-1.74044][-0.85573,-0.256217,-0.449533][0.812461,0.525831,0][-0.988036,0.480876,-1.85155][-0.85573,-0.256217,-0.449533][0.798676,0.525609,0][-0.94483,0.425444,-1.90214][-0.855529,-0.256065,-0.450002][0.559228,0.946643,0][-0.935791,0.344355,-1.87319][-0.855529,-0.256065,-0.450002][0.55262,0.942869,0][-0.988036,0.480876,-1.85155][-0.855529,-0.256065,-0.450002][0.565603,0.942483,0][-0.94483,0.425444,-1.90214][-0.760498,-4.20981e-005,-0.649341][0.713167,0.840931,0][-0.988036,0.480876,-1.85155][-0.760498,-4.20981e-005,-0.649341][0.718039,0.835083,0][-0.94484,0.536283,-1.90214][-0.760498,-4.20981e-005,-0.649341][0.722909,0.84093,0][-0.94483,0.425444,-1.90214][-0.760498,-4.20981e-005,-0.649341][0.766978,0.853341,0][-0.988036,0.480876,-1.85155][-0.760498,-4.20981e-005,-0.649341][0.77185,0.847493,0][-0.94484,0.536283,-1.90214][-0.760498,-4.20981e-005,-0.649341][0.77672,0.85334,0][-0.809662,0.287806,-1.92543][-0.520966,-0.618563,-0.588196][0.676544,0.613959,0][-0.873612,0.221123,-1.79867][-0.520966,-0.618563,-0.588196][0.662757,0.61391,0][-0.935791,0.344355,-1.87319][-0.520966,-0.618563,-0.588196][0.670468,0.60248,0][-0.872414,0.347075,-1.93214][-0.520963,-0.618196,-0.588584][0.949573,0.60248,0][-0.809662,0.287806,-1.92543][-0.520963,-0.618196,-0.588584][0.956173,0.606268,0][-0.935791,0.344355,-1.87319][-0.520963,-0.618196,-0.588584][0.94319,0.606626,0][-0.809662,0.287806,-1.92543][-0.520966,-0.618563,-0.588196][0.471891,0.99456,0][-0.873612,0.221123,-1.79867][-0.520966,-0.618563,-0.588196][0.458104,0.994511,0][-0.935791,0.344355,-1.87319][-0.520966,-0.618563,-0.588196][0.465815,0.983082,0][-0.872414,0.347075,-1.93214][-0.520963,-0.618196,-0.588584][0.844769,0.687416,0][-0.809662,0.287806,-1.92543][-0.520963,-0.618196,-0.588584][0.851369,0.691205,0][-0.935791,0.344355,-1.87319][-0.520963,-0.618196,-0.588584][0.838386,0.691563,0][-0.683533,0.344355,-1.97768][-0.047539,-0.618563,-0.784296][0.892339,0.494916,0][-0.674806,0.221123,-1.88101][-0.047539,-0.618563,-0.784296][0.898711,0.48269,0][-0.809662,0.287806,-1.92543][-0.047539,-0.618563,-0.784296][0.905326,0.494786,0][-0.770011,0.347086,-1.97456][-0.0478165,-0.618196,-0.784569][0.883677,0.714049,0][-0.683533,0.344355,-1.97768][-0.0478165,-0.618196,-0.784569][0.877146,0.710145,0][-0.809662,0.287806,-1.92543][-0.0478165,-0.618196,-0.784569][0.890133,0.710017,0][-0.683533,0.344355,-1.97768][-0.047539,-0.618563,-0.784296][0.827478,0.526479,0][-0.674806,0.221123,-1.88101][-0.047539,-0.618563,-0.784296][0.83385,0.514252,0][-0.809662,0.287806,-1.92543][-0.047539,-0.618563,-0.784296][0.840465,0.526349,0][-0.770011,0.347086,-1.97456][-0.0478165,-0.618196,-0.784569][0.812837,0.775584,0][-0.683533,0.344355,-1.97768][-0.0478165,-0.618196,-0.784569][0.806306,0.771679,0][-0.809662,0.287806,-1.92543][-0.0478165,-0.618196,-0.784569][0.819293,0.771551,0][-0.631289,0.480876,-1.99932][0.287225,-0.256218,-0.92296][0.492503,0.825026,0][-0.534229,0.373283,-1.93924][0.287225,-0.256218,-0.92296][0.484839,0.813566,0][-0.683533,0.344355,-1.97768][0.287225,-0.256218,-0.92296][0.498626,0.813572,0][-0.697608,0.425469,-2.00455][0.286746,-0.256065,-0.923151][0.559085,0.980822,0][-0.631289,0.480876,-1.99932][0.286746,-0.256065,-0.923151][0.565608,0.98474,0][-0.683533,0.344355,-1.97768][0.286746,-0.256065,-0.923151][0.55262,0.98484,0][-0.631289,0.480876,-1.99932][0.287225,-0.256218,-0.92296][0.527914,0.782384,0][-0.534229,0.373283,-1.93924][0.287225,-0.256218,-0.92296][0.52025,0.770924,0][-0.683533,0.344355,-1.97768][0.287225,-0.256218,-0.92296][0.534037,0.770929,0][-0.697608,0.425469,-2.00455][0.286746,-0.256065,-0.923151][0.615891,0.929107,0][-0.631289,0.480876,-1.99932][0.286746,-0.256065,-0.923151][0.622414,0.933025,0][-0.683533,0.344355,-1.97768][0.286746,-0.256065,-0.923151][0.609426,0.933125,0][-0.697608,0.536283,-2.00455][0.0786305,0,-0.996904][0.619166,0.969009,0][-0.631289,0.480876,-1.99932][0.0786305,0,-0.996904][0.614296,0.974838,0][-0.697608,0.425469,-2.00455][0.0786305,0,-0.996904][0.609426,0.969009,0][-0.697608,0.536283,-2.00455][0.0786305,0,-0.996904][0.967652,0.710017,0][-0.631289,0.480876,-1.99932][0.0786305,0,-0.996904][0.962782,0.715846,0][-0.697608,0.425469,-2.00455][0.0786305,0,-0.996904][0.957912,0.710017,0][-0.697608,0.425469,-2.00455][-0.0442558,-0.321077,-0.946019][0.953356,0.687416,0][-0.683533,0.344355,-1.97768][-0.0442558,-0.321077,-0.946019][0.954762,0.694897,0][-0.770011,0.347086,-1.97456][-0.0442558,-0.321077,-0.946019][0.947152,0.694928,0][-0.697608,0.425469,-2.00455][-0.0442558,-0.321077,-0.946019][0.799023,0.668602,0][-0.683533,0.344355,-1.97768][-0.0442558,-0.321077,-0.946019][0.800429,0.676082,0][-0.770011,0.347086,-1.97456][-0.0442558,-0.321077,-0.946019][0.792819,0.676113,0][-0.770011,0.347086,-1.97456][-0.340909,-0.454116,-0.82314][0.844975,0.734594,0][-0.809662,0.287806,-1.92543][-0.340909,-0.454116,-0.82314][0.840103,0.740442,0][-0.872414,0.347075,-1.93214][-0.340909,-0.454116,-0.82314][0.835233,0.734595,0][-0.770011,0.347086,-1.97456][-0.340909,-0.454116,-0.82314][0.820746,0.753205,0][-0.809662,0.287806,-1.92543][-0.340909,-0.454116,-0.82314][0.815874,0.759053,0][-0.872414,0.347075,-1.93214][-0.340909,-0.454116,-0.82314][0.811004,0.753206,0][-0.872414,0.347075,-1.93214][-0.637586,-0.321139,-0.700252][0.932136,0.687422,0][-0.935791,0.344355,-1.87319][-0.637586,-0.321139,-0.700252][0.92726,0.693267,0][-0.94483,0.425444,-1.90214][-0.637586,-0.321139,-0.700252][0.922394,0.687416,0][-0.872414,0.347075,-1.93214][-0.637586,-0.321139,-0.700252][0.942896,0.710023,0][-0.935791,0.344355,-1.87319][-0.637586,-0.321139,-0.700252][0.93802,0.715867,0][-0.94483,0.425444,-1.90214][-0.637586,-0.321139,-0.700252][0.933154,0.710017,0][-0.770011,0.347086,-1.97456][-0.382684,2.17526e-006,-0.923879][0.86069,0.226021,0][-0.872414,0.347075,-1.93214][-0.382684,2.17526e-006,-0.923879][0.869577,0.230011,0][-0.697608,0.425469,-2.00455][-0.382684,2.17526e-006,-0.923879][0.851584,0.229483,0][-0.770011,0.347086,-1.97456][-0.382684,2.17526e-006,-0.923879][0.771131,0.274955,0][-0.872414,0.347075,-1.93214][-0.382684,2.17526e-006,-0.923879][0.780018,0.278945,0][-0.697608,0.425469,-2.00455][-0.382684,2.17526e-006,-0.923879][0.762025,0.278417,0][-0.697608,0.425469,-2.00455][-0.382683,-3.32055e-007,-0.92388][0.856566,0.3222,0][-0.872414,0.347075,-1.93214][-0.382683,-3.32055e-007,-0.92388][0.839936,0.32909,0][-0.94483,0.425444,-1.90214][-0.382683,-3.32055e-007,-0.92388][0.833047,0.322202,0][-0.697608,0.425469,-2.00455][-0.382683,-3.32055e-007,-0.92388][0.939668,0.418133,0][-0.872414,0.347075,-1.93214][-0.382683,-3.32055e-007,-0.92388][0.923038,0.425023,0][-0.94483,0.425444,-1.90214][-0.382683,-3.32055e-007,-0.92388][0.916149,0.418135,0][-0.697608,0.425469,-2.00455][-0.382683,-4.11672e-007,-0.92388][0.123108,0.993459,0][-0.94483,0.425444,-1.90214][-0.382683,-4.11672e-007,-0.92388][0.0995884,0.993461,0][-0.697608,0.536283,-2.00455][-0.382683,-4.11672e-007,-0.92388][0.123108,0.983719,0][-0.697608,0.425469,-2.00455][-0.382683,-4.11672e-007,-0.92388][0.0285193,0.994895,0][-0.94483,0.425444,-1.90214][-0.382683,-4.11672e-007,-0.92388][0.005,0.994897,0][-0.697608,0.536283,-2.00455][-0.382683,-4.11672e-007,-0.92388][0.0285193,0.985155,0][-0.697608,0.536283,-2.00455][-0.382683,6.51666e-007,-0.92388][0.201734,0.143679,0][-0.94483,0.425444,-1.90214][-0.382683,6.51666e-007,-0.92388][0.225253,0.133937,0][-0.94484,0.536283,-1.90214][-0.382683,6.51666e-007,-0.92388][0.225254,0.143679,0][-0.697608,0.536283,-2.00455][-0.382683,6.51666e-007,-0.92388][0.340887,0.293165,0][-0.94483,0.425444,-1.90214][-0.382683,6.51666e-007,-0.92388][0.350629,0.316685,0][-0.94484,0.536283,-1.90214][-0.382683,6.51666e-007,-0.92388][0.340887,0.316686,0][-0.697608,0.536283,-2.00455][-0.382683,-1.25585e-006,-0.92388][0.235944,0.993599,0][-0.94484,0.536283,-1.90214][-0.382683,-1.25585e-006,-0.92388][0.212423,0.993599,0][-0.770034,0.614677,-1.97455][-0.382683,-1.25585e-006,-0.92388][0.229053,0.986708,0][-0.697608,0.536283,-2.00455][-0.382683,-1.25585e-006,-0.92388][0.584217,0.633955,0][-0.94484,0.536283,-1.90214][-0.382683,-1.25585e-006,-0.92388][0.560697,0.633955,0][-0.770034,0.614677,-1.97455][-0.382683,-1.25585e-006,-0.92388][0.577327,0.627064,0][-0.770034,0.614677,-1.97455][-0.382684,2.08993e-006,-0.923879][0.384513,0.698825,0][-0.94484,0.536283,-1.90214][-0.382684,2.08993e-006,-0.923879][0.402506,0.699353,0][-0.872437,0.614666,-1.93213][-0.382684,2.08993e-006,-0.923879][0.3934,0.702816,0][-0.770034,0.614677,-1.97455][-0.382684,2.08993e-006,-0.923879][0.377641,0.747759,0][-0.94484,0.536283,-1.90214][-0.382684,2.08993e-006,-0.923879][0.395634,0.748287,0][-0.872437,0.614666,-1.93213][-0.382684,2.08993e-006,-0.923879][0.386528,0.75175,0][0.532863,0.588469,-1.93924][-0.768177,0.555571,-0.31819][0.791737,0.925785,0][0.585725,0.679682,-1.9076][-0.768177,0.555571,-0.31819][0.801378,0.924993,0][0.58917,0.679682,-1.91592][-0.768177,0.555571,-0.31819][0.801378,0.925785,0][0.529417,0.588469,-1.93092][-0.768179,0.555571,-0.318186][0.660671,0.930232,0][0.585725,0.679682,-1.9076][-0.768179,0.555571,-0.318186][0.670313,0.930232,0][0.532863,0.588469,-1.93924][-0.768179,0.555571,-0.318186][0.660671,0.931024,0][0.532863,0.588469,-1.93924][-0.768177,0.555571,-0.31819][0.925016,0.793159,0][0.585725,0.679682,-1.9076][-0.768177,0.555571,-0.31819][0.934658,0.792367,0][0.58917,0.679682,-1.91592][-0.768177,0.555571,-0.31819][0.934658,0.793159,0][0.529417,0.588469,-1.93092][-0.768179,0.555571,-0.318186][0.738974,0.940188,0][0.585725,0.679682,-1.9076][-0.768179,0.555571,-0.318186][0.748616,0.940188,0][0.532863,0.588469,-1.93924][-0.768179,0.555571,-0.318186][0.738974,0.94098,0][0.58917,0.679682,-1.91592][-0.513282,0.831469,-0.212606][0.85104,0.793159,0][0.669995,0.740629,-1.8727][-0.513282,0.831469,-0.212606][0.860682,0.792367,0][0.67344,0.740629,-1.88101][-0.513282,0.831469,-0.212606][0.860682,0.793159,0][0.585725,0.679682,-1.9076][-0.51328,0.831469,-0.212608][0.686919,0.921467,0][0.669995,0.740629,-1.8727][-0.51328,0.831469,-0.212608][0.696561,0.921467,0][0.58917,0.679682,-1.91592][-0.51328,0.831469,-0.212608][0.686919,0.922259,0][0.58917,0.679682,-1.91592][-0.513282,0.831469,-0.212606][0.845793,0.848284,0][0.669995,0.740629,-1.8727][-0.513282,0.831469,-0.212606][0.855435,0.847493,0][0.67344,0.740629,-1.88101][-0.513282,0.831469,-0.212606][0.855435,0.848284,0][0.585725,0.679682,-1.9076][-0.51328,0.831469,-0.212608][0.660671,0.94604,0][0.669995,0.740629,-1.8727][-0.51328,0.831469,-0.212608][0.670313,0.94604,0][0.58917,0.679682,-1.91592][-0.51328,0.831469,-0.212608][0.660671,0.946832,0][0.67344,0.740629,-1.88101][-0.18024,0.980785,-0.074658][0.738974,0.956788,0][0.769398,0.76203,-1.83152][-0.18024,0.980785,-0.074658][0.748616,0.955996,0][0.772843,0.76203,-1.83984][-0.18024,0.980785,-0.074658][0.748616,0.956788,0][0.669995,0.740629,-1.8727][-0.18024,0.980785,-0.0746571][0.713167,0.875454,0][0.769398,0.76203,-1.83152][-0.18024,0.980785,-0.0746571][0.722809,0.875454,0][0.67344,0.740629,-1.88101][-0.18024,0.980785,-0.0746571][0.713167,0.876246,0][0.67344,0.740629,-1.88101][-0.18024,0.980785,-0.074658][0.766978,0.948508,0][0.769398,0.76203,-1.83152][-0.18024,0.980785,-0.074658][0.77662,0.947717,0][0.772843,0.76203,-1.83984][-0.18024,0.980785,-0.074658][0.77662,0.948508,0][0.669995,0.740629,-1.8727][-0.18024,0.980785,-0.0746571][0.433387,0.698825,0][0.769398,0.76203,-1.83152][-0.18024,0.980785,-0.0746571][0.443029,0.698825,0][0.67344,0.740629,-1.88101][-0.18024,0.980785,-0.0746571][0.433387,0.699617,0][0.772843,0.76203,-1.83984][0.180239,0.980785,0.0746567][0.748616,0.908572,0][0.868801,0.740629,-1.79035][0.180239,0.980785,0.0746567][0.738974,0.909364,0][0.872246,0.740629,-1.79867][0.180239,0.980785,0.0746567][0.738974,0.908572,0][0.769398,0.76203,-1.83152][0.180239,0.980786,0.0746576][0.875354,0.878361,0][0.868801,0.740629,-1.79035][0.180239,0.980786,0.0746576][0.865713,0.878361,0][0.772843,0.76203,-1.83984][0.180239,0.980786,0.0746576][0.875354,0.877569,0][0.772843,0.76203,-1.83984][0.180239,0.980785,0.0746567][0.77662,0.900293,0][0.868801,0.740629,-1.79035][0.180239,0.980785,0.0746567][0.766978,0.901084,0][0.872246,0.740629,-1.79867][0.180239,0.980785,0.0746567][0.766978,0.900293,0][0.769398,0.76203,-1.83152][0.180239,0.980786,0.0746576][0.929411,0.848284,0][0.868801,0.740629,-1.79035][0.180239,0.980786,0.0746576][0.919769,0.848284,0][0.772843,0.76203,-1.83984][0.180239,0.980786,0.0746576][0.929411,0.847493,0][0.872246,0.740629,-1.79867][0.513279,0.83147,0.212609][0.927256,0.668602,0][0.95307,0.679682,-1.75544][0.513279,0.83147,0.212609][0.917615,0.669393,0][0.956516,0.679682,-1.76376][0.513279,0.83147,0.212609][0.917615,0.668602,0][0.868801,0.740629,-1.79035][0.513281,0.831469,0.212606][0.27391,0.124006,0][0.95307,0.679682,-1.75544][0.513281,0.831469,0.212606][0.27391,0.114364,0][0.872246,0.740629,-1.79867][0.513281,0.831469,0.212606][0.274701,0.124006,0][0.872246,0.740629,-1.79867][0.513279,0.83147,0.212609][0.931863,0.828458,0][0.95307,0.679682,-1.75544][0.513279,0.83147,0.212609][0.922221,0.829249,0][0.956516,0.679682,-1.76376][0.513279,0.83147,0.212609][0.922221,0.828458,0][0.868801,0.740629,-1.79035][0.513281,0.831469,0.212606][0.0910857,0.0146419,0][0.95307,0.679682,-1.75544][0.513281,0.831469,0.212606][0.0910857,0.005,0][0.872246,0.740629,-1.79867][0.513281,0.831469,0.212606][0.0918771,0.0146419,0][0.956516,0.679682,-1.76376][0.76818,0.55557,0.318184][0.230524,0.0559965,0][1.00938,0.588469,-1.73212][0.76818,0.55557,0.318184][0.240166,0.0552051,0][1.01282,0.588469,-1.74044][0.76818,0.55557,0.318184][0.240166,0.0559965,0][0.95307,0.679682,-1.75544][0.768177,0.555571,0.318191][0.928262,0.810086,0][1.00938,0.588469,-1.73212][0.768177,0.555571,0.318191][0.91862,0.810086,0][0.956516,0.679682,-1.76376][0.768177,0.555571,0.318191][0.928262,0.809295,0][0.956516,0.679682,-1.76376][0.76818,0.55557,0.318184][0.3025,0.067718,0][1.00938,0.588469,-1.73212][0.76818,0.55557,0.318184][0.312142,0.0669266,0][1.01282,0.588469,-1.74044][0.76818,0.55557,0.318184][0.312142,0.067718,0][0.95307,0.679682,-1.75544][0.768177,0.555571,0.318191][0.909999,0.793159,0][1.00938,0.588469,-1.73212][0.768177,0.555571,0.318191][0.900358,0.793159,0][0.956516,0.679682,-1.76376][0.768177,0.555571,0.318191][0.909999,0.792367,0][1.01282,0.588469,-1.74044][0.906128,0.195091,0.375328][0.877939,0.668602,0][1.02915,0.480876,-1.72393][0.906128,0.195091,0.375328][0.868297,0.669393,0][1.0326,0.480876,-1.73225][0.906128,0.195091,0.375328][0.868297,0.668602,0][1.00938,0.588469,-1.73212][0.90613,0.195091,0.375323][0.713252,0.954494,0][1.02915,0.480876,-1.72393][0.90613,0.195091,0.375323][0.722728,0.954871,0][1.01282,0.588469,-1.74044][0.90613,0.195091,0.375323][0.713167,0.95522,0][1.01282,0.588469,-1.74044][0.906128,0.195091,0.375328][0.882546,0.828458,0][1.02915,0.480876,-1.72393][0.906128,0.195091,0.375328][0.872904,0.829249,0][1.0326,0.480876,-1.73225][0.906128,0.195091,0.375328][0.872904,0.828458,0][1.00938,0.588469,-1.73212][0.90613,0.195091,0.375323][0.687003,0.953083,0][1.02915,0.480876,-1.72393][0.90613,0.195091,0.375323][0.69648,0.95346,0][1.01282,0.588469,-1.74044][0.90613,0.195091,0.375323][0.686919,0.953809,0][1.0326,0.480876,-1.73225][0.906129,-0.19509,0.375328][0.924309,0.878289,0][1.00938,0.373283,-1.73212][0.906129,-0.19509,0.375328][0.914852,0.8783,0][1.01282,0.373283,-1.74044][0.906129,-0.19509,0.375328][0.914852,0.877569,0][1.02915,0.480876,-1.72393][0.906129,-0.19509,0.375328][0.89965,0.894108,0][1.00938,0.373283,-1.73212][0.906129,-0.19509,0.375328][0.890193,0.893389,0][1.0326,0.480876,-1.73225][0.906129,-0.19509,0.375328][0.89965,0.893377,0][1.0326,0.480876,-1.73225][0.906129,-0.19509,0.375328][0.875011,0.909905,0][1.00938,0.373283,-1.73212][0.906129,-0.19509,0.375328][0.865554,0.909916,0][1.01282,0.373283,-1.74044][0.906129,-0.19509,0.375328][0.865554,0.909185,0][1.02915,0.480876,-1.72393][0.906129,-0.19509,0.375328][0.850511,0.925724,0][1.00938,0.373283,-1.73212][0.906129,-0.19509,0.375328][0.841054,0.925004,0][1.0326,0.480876,-1.73225][0.906129,-0.19509,0.375328][0.850511,0.924993,0][0.95307,0.28207,-1.75544][0.272585,-0.392848,0.878275][0.344032,0.832985,0][1.00938,0.373283,-1.73212][0.272585,-0.392848,0.878275][0.345319,0.82343,0][0.781119,0.400276,-1.6492][0.272585,-0.392848,0.878275][0.364612,0.832865,0][0.95307,0.28207,-1.75544][0.272585,-0.392848,0.878275][0.8276,0.30046,0][1.00938,0.373283,-1.73212][0.272585,-0.392848,0.878275][0.828887,0.290904,0][0.781119,0.400276,-1.6492][0.272585,-0.392848,0.878275][0.84818,0.300339,0][0.769398,0.199722,-1.83152][-0.14315,-0.69352,0.706073][0.884915,0.353496,0][0.868801,0.221123,-1.79035][-0.14315,-0.69352,0.706073][0.88375,0.363067,0][0.706654,0.36689,-1.68005][-0.14315,-0.69352,0.706073][0.864338,0.35388,0][0.769398,0.199722,-1.83152][-0.14315,-0.69352,0.706073][0.41682,0.88693,0][0.868801,0.221123,-1.79035][-0.14315,-0.69352,0.706073][0.415656,0.896502,0][0.706654,0.36689,-1.68005][-0.14315,-0.69352,0.706073][0.396243,0.887315,0][0.769398,0.199722,-1.83152][-0.398046,-0.69352,0.600491][0.365003,0.795671,0][0.706654,0.36689,-1.68005][-0.398046,-0.69352,0.600491][0.385398,0.79843,0][0.669995,0.221123,-1.8727][-0.398046,-0.69352,0.600491][0.365054,0.805313,0][0.769398,0.199722,-1.83152][-0.398046,-0.69352,0.600491][0.389954,0.943099,0][0.706654,0.36689,-1.68005][-0.398046,-0.69352,0.600491][0.410349,0.945858,0][0.669995,0.221123,-1.8727][-0.398046,-0.69352,0.600491][0.390005,0.952741,0][0.585725,0.28207,-1.9076][-0.633542,-0.587938,0.502946][0.484839,0.612048,0][0.669995,0.221123,-1.8727][-0.633542,-0.587938,0.502946][0.486036,0.60248,0][0.632189,0.400276,-1.71089][-0.633542,-0.587938,0.502946][0.505416,0.611734,0][0.585725,0.28207,-1.9076][-0.633542,-0.587938,0.502946][0.297566,0.805238,0][0.669995,0.221123,-1.8727][-0.633542,-0.587938,0.502946][0.298763,0.795671,0][0.632189,0.400276,-1.71089][-0.633542,-0.587938,0.502946][0.318144,0.804924,0][0.509645,0.480876,-1.93911][-0.911327,0.13795,0.387883][0.444302,0.952556,0][0.601345,0.480876,-1.72367][-0.911327,0.13795,0.387883][0.425365,0.952556,0][0.529417,0.588469,-1.93092][-0.911327,0.13795,0.387883][0.443582,0.943099,0][0.509645,0.480876,-1.93911][-0.911327,0.13795,0.387883][0.419351,0.805127,0][0.601345,0.480876,-1.72367][-0.911327,0.13795,0.387883][0.400414,0.805127,0][0.529417,0.588469,-1.93092][-0.911327,0.13795,0.387883][0.418631,0.795671,0][0.585725,0.679682,-1.9076][-0.633543,0.587938,0.502944][0.697505,0.48269,0][0.632189,0.561476,-1.71089][-0.633543,0.587938,0.502944][0.717909,0.485379,0][0.669995,0.740629,-1.8727][-0.633543,0.587938,0.502944][0.697589,0.492331,0][0.585725,0.679682,-1.9076][-0.633543,0.587938,0.502944][0.774659,0.450451,0][0.632189,0.561476,-1.71089][-0.633543,0.587938,0.502944][0.795062,0.45314,0][0.669995,0.740629,-1.8727][-0.633543,0.587938,0.502944][0.774742,0.460093,0][0.585725,0.679682,-1.9076][-0.813781,0.392849,0.428287][0.414286,0.918515,0][0.529417,0.588469,-1.93092][-0.813781,0.392849,0.428287][0.412999,0.92807,0][0.632189,0.561476,-1.71089][-0.813781,0.392849,0.428287][0.393706,0.918635,0][0.585725,0.679682,-1.9076][-0.813781,0.392849,0.428287][0.378692,0.943099,0][0.529417,0.588469,-1.93092][-0.813781,0.392849,0.428287][0.377405,0.952654,0][0.632189,0.561476,-1.71089][-0.813781,0.392849,0.428287][0.358112,0.943219,0][1.02915,0.480876,-1.72393][0.37013,0.13795,0.91868][0.411286,0.832886,0][1.00938,0.588469,-1.73212][0.37013,0.13795,0.91868][0.413024,0.82343,0][0.811963,0.480876,-1.63642][0.37013,0.13795,0.91868][0.430375,0.832886,0][1.02915,0.480876,-1.72393][0.37013,0.13795,0.91868][0.885797,0.427589,0][1.00938,0.588469,-1.73212][0.37013,0.13795,0.91868][0.887535,0.418133,0][0.811963,0.480876,-1.63642][0.37013,0.13795,0.91868][0.904886,0.427589,0][0.769398,0.76203,-1.83152][-0.398047,0.69352,0.60049][0.792006,0.300475,0][0.669995,0.740629,-1.8727][-0.398047,0.69352,0.60049][0.793171,0.290904,0][0.706654,0.594863,-1.68005][-0.398047,0.69352,0.600491][0.812583,0.300091,0][0.769398,0.76203,-1.83152][-0.398047,0.69352,0.60049][0.308439,0.833001,0][0.669995,0.740629,-1.8727][-0.398047,0.69352,0.60049][0.309603,0.82343,0][0.706654,0.594863,-1.68005][-0.398047,0.69352,0.600491][0.329016,0.832617,0][0.706654,0.594863,-1.68005][-0.520999,0.630085,0.575807][0.648827,0.675959,0][0.632189,0.561476,-1.71089][-0.520999,0.630085,0.575807][0.650988,0.668602,0][0.669074,0.480876,-1.58932][-0.520999,0.630085,0.575807][0.662051,0.675846,0][0.669995,0.740629,-1.8727][-0.520999,0.63004,0.575856][0.787414,0.514372,0][0.632189,0.561476,-1.71089][-0.520999,0.63004,0.575856][0.767264,0.521805,0][0.706654,0.594863,-1.68005][-0.520999,0.63004,0.575856][0.765937,0.514252,0][0.706654,0.594863,-1.68005][-0.520999,0.630085,0.575807][0.645998,0.65524,0][0.632189,0.561476,-1.71089][-0.520999,0.630085,0.575807][0.648158,0.647883,0][0.669074,0.480876,-1.58932][-0.520999,0.630085,0.575807][0.659221,0.655127,0][0.669995,0.740629,-1.8727][-0.520999,0.63004,0.575856][0.707899,0.574812,0][0.632189,0.561476,-1.71089][-0.520999,0.63004,0.575856][0.68775,0.582245,0][0.706654,0.594863,-1.68005][-0.520999,0.63004,0.575856][0.686423,0.574693,0][0.769398,0.76203,-1.83152][-0.14315,0.69352,0.706072][0.505233,0.657524,0][0.706654,0.594863,-1.68005][-0.14315,0.69352,0.706072][0.484839,0.654765,0][0.868801,0.740629,-1.79035][-0.14315,0.69352,0.706072][0.505182,0.647883,0][0.769398,0.76203,-1.83152][-0.14315,0.69352,0.706072][0.610171,0.584335,0][0.706654,0.594863,-1.68005][-0.14315,0.69352,0.706072][0.589777,0.581576,0][0.868801,0.740629,-1.79035][-0.14315,0.69352,0.706072][0.610121,0.574693,0][0.95307,0.679682,-1.75544][0.0923449,0.587938,0.803618][0.920509,0.353496,0][0.868801,0.740629,-1.79035][0.0923449,0.587938,0.803618][0.919312,0.363063,0][0.78112,0.561477,-1.6492][0.0923449,0.587938,0.803618][0.899932,0.35381,0][0.95307,0.679682,-1.75544][0.0923449,0.587938,0.803618][0.848474,0.385814,0][0.868801,0.740629,-1.79035][0.0923449,0.587938,0.803618][0.847277,0.395381,0][0.78112,0.561477,-1.6492][0.0923449,0.587938,0.803618][0.827897,0.386128,0][0.78112,0.561477,-1.6492][-0.0387557,0.630085,0.775558][0.533473,0.892087,0][0.706654,0.594863,-1.68005][-0.0387557,0.630085,0.775558][0.531283,0.899436,0][0.669074,0.480876,-1.58932][-0.0387557,0.630085,0.775558][0.52025,0.892146,0][0.868801,0.740629,-1.79035][-0.0387906,0.63004,0.775593][0.597281,0.609829,0][0.706654,0.594863,-1.68005][-0.0387906,0.63004,0.775593][0.617461,0.60248,0][0.78112,0.561477,-1.6492][-0.0387906,0.63004,0.775593][0.618756,0.610038,0][0.78112,0.561477,-1.6492][-0.0387557,0.630085,0.775558][0.726391,0.734594,0][0.706654,0.594863,-1.68005][-0.0387557,0.630085,0.775558][0.724201,0.741942,0][0.669074,0.480876,-1.58932][-0.0387557,0.630085,0.775558][0.713167,0.734653,0][0.868801,0.740629,-1.79035][-0.0387906,0.63004,0.775593][0.662991,0.557556,0][0.706654,0.594863,-1.68005][-0.0387906,0.63004,0.775593][0.68317,0.550207,0][0.78112,0.561477,-1.6492][-0.0387906,0.63004,0.775593][0.684466,0.557765,0][0.95307,0.679682,-1.75544][0.272585,0.392848,0.878276][0.686243,0.49233,0][0.78112,0.561477,-1.6492][0.272585,0.392848,0.878276][0.665815,0.489833,0][1.00938,0.588469,-1.73212][0.272585,0.392848,0.878276][0.686069,0.48269,0][0.95307,0.679682,-1.75544][0.272585,0.392848,0.878276][0.763396,0.460091,0][0.78112,0.561477,-1.6492][0.272585,0.392848,0.878276][0.742968,0.457594,0][1.00938,0.588469,-1.73212][0.272585,0.392848,0.878276][0.763222,0.450451,0][1.02915,0.480876,-1.72393][0.37013,-0.13795,0.91868][0.970947,0.353496,0][0.811963,0.480876,-1.63642][0.37013,-0.13795,0.91868][0.990036,0.353496,0][1.00938,0.373283,-1.73212][0.37013,-0.13795,0.91868][0.972684,0.362952,0][1.02915,0.480876,-1.72393][0.37013,-0.13795,0.91868][0.732926,0.48269,0][0.811963,0.480876,-1.63642][0.37013,-0.13795,0.91868][0.752015,0.48269,0][1.00938,0.373283,-1.73212][0.37013,-0.13795,0.91868][0.734664,0.492147,0][0.811963,0.480876,-1.63642][0.302245,0.260989,0.916806][0.713167,0.760289,0][0.78112,0.561477,-1.6492][0.302245,0.260989,0.916806][0.715878,0.753205,0][0.669074,0.480876,-1.58932][0.302245,0.260989,0.916806][0.725726,0.760289,0][1.00938,0.588469,-1.73212][0.302186,0.260971,0.916831][0.707435,0.60477,0][0.78112,0.561477,-1.6492][0.302186,0.260971,0.916831][0.687939,0.610064,0][0.811963,0.480876,-1.63642][0.302186,0.260971,0.916831][0.687807,0.60248,0][0.811963,0.480876,-1.63642][0.302245,0.260989,0.916806][0.239217,0.492822,0][0.78112,0.561477,-1.6492][0.302245,0.260989,0.916806][0.241928,0.485738,0][0.669074,0.480876,-1.58932][0.302245,0.260989,0.916806][0.251776,0.492822,0][1.00938,0.588469,-1.73212][0.302186,0.260971,0.916831][0.773144,0.552496,0][0.78112,0.561477,-1.6492][0.302186,0.260971,0.916831][0.753649,0.557791,0][0.811963,0.480876,-1.63642][0.302186,0.260971,0.916831][0.753516,0.550207,0][0.95307,0.28207,-1.75544][0.0923465,-0.587937,0.803618][0.883895,0.395456,0][0.781119,0.400276,-1.6492][0.0923465,-0.587937,0.803618][0.863491,0.392767,0][0.868801,0.221123,-1.79035][0.0923465,-0.587937,0.803618][0.883811,0.385814,0][0.95307,0.28207,-1.75544][0.0923465,-0.587937,0.803618][0.95593,0.363137,0][0.781119,0.400276,-1.6492][0.0923465,-0.587937,0.803618][0.935526,0.360448,0][0.868801,0.221123,-1.79035][0.0923465,-0.587937,0.803618][0.955846,0.353496,0][0.781119,0.400276,-1.6492][0.302246,-0.260988,0.916806][0.766617,0.717102,0][0.811963,0.480876,-1.63642][0.302246,-0.260988,0.916806][0.763906,0.710017,0][0.669074,0.480876,-1.58932][0.302246,-0.260988,0.916806][0.776465,0.710017,0][1.00938,0.373283,-1.73212][0.302186,-0.260969,0.916831][0.742212,0.609992,0][0.811963,0.480876,-1.63642][0.302186,-0.260969,0.916831][0.722451,0.609998,0][0.781119,0.400276,-1.6492][0.302186,-0.260969,0.916831][0.723459,0.60248,0][0.781119,0.400276,-1.6492][0.302246,-0.260988,0.916806][0.740364,0.741678,0][0.811963,0.480876,-1.63642][0.302246,-0.260988,0.916806][0.737653,0.734594,0][0.669074,0.480876,-1.58932][0.302246,-0.260988,0.916806][0.750212,0.734594,0][1.00938,0.373283,-1.73212][0.302186,-0.260969,0.916831][0.5046,0.847554,0][0.811963,0.480876,-1.63642][0.302186,-0.260969,0.916831][0.484839,0.847561,0][0.781119,0.400276,-1.6492][0.302186,-0.260969,0.916831][0.485846,0.840043,0][0.585725,0.28207,-1.9076][-0.813782,-0.392847,0.428288][0.803387,0.172527,0][0.632189,0.400276,-1.71089][-0.813782,-0.392847,0.428288][0.823815,0.175024,0][0.529417,0.373283,-1.93092][-0.813782,-0.392847,0.428288][0.803561,0.182167,0][0.585725,0.28207,-1.9076][-0.813782,-0.392847,0.428288][0.708798,0.221461,0][0.632189,0.400276,-1.71089][-0.813782,-0.392847,0.428288][0.729226,0.223958,0][0.529417,0.373283,-1.93092][-0.813782,-0.392847,0.428288][0.708972,0.231101,0][0.706654,0.36689,-1.68005][-0.0387543,-0.630084,0.775559][0.62265,0.80864,0][0.781119,0.400276,-1.6492][-0.0387543,-0.630084,0.775559][0.620489,0.815997,0][0.669074,0.480876,-1.58932][-0.0387543,-0.630084,0.775559][0.609426,0.808753,0][0.868801,0.221123,-1.79035][-0.0387888,-0.630039,0.775594][0.630019,0.609913,0][0.781119,0.400276,-1.6492][-0.0387888,-0.630039,0.775594][0.650168,0.60248,0][0.706654,0.36689,-1.68005][-0.0387888,-0.630039,0.775594][0.651495,0.610032,0][0.706654,0.36689,-1.68005][-0.0387543,-0.630084,0.775559][0.819145,0.60248,0][0.781119,0.400276,-1.6492][-0.0387543,-0.630084,0.775559][0.816985,0.609838,0][0.669074,0.480876,-1.58932][-0.0387543,-0.630084,0.775559][0.805922,0.602594,0][0.868801,0.221123,-1.79035][-0.0387888,-0.630039,0.775594][0.695728,0.55764,0][0.781119,0.400276,-1.6492][-0.0387888,-0.630039,0.775594][0.715878,0.550207,0][0.706654,0.36689,-1.68005][-0.0387888,-0.630039,0.775594][0.717205,0.557759,0][0.509645,0.480876,-1.93911][-0.911327,-0.137949,0.387883][0.644124,0.574693,0][0.529417,0.373283,-1.93092][-0.911327,-0.137949,0.387883][0.643405,0.58415,0][0.601345,0.480876,-1.72367][-0.911327,-0.137949,0.387883][0.625188,0.574693,0][0.509645,0.480876,-1.93911][-0.911327,-0.137949,0.387883][0.539186,0.647883,0][0.529417,0.373283,-1.93092][-0.911327,-0.137949,0.387883][0.538466,0.657339,0][0.601345,0.480876,-1.72367][-0.911327,-0.137949,0.387883][0.52025,0.647883,0][0.632189,0.400276,-1.71089][-0.521,-0.630084,0.575806][0.8331,0.557555,0][0.706654,0.36689,-1.68005][-0.521,-0.630084,0.575806][0.83529,0.550207,0][0.669074,0.480876,-1.58932][-0.521,-0.630084,0.575806][0.846324,0.557496,0][0.669995,0.221123,-1.8727][-0.521,-0.630039,0.575856][0.819536,0.482898,0][0.706654,0.36689,-1.68005][-0.521,-0.630039,0.575856][0.799356,0.490247,0][0.632189,0.400276,-1.71089][-0.521,-0.630039,0.575856][0.79806,0.48269,0][0.632189,0.400276,-1.71089][-0.521,-0.630084,0.575806][0.715148,0.634413,0][0.706654,0.36689,-1.68005][-0.521,-0.630084,0.575806][0.717339,0.627064,0][0.669074,0.480876,-1.58932][-0.521,-0.630084,0.575806][0.728372,0.634354,0][0.669995,0.221123,-1.8727][-0.521,-0.630039,0.575856][0.616955,0.627273,0][0.706654,0.36689,-1.68005][-0.521,-0.630039,0.575856][0.596775,0.634622,0][0.632189,0.400276,-1.71089][-0.521,-0.630039,0.575856][0.595479,0.627064,0][0.669074,0.480876,-1.58932][-0.862033,0.26085,0.434577][0.472352,0.134744,0][0.529417,0.588469,-1.93092][-0.862033,0.26085,0.434577][0.4715,0.100968,0][0.601345,0.480876,-1.72367][-0.862033,0.26085,0.434577][0.475865,0.121996,0][0.632189,0.561476,-1.71089][-0.861935,0.261104,0.434617][0.122189,0.0294024,0][0.529417,0.588469,-1.93092][-0.861935,0.261104,0.434617][0.100968,0.0261025,0][0.669074,0.480876,-1.58932][-0.861935,0.261104,0.434617][0.134744,0.0252505,0][0.669074,0.480876,-1.58932][-0.862033,0.26085,0.434577][0.0261018,0.336276,0][0.529417,0.588469,-1.93092][-0.862033,0.26085,0.434577][0.0252505,0.3025,0][0.601345,0.480876,-1.72367][-0.862033,0.26085,0.434577][0.0296156,0.323528,0][0.632189,0.561476,-1.71089][-0.861935,0.261104,0.434617][0.15972,0.0294024,0][0.529417,0.588469,-1.93092][-0.861935,0.261104,0.434617][0.138498,0.0261025,0][0.669074,0.480876,-1.58932][-0.861935,0.261104,0.434617][0.172275,0.0252505,0][0.601345,0.480876,-1.72367][-0.861999,-0.260988,0.43456][0.498062,0.953505,0][0.632189,0.400276,-1.71089][-0.861999,-0.260988,0.43456][0.495839,0.960843,0][0.669074,0.480876,-1.58932][-0.861999,-0.260988,0.43456][0.484839,0.953505,0][0.529417,0.373283,-1.93092][-0.861975,-0.26097,0.434619][0.964522,0.385814,0][0.632189,0.400276,-1.71089][-0.861975,-0.26097,0.434619][0.985998,0.38583,0][0.601345,0.480876,-1.72367][-0.861975,-0.26097,0.434619][0.984623,0.393374,0][0.601345,0.480876,-1.72367][-0.861999,-0.260988,0.43456][0.686537,0.668602,0][0.632189,0.400276,-1.71089][-0.861999,-0.260988,0.43456][0.684314,0.67594,0][0.669074,0.480876,-1.58932][-0.861999,-0.260988,0.43456][0.673313,0.668602,0][0.529417,0.373283,-1.93092][-0.861975,-0.26097,0.434619][0.729444,0.514252,0][0.632189,0.400276,-1.71089][-0.861975,-0.26097,0.434619][0.750921,0.514268,0][0.601345,0.480876,-1.72367][-0.861975,-0.26097,0.434619][0.749546,0.521812,0][0.58917,0.679682,-1.91592][-0.30082,0.406319,-0.862793][0.609426,0.75938,0][0.682167,0.617397,-1.97768][-0.30082,0.406319,-0.862793][0.620658,0.759676,0][0.532863,0.588469,-1.93924][-0.30082,0.406319,-0.862793][0.61047,0.768965,0][0.58917,0.679682,-1.91592][-0.30082,0.406319,-0.862793][0.52025,0.842909,0][0.682167,0.617397,-1.97768][-0.30082,0.406319,-0.862793][0.531481,0.843205,0][0.532863,0.588469,-1.93924][-0.30082,0.406319,-0.862793][0.521293,0.852494,0][0.772843,0.76203,-1.83984][0.129171,0.717301,-0.684685][0.592577,0.794389,0][0.808296,0.673946,-1.92543][0.129171,0.717301,-0.684685][0.581422,0.793044,0][0.67344,0.740629,-1.88101][0.129171,0.717301,-0.684685][0.592434,0.784748,0][0.772843,0.76203,-1.83984][0.129171,0.717301,-0.684685][0.671826,0.744262,0][0.808296,0.673946,-1.92543][0.129171,0.717301,-0.684685][0.660671,0.742917,0][0.67344,0.740629,-1.88101][0.129171,0.717301,-0.684685][0.671683,0.734621,0][0.772843,0.76203,-1.83984][0.392808,0.717301,-0.575484][0.713167,0.719577,0][0.872246,0.740629,-1.79867][0.392808,0.717301,-0.575484][0.714423,0.710017,0][0.808296,0.673946,-1.92543][0.392808,0.717301,-0.575484][0.724403,0.71953,0][0.772843,0.76203,-1.83984][0.392808,0.717301,-0.575484][0.914353,0.584253,0][0.872246,0.740629,-1.79867][0.392808,0.717301,-0.575484][0.915609,0.574693,0][0.808296,0.673946,-1.92543][0.392808,0.717301,-0.575484][0.925589,0.584205,0][0.956516,0.679682,-1.76376][0.636379,0.608098,-0.474593][0.168145,0.473903,0][0.934426,0.617397,-1.87319][0.636379,0.608098,-0.474593][0.168904,0.462693,0][0.872246,0.740629,-1.79867][0.636379,0.608098,-0.474593][0.177765,0.473256,0][0.956516,0.679682,-1.76376][0.636379,0.608098,-0.474593][0.473903,0.31212,0][0.934426,0.617397,-1.87319][0.636379,0.608098,-0.474593][0.462693,0.311361,0][0.872246,0.740629,-1.79867][0.636379,0.608098,-0.474593][0.473256,0.3025,0][1.01282,0.373283,-1.74044][0.768176,-0.555571,0.318192][0.878945,0.809295,0][0.95307,0.28207,-1.75544][0.768176,-0.555571,0.318192][0.869303,0.810086,0][0.956516,0.28207,-1.76376][0.768176,-0.555571,0.318192][0.869303,0.809295,0][1.00938,0.373283,-1.73212][0.768178,-0.555571,0.318187][0.722809,0.907862,0][0.95307,0.28207,-1.75544][0.768178,-0.555571,0.318187][0.713167,0.907862,0][1.01282,0.373283,-1.74044][0.768178,-0.555571,0.318187][0.722809,0.90707,0][1.01282,0.373283,-1.74044][0.768176,-0.555571,0.318192][0.975149,0.627064,0][0.95307,0.28207,-1.75544][0.768176,-0.555571,0.318192][0.965507,0.627856,0][0.956516,0.28207,-1.76376][0.768176,-0.555571,0.318192][0.965507,0.627064,0][1.00938,0.373283,-1.73212][0.768178,-0.555571,0.318187][0.696561,0.906451,0][0.95307,0.28207,-1.75544][0.768178,-0.555571,0.318187][0.686919,0.906451,0][1.01282,0.373283,-1.74044][0.768178,-0.555571,0.318187][0.696561,0.905659,0][0.956516,0.28207,-1.76376][0.513281,-0.831469,0.212609][0.888616,0.925646,0][0.868801,0.221123,-1.79035][0.513281,-0.831469,0.212609][0.89664,0.924933,0][0.872246,0.221123,-1.79867][0.513281,-0.831469,0.212609][0.896633,0.925725,0][0.95307,0.28207,-1.75544][0.513281,-0.831469,0.21261][0.939333,0.877569,0][0.868801,0.221123,-1.79035][0.513281,-0.831469,0.21261][0.947349,0.877648,0][0.956516,0.28207,-1.76376][0.513281,-0.831469,0.21261][0.939325,0.878361,0][0.956516,0.28207,-1.76376][0.513281,-0.831469,0.212609][0.865554,0.941453,0][0.868801,0.221123,-1.79035][0.513281,-0.831469,0.212609][0.873578,0.94074,0][0.872246,0.221123,-1.79867][0.513281,-0.831469,0.212609][0.873571,0.941532,0][0.95307,0.28207,-1.75544][0.513281,-0.831469,0.21261][0.791744,0.972417,0][0.868801,0.221123,-1.79035][0.513281,-0.831469,0.21261][0.799761,0.972495,0][0.956516,0.28207,-1.76376][0.513281,-0.831469,0.21261][0.791737,0.973208,0][0.872246,0.221123,-1.79867][0.18024,-0.980785,0.0746582][0.791737,0.9415,0][0.769398,0.199722,-1.83152][0.18024,-0.980785,0.0746583][0.801201,0.940801,0][0.772843,0.199722,-1.83984][0.18024,-0.980785,0.0746582][0.801193,0.941593,0][0.868801,0.221123,-1.79035][0.18024,-0.980785,0.0746582][0.967945,0.809295,0][0.769398,0.199722,-1.83152][0.18024,-0.980785,0.0746582][0.977401,0.809388,0][0.872246,0.221123,-1.79867][0.18024,-0.980785,0.0746583][0.967937,0.810086,0][0.872246,0.221123,-1.79867][0.18024,-0.980785,0.0746582][0.944427,0.848191,0][0.769398,0.199722,-1.83152][0.18024,-0.980785,0.0746583][0.953891,0.847493,0][0.772843,0.199722,-1.83984][0.18024,-0.980785,0.0746582][0.953883,0.848284,0][0.868801,0.221123,-1.79035][0.18024,-0.980785,0.0746582][0.949683,0.792367,0][0.769398,0.199722,-1.83152][0.18024,-0.980785,0.0746582][0.959139,0.79246,0][0.872246,0.221123,-1.79867][0.18024,-0.980785,0.0746583][0.949675,0.793159,0][0.772843,0.199722,-1.83984][-0.180239,-0.980786,-0.0746572][0.865713,0.894076,0][0.669995,0.221123,-1.8727][-0.180239,-0.980786,-0.0746572][0.875176,0.893377,0][0.67344,0.221123,-1.88101][-0.180239,-0.980786,-0.0746572][0.875169,0.894169,0][0.769398,0.199722,-1.83152][-0.180239,-0.980785,-0.0746578][0.971546,0.828458,0][0.669995,0.221123,-1.8727][-0.180239,-0.980785,-0.0746578][0.981002,0.82855,0][0.772843,0.199722,-1.83984][-0.180239,-0.980785,-0.0746578][0.971538,0.829249,0][0.772843,0.199722,-1.83984][-0.180239,-0.980786,-0.0746572][0.890371,0.878268,0][0.669995,0.221123,-1.8727][-0.180239,-0.980786,-0.0746572][0.899835,0.877569,0][0.67344,0.221123,-1.88101][-0.180239,-0.980786,-0.0746572][0.899827,0.878361,0][0.769398,0.199722,-1.83152][-0.180239,-0.980785,-0.0746578][0.966781,0.668602,0][0.669995,0.221123,-1.8727][-0.180239,-0.980785,-0.0746578][0.976237,0.668694,0][0.772843,0.199722,-1.83984][-0.180239,-0.980785,-0.0746578][0.966773,0.669393,0][0.67344,0.221123,-1.88101][-0.513281,-0.83147,-0.212606][0.686919,0.985345,0][0.585725,0.28207,-1.9076][-0.513281,-0.83147,-0.212606][0.694943,0.984633,0][0.58917,0.28207,-1.91592][-0.513281,-0.83147,-0.212606][0.694935,0.985424,0][0.669995,0.221123,-1.8727][-0.513281,-0.83147,-0.212604][0.816403,0.972356,0][0.585725,0.28207,-1.9076][-0.513281,-0.83147,-0.212604][0.824419,0.972434,0][0.67344,0.221123,-1.88101][-0.513281,-0.83147,-0.212604][0.816395,0.973147,0][0.67344,0.221123,-1.88101][-0.513281,-0.83147,-0.212606][0.713167,0.986757,0][0.585725,0.28207,-1.9076][-0.513281,-0.83147,-0.212606][0.721191,0.986044,0][0.58917,0.28207,-1.91592][-0.513281,-0.83147,-0.212606][0.721184,0.986835,0][0.669995,0.221123,-1.8727][-0.513281,-0.83147,-0.212604][0.841062,0.956548,0][0.585725,0.28207,-1.9076][-0.513281,-0.83147,-0.212604][0.849078,0.956626,0][0.67344,0.221123,-1.88101][-0.513281,-0.83147,-0.212604][0.841054,0.957339,0][0.58917,0.28207,-1.91592][-0.768178,-0.55557,-0.318188][0.93002,0.648674,0][0.529417,0.373283,-1.93092][-0.768178,-0.55557,-0.318188][0.939662,0.647883,0][0.532863,0.373283,-1.93924][-0.768178,-0.55557,-0.318188][0.939662,0.648674,0][0.585725,0.28207,-1.9076][-0.768179,-0.55557,-0.318187][0.942737,0.753205,0][0.529417,0.373283,-1.93092][-0.768179,-0.55557,-0.318187][0.952379,0.753205,0][0.58917,0.28207,-1.91592][-0.768179,-0.55557,-0.318187][0.942737,0.753996,0][0.58917,0.28207,-1.91592][-0.768178,-0.55557,-0.318188][0.935251,0.772343,0][0.529417,0.373283,-1.93092][-0.768178,-0.55557,-0.318188][0.944893,0.771551,0][0.532863,0.373283,-1.93924][-0.768178,-0.55557,-0.318188][0.944893,0.772343,0][0.585725,0.28207,-1.9076][-0.768179,-0.55557,-0.318187][0.966966,0.734594,0][0.529417,0.373283,-1.93092][-0.768179,-0.55557,-0.318187][0.976608,0.734594,0][0.58917,0.28207,-1.91592][-0.768179,-0.55557,-0.318187][0.966966,0.735385,0][0.532863,0.373283,-1.93924][-0.906128,-0.195091,-0.375328][0.89511,0.848284,0][0.509645,0.480876,-1.93911][-0.906128,-0.195091,-0.375328][0.904752,0.847493,0][0.51309,0.480876,-1.94743][-0.906128,-0.195091,-0.375328][0.904752,0.848284,0][0.529417,0.373283,-1.93092][-0.906128,-0.195091,-0.375329][0.686919,0.889851,0][0.509645,0.480876,-1.93911][-0.906128,-0.195091,-0.375329][0.696561,0.889851,0][0.532863,0.373283,-1.93924][-0.906128,-0.195091,-0.375329][0.686919,0.890643,0][0.532863,0.373283,-1.93924][-0.906128,-0.195091,-0.375328][0.841054,0.878361,0][0.509645,0.480876,-1.93911][-0.906128,-0.195091,-0.375328][0.850696,0.877569,0][0.51309,0.480876,-1.94743][-0.906128,-0.195091,-0.375328][0.850696,0.878361,0][0.529417,0.373283,-1.93092][-0.906128,-0.195091,-0.375329][0.451175,0.747759,0][0.509645,0.480876,-1.93911][-0.906128,-0.195091,-0.375329][0.460817,0.747759,0][0.532863,0.373283,-1.93924][-0.906128,-0.195091,-0.375329][0.451175,0.748551,0][0.51309,0.480876,-1.94743][-0.906129,0.19509,-0.375327][0.660671,0.915216,0][0.529417,0.588469,-1.93092][-0.906129,0.19509,-0.375327][0.670313,0.914424,0][0.532863,0.588469,-1.93924][-0.906129,0.19509,-0.375327][0.670313,0.915216,0][0.509645,0.480876,-1.93911][-0.906129,0.19509,-0.375328][0.766978,0.916101,0][0.529417,0.588469,-1.93092][-0.906129,0.19509,-0.375328][0.77662,0.916101,0][0.51309,0.480876,-1.94743][-0.906129,0.19509,-0.375328][0.766978,0.916892,0][0.51309,0.480876,-1.94743][-0.906129,0.19509,-0.375327][0.738974,0.925172,0][0.529417,0.588469,-1.93092][-0.906129,0.19509,-0.375327][0.748616,0.92438,0][0.532863,0.588469,-1.93924][-0.906129,0.19509,-0.375327][0.748616,0.925172,0][0.509645,0.480876,-1.93911][-0.906129,0.19509,-0.375328][0.816395,0.877569,0][0.529417,0.588469,-1.93092][-0.906129,0.19509,-0.375328][0.826037,0.877569,0][0.51309,0.480876,-1.94743][-0.906129,0.19509,-0.375328][0.816395,0.878361,0][0.51309,0.480876,-1.94743][-0.40171,-0.14268,-0.904584][0.686919,0.734619,0][0.629923,0.480876,-1.99932][-0.40171,-0.14268,-0.904584][0.698154,0.734619,0][0.532863,0.373283,-1.93924][-0.40171,-0.14268,-0.904584][0.688215,0.744174,0][0.51309,0.480876,-1.94743][-0.40171,-0.14268,-0.904584][0.484839,0.932688,0][0.629923,0.480876,-1.99932][-0.40171,-0.14268,-0.904584][0.496074,0.932688,0][0.532863,0.373283,-1.93924][-0.40171,-0.14268,-0.904584][0.486135,0.942242,0][0.51309,0.480876,-1.94743][-0.40171,0.142681,-0.904584][0.69265,0.636619,0][0.532863,0.588469,-1.93924][-0.40171,0.142681,-0.904584][0.693946,0.627064,0][0.629923,0.480876,-1.99932][-0.40171,0.142681,-0.904584][0.703886,0.636619,0][0.51309,0.480876,-1.94743][-0.40171,0.142681,-0.904584][0.982379,0.175205,0][0.532863,0.588469,-1.93924][-0.40171,0.142681,-0.904584][0.983676,0.165651,0][0.629923,0.480876,-1.99932][-0.40171,0.142681,-0.904584][0.993615,0.175205,0][0.58917,0.679682,-1.91592][-0.114401,0.608098,-0.785576][0.563852,0.784879,0][0.67344,0.740629,-1.88101][-0.114401,0.608098,-0.785576][0.562828,0.794466,0][0.682167,0.617397,-1.97768][-0.114401,0.608098,-0.785576][0.55262,0.785198,0][0.58917,0.679682,-1.91592][-0.114401,0.608098,-0.785576][0.592654,0.735542,0][0.67344,0.740629,-1.88101][-0.114401,0.608098,-0.785576][0.59163,0.74513,0][0.682167,0.617397,-1.97768][-0.114401,0.608098,-0.785576][0.581422,0.735861,0][0.808296,0.673946,-1.92543][0.0475394,0.618563,-0.784296][0.932409,0.450581,0][0.682167,0.617397,-1.97768][0.0475394,0.618563,-0.784296][0.945396,0.450451,0][0.67344,0.740629,-1.88101][0.0475394,0.618563,-0.784296][0.939024,0.462677,0][0.768669,0.614677,-1.97455][0.0478163,0.618197,-0.784568][0.773427,0.809295,0][0.682167,0.617397,-1.97768][0.0478163,0.618197,-0.784568][0.779961,0.8132,0][0.808296,0.673946,-1.92543][0.0478163,0.618197,-0.784568][0.766974,0.813327,0][0.808296,0.673946,-1.92543][0.0475394,0.618563,-0.784296][0.925024,0.32233,0][0.682167,0.617397,-1.97768][0.0475394,0.618563,-0.784296][0.938011,0.3222,0][0.67344,0.740629,-1.88101][0.0475394,0.618563,-0.784296][0.931639,0.334426,0][0.768669,0.614677,-1.97455][0.0478163,0.618197,-0.784568][0.745427,0.828458,0][0.682167,0.617397,-1.97768][0.0478163,0.618197,-0.784568][0.751961,0.832362,0][0.808296,0.673946,-1.92543][0.0478163,0.618197,-0.784568][0.738974,0.83249,0][0.956516,0.679682,-1.76376][0.822799,0.40632,-0.397375][0.638283,0.719659,0][1.01282,0.588469,-1.74044][0.822799,0.40632,-0.397375][0.63823,0.710017,0][0.934426,0.617397,-1.87319][0.822799,0.40632,-0.397375][0.649408,0.718088,0][0.956516,0.679682,-1.76376][0.822799,0.40632,-0.397375][0.672927,0.697058,0][1.01282,0.588469,-1.74044][0.822799,0.40632,-0.397375][0.672875,0.687416,0][0.934426,0.617397,-1.87319][0.822799,0.40632,-0.397375][0.684053,0.695487,0][0.934426,0.617397,-1.87319][0.520965,0.618563,-0.588197][0.490915,0.802303,0][0.808296,0.673946,-1.92543][0.520965,0.618563,-0.588197][0.484839,0.790824,0][0.872246,0.740629,-1.79867][0.520965,0.618563,-0.588197][0.498625,0.790874,0][0.871071,0.614666,-1.93213][0.520962,0.618196,-0.588585][0.616028,0.91409,0][0.808296,0.673946,-1.92543][0.520962,0.618196,-0.588585][0.609426,0.910302,0][0.934426,0.617397,-1.87319][0.520962,0.618196,-0.588585][0.622409,0.909944,0][0.934426,0.617397,-1.87319][0.520965,0.618563,-0.588197][0.558697,0.752734,0][0.808296,0.673946,-1.92543][0.520965,0.618563,-0.588197][0.55262,0.741255,0][0.872246,0.740629,-1.79867][0.520965,0.618563,-0.588197][0.566407,0.741305,0][0.871071,0.614666,-1.93213][0.520962,0.618196,-0.588585][0.559223,0.965805,0][0.808296,0.673946,-1.92543][0.520962,0.618196,-0.588585][0.55262,0.962017,0][0.934426,0.617397,-1.87319][0.520962,0.618196,-0.588585][0.565603,0.961659,0][1.0326,0.480876,-1.73225][0.923689,-0.14268,-0.355585][0.473446,0.666507,0][1.01282,0.373283,-1.74044][0.923689,-0.14268,-0.355585][0.472727,0.675964,0][0.98667,0.480876,-1.85155][0.923689,-0.14268,-0.355585][0.462961,0.666507,0][1.0326,0.480876,-1.73225][0.923689,-0.14268,-0.355585][0.473183,0.795671,0][1.01282,0.373283,-1.74044][0.923689,-0.14268,-0.355585][0.472463,0.805127,0][0.98667,0.480876,-1.85155][0.923689,-0.14268,-0.355585][0.462698,0.795671,0][1.0326,0.480876,-1.73225][0.923689,0.14268,-0.355585][0.563106,0.886819,0][0.98667,0.480876,-1.85155][0.923689,0.14268,-0.355585][0.55262,0.886819,0][1.01282,0.588469,-1.74044][0.923689,0.14268,-0.355585][0.562386,0.877363,0][1.0326,0.480876,-1.73225][0.923689,0.14268,-0.355585][0.591908,0.837482,0][0.98667,0.480876,-1.85155][0.923689,0.14268,-0.355585][0.581422,0.837482,0][1.01282,0.588469,-1.74044][0.923689,0.14268,-0.355585][0.591188,0.828026,0][0.98667,0.480876,-1.85155][0.85573,0.256218,-0.449532][0.877322,0.482912,0][0.934426,0.617397,-1.87319][0.85573,0.256218,-0.449532][0.871022,0.494269,0][1.01282,0.588469,-1.74044][0.85573,0.256218,-0.449532][0.863537,0.48269,0][0.943474,0.536283,-1.90214][0.855527,0.256065,-0.450004][0.526622,0.971709,0][0.934426,0.617397,-1.87319][0.855527,0.256065,-0.450004][0.533232,0.975483,0][0.98667,0.480876,-1.85155][0.855527,0.256065,-0.450004][0.52025,0.975869,0][0.98667,0.480876,-1.85155][0.85573,0.256218,-0.449532][0.534035,0.721808,0][0.934426,0.617397,-1.87319][0.85573,0.256218,-0.449532][0.527734,0.733166,0][1.01282,0.588469,-1.74044][0.85573,0.256218,-0.449532][0.52025,0.721587,0][0.943474,0.536283,-1.90214][0.855527,0.256065,-0.450004][0.784679,0.771551,0][0.934426,0.617397,-1.87319][0.855527,0.256065,-0.450004][0.791289,0.775326,0][0.98667,0.480876,-1.85155][0.855527,0.256065,-0.450004][0.778307,0.775711,0][0.956516,0.28207,-1.76376][0.822799,-0.406319,-0.397375][0.978984,0.523838,0][0.934426,0.344355,-1.87319][0.822799,-0.406319,-0.397375][0.967752,0.523541,0][1.01282,0.373283,-1.74044][0.822799,-0.406319,-0.397375][0.97794,0.514252,0][0.956516,0.28207,-1.76376][0.822799,-0.406319,-0.397375][0.49607,0.917671,0][0.934426,0.344355,-1.87319][0.822799,-0.406319,-0.397375][0.484839,0.917375,0][1.01282,0.373283,-1.74044][0.822799,-0.406319,-0.397375][0.495027,0.908086,0][0.956516,0.28207,-1.76376][0.636379,-0.608099,-0.474592][0.861856,0.58428,0][0.872246,0.221123,-1.79867][0.636379,-0.608099,-0.474592][0.862881,0.574693,0][0.934426,0.344355,-1.87319][0.636379,-0.608099,-0.474592][0.873088,0.583961,0][0.956516,0.28207,-1.76376][0.636379,-0.608099,-0.474592][0.660671,0.719605,0][0.872246,0.221123,-1.79867][0.636379,-0.608099,-0.474592][0.661695,0.710017,0][0.934426,0.344355,-1.87319][0.636379,-0.608099,-0.474592][0.671902,0.719285,0][0.772843,0.199722,-1.83984][0.392809,-0.717301,-0.575482][0.235322,0.144302,0][0.808296,0.287806,-1.92543][0.392809,-0.717301,-0.575482][0.235402,0.13616,0][0.872246,0.221123,-1.79867][0.392809,-0.717301,-0.575482][0.244779,0.144395,0][0.772843,0.199722,-1.83984][0.392809,-0.717301,-0.575482][0.797184,0.71011,0][0.808296,0.287806,-1.92543][0.392809,-0.717301,-0.575482][0.797104,0.718252,0][0.872246,0.221123,-1.79867][0.392809,-0.717301,-0.575482][0.787727,0.710017,0][0.58917,0.28207,-1.91592][-0.1144,-0.608098,-0.785576][0.592632,0.72428,0][0.682167,0.344355,-1.97768][-0.1144,-0.608098,-0.785576][0.581422,0.72352,0][0.67344,0.221123,-1.88101][-0.1144,-0.608098,-0.785576][0.591985,0.714659,0][0.58917,0.28207,-1.91592][-0.1144,-0.608098,-0.785576][0.989287,0.33182,0][0.682167,0.344355,-1.97768][-0.1144,-0.608098,-0.785576][0.978077,0.331061,0][0.67344,0.221123,-1.88101][-0.1144,-0.608098,-0.785576][0.98864,0.3222,0][0.772843,0.199722,-1.83984][0.129171,-0.717302,-0.684685][0.581502,0.869987,0][0.67344,0.221123,-1.88101][0.129171,-0.717301,-0.684685][0.590958,0.87008,0][0.808296,0.287806,-1.92543][0.129171,-0.717301,-0.684685][0.581422,0.87813,0][0.772843,0.199722,-1.83984][0.129171,-0.717302,-0.684685][0.5527,0.919324,0][0.67344,0.221123,-1.88101][0.129171,-0.717301,-0.684685][0.562156,0.919417,0][0.808296,0.287806,-1.92543][0.129171,-0.717301,-0.684685][0.55262,0.927467,0][0.58917,0.28207,-1.91592][-0.30082,-0.406319,-0.862793][0.930189,0.514252,0][0.532863,0.373283,-1.93924][-0.30082,-0.406319,-0.862793][0.930241,0.523894,0][0.682167,0.344355,-1.97768][-0.30082,-0.406319,-0.862793][0.919063,0.515824,0][0.58917,0.28207,-1.91592][-0.30082,-0.406319,-0.862793][0.850541,0.574693,0][0.532863,0.373283,-1.93924][-0.30082,-0.406319,-0.862793][0.850594,0.584335,0][0.682167,0.344355,-1.97768][-0.30082,-0.406319,-0.862793][0.839416,0.576264,0][0.696242,0.536283,-2.00455][-0.287195,0.255951,-0.923043][0.297078,0.655075,0][0.532863,0.588469,-1.93924][-0.287195,0.255951,-0.923043][0.280949,0.6552,0][0.682167,0.617397,-1.97768][-0.287195,0.255951,-0.923043][0.293059,0.648611,0][0.629923,0.480876,-1.99932][-0.28702,0.256409,-0.92297][0.402166,0.995,0][0.532863,0.588469,-1.93924][-0.28702,0.256409,-0.92297][0.389954,0.988601,0][0.696242,0.536283,-2.00455][-0.28702,0.256409,-0.92297][0.406084,0.988477,0][0.696242,0.536283,-2.00455][-0.287195,0.255951,-0.923043][0.776917,0.0844025,0][0.532863,0.588469,-1.93924][-0.287195,0.255951,-0.923043][0.760787,0.0845275,0][0.682167,0.617397,-1.97768][-0.287195,0.255951,-0.923043][0.772898,0.0779387,0][0.629923,0.480876,-1.99932][-0.28702,0.256409,-0.92297][0.0836847,0.991678,0][0.532863,0.588469,-1.93924][-0.28702,0.256409,-0.92297][0.0714726,0.985279,0][0.696242,0.536283,-2.00455][-0.28702,0.256409,-0.92297][0.0876025,0.985155,0][0.871071,0.614666,-1.93213][0.340989,0.454117,-0.823106][0.473269,0.892778,0][0.768669,0.614677,-1.97455][0.340989,0.454117,-0.823106][0.463527,0.892777,0][0.808296,0.673946,-1.92543][0.340989,0.454117,-0.823106][0.468397,0.88693,0][0.871071,0.614666,-1.93213][0.340989,0.454117,-0.823106][0.84399,0.132978,0][0.768669,0.614677,-1.97455][0.340989,0.454117,-0.823106][0.834248,0.132977,0][0.808296,0.673946,-1.92543][0.340989,0.454117,-0.823106][0.839118,0.12713,0][0.768669,0.614677,-1.97455][0.0443114,0.321084,-0.946013][0.473539,0.484839,0][0.696242,0.536283,-2.00455][0.0443114,0.321084,-0.946013][0.467333,0.492351,0][0.682167,0.617397,-1.97768][0.0443114,0.321084,-0.946013][0.465928,0.48487,0][0.768669,0.614677,-1.97455][0.0443114,0.321084,-0.946013][0.7481,0.221461,0][0.696242,0.536283,-2.00455][0.0443114,0.321084,-0.946013][0.741894,0.228974,0][0.682167,0.617397,-1.97768][0.0443114,0.321084,-0.946013][0.740489,0.221493,0][0.943474,0.536283,-1.90214][0.637642,0.321078,-0.70023][0.619168,0.953993,0][0.871071,0.614666,-1.93213][0.637642,0.321078,-0.70023][0.609426,0.953986,0][0.934426,0.617397,-1.87319][0.637642,0.321078,-0.70023][0.6143,0.948142,0][0.943474,0.536283,-1.90214][0.637642,0.321078,-0.70023][0.748716,0.853357,0][0.871071,0.614666,-1.93213][0.637642,0.321078,-0.70023][0.738974,0.85335,0][0.934426,0.617397,-1.87319][0.637642,0.321078,-0.70023][0.743848,0.847506,0][0.934426,0.344355,-1.87319][0.85573,-0.256217,-0.449532][0.623213,0.687422,0][0.98667,0.480876,-1.85155][0.85573,-0.256217,-0.449532][0.617091,0.698877,0][1.01282,0.373283,-1.74044][0.85573,-0.256217,-0.449532][0.609426,0.687416,0][0.943464,0.425444,-1.90214][0.855528,-0.256065,-0.450003][0.840772,0.771551,0][0.98667,0.480876,-1.85155][0.855528,-0.256065,-0.450003][0.847297,0.77547,0][0.934426,0.344355,-1.87319][0.855528,-0.256065,-0.450003][0.83431,0.77557,0][0.934426,0.344355,-1.87319][0.85573,-0.256217,-0.449532][0.789755,0.574698,0][0.98667,0.480876,-1.85155][0.85573,-0.256217,-0.449532][0.783632,0.586153,0][1.01282,0.373283,-1.74044][0.85573,-0.256217,-0.449532][0.775968,0.574693,0][0.943464,0.425444,-1.90214][0.855528,-0.256065,-0.450003][0.911611,0.710017,0][0.98667,0.480876,-1.85155][0.855528,-0.256065,-0.450003][0.918137,0.713936,0][0.934426,0.344355,-1.87319][0.855528,-0.256065,-0.450003][0.90515,0.714036,0][0.943464,0.425444,-1.90214][0.760497,-4.27963e-005,-0.649342][0.660671,0.858322,0][0.943474,0.536283,-1.90214][0.760497,-4.27963e-005,-0.649342][0.670413,0.858323,0][0.98667,0.480876,-1.85155][0.760497,-4.27963e-005,-0.649342][0.665543,0.86417,0][0.943464,0.425444,-1.90214][0.760497,-4.27963e-005,-0.649342][0.686919,0.833672,0][0.943474,0.536283,-1.90214][0.760497,-4.27963e-005,-0.649342][0.696661,0.833673,0][0.98667,0.480876,-1.85155][0.760497,-4.27963e-005,-0.649342][0.691791,0.83952,0][0.808296,0.287806,-1.92543][0.520966,-0.618563,-0.588195][0.497826,0.775678,0][0.934426,0.344355,-1.87319][0.520966,-0.618563,-0.588195][0.484839,0.775808,0][0.872246,0.221123,-1.79867][0.520966,-0.618563,-0.588195][0.49121,0.763582,0][0.871048,0.347075,-1.93214][0.520963,-0.618196,-0.588584][0.869712,0.631096,0][0.934426,0.344355,-1.87319][0.520963,-0.618196,-0.588584][0.863178,0.627192,0][0.808296,0.287806,-1.92543][0.520963,-0.618196,-0.588584][0.876165,0.627064,0][0.808296,0.287806,-1.92543][0.520966,-0.618563,-0.588195][0.565608,0.726108,0][0.934426,0.344355,-1.87319][0.520966,-0.618563,-0.588195][0.55262,0.726238,0][0.872246,0.221123,-1.79867][0.520966,-0.618563,-0.588195][0.558992,0.714012,0][0.871048,0.347075,-1.93214][0.520963,-0.618196,-0.588584][0.834243,0.651915,0][0.934426,0.344355,-1.87319][0.520963,-0.618196,-0.588584][0.827709,0.64801,0][0.808296,0.287806,-1.92543][0.520963,-0.618196,-0.588584][0.840696,0.647883,0][0.682167,0.344355,-1.97768][0.047539,-0.618563,-0.784296][0.960739,0.3222,0][0.808296,0.287806,-1.92543][0.047539,-0.618563,-0.784296][0.966815,0.333679,0][0.67344,0.221123,-1.88101][0.047539,-0.618563,-0.784296][0.953028,0.333629,0][0.768645,0.347086,-1.97456][0.0478165,-0.618196,-0.784569][0.80609,0.647883,0][0.808296,0.287806,-1.92543][0.0478165,-0.618196,-0.784569][0.812692,0.651671,0][0.682167,0.344355,-1.97768][0.0478165,-0.618196,-0.784569][0.799709,0.652029,0][0.682167,0.344355,-1.97768][0.047539,-0.618563,-0.784296][0.968124,0.450451,0][0.808296,0.287806,-1.92543][0.047539,-0.618563,-0.784296][0.9742,0.46193,0][0.67344,0.221123,-1.88101][0.047539,-0.618563,-0.784296][0.960413,0.46188,0][0.768645,0.347086,-1.97456][0.0478165,-0.618196,-0.784569][0.841559,0.627064,0][0.808296,0.287806,-1.92543][0.0478165,-0.618196,-0.784569][0.848161,0.630852,0][0.682167,0.344355,-1.97768][0.0478165,-0.618196,-0.784569][0.835178,0.63121,0][0.629923,0.480876,-1.99932][-0.287225,-0.256218,-0.92296][0.484839,0.748343,0][0.682167,0.344355,-1.97768][-0.287225,-0.256218,-0.92296][0.491139,0.736986,0][0.532863,0.373283,-1.93924][-0.287225,-0.256218,-0.92296][0.498624,0.748565,0][0.696242,0.425469,-2.00455][-0.286746,-0.256065,-0.923151][0.960282,0.554366,0][0.682167,0.344355,-1.97768][-0.286746,-0.256065,-0.923151][0.953672,0.550592,0][0.629923,0.480876,-1.99932][-0.286746,-0.256065,-0.923151][0.966654,0.550207,0][0.629923,0.480876,-1.99932][-0.287225,-0.256218,-0.92296][0.55262,0.698774,0][0.682167,0.344355,-1.97768][-0.287225,-0.256218,-0.92296][0.558921,0.687416,0][0.532863,0.373283,-1.93924][-0.287225,-0.256218,-0.92296][0.566406,0.698995,0][0.696242,0.425469,-2.00455][-0.286746,-0.256065,-0.923151][0.855757,0.714177,0][0.682167,0.344355,-1.97768][-0.286746,-0.256065,-0.923151][0.849147,0.710402,0][0.629923,0.480876,-1.99932][-0.286746,-0.256065,-0.923151][0.862129,0.710017,0][0.696242,0.536283,-2.00455][-0.0786304,0,-0.996904][0.748714,0.874203,0][0.696242,0.425469,-2.00455][-0.0786304,0,-0.996904][0.738974,0.874203,0][0.629923,0.480876,-1.99932][-0.0786304,0,-0.996904][0.743844,0.868374,0][0.696242,0.536283,-2.00455][-0.0786304,0,-0.996904][0.591162,0.955824,0][0.696242,0.425469,-2.00455][-0.0786304,0,-0.996904][0.581422,0.955824,0][0.629923,0.480876,-1.99932][-0.0786304,0,-0.996904][0.586292,0.949995,0][0.696242,0.425469,-2.00455][0.0442558,-0.321077,-0.946019][0.660671,0.837454,0][0.768645,0.347086,-1.97456][0.0442558,-0.321077,-0.946019][0.670413,0.837461,0][0.682167,0.344355,-1.97768][0.0442558,-0.321077,-0.946019][0.665539,0.843305,0][0.696242,0.425469,-2.00455][0.0442558,-0.321077,-0.946019][0.581422,0.929127,0][0.768645,0.347086,-1.97456][0.0442558,-0.321077,-0.946019][0.591164,0.929134,0][0.682167,0.344355,-1.97768][0.0442558,-0.321077,-0.946019][0.586291,0.934978,0][0.768645,0.347086,-1.97456][0.340909,-0.454116,-0.82314][0.63823,0.768459,0][0.871048,0.347075,-1.93214][0.340909,-0.454116,-0.82314][0.647972,0.76846,0][0.808296,0.287806,-1.92543][0.340909,-0.454116,-0.82314][0.643102,0.774307,0][0.768645,0.347086,-1.97456][0.340909,-0.454116,-0.82314][0.981671,0.550207,0][0.871048,0.347075,-1.93214][0.340909,-0.454116,-0.82314][0.991413,0.550208,0][0.808296,0.287806,-1.92543][0.340909,-0.454116,-0.82314][0.986543,0.556055,0][0.871048,0.347075,-1.93214][0.637586,-0.321138,-0.700253][0.835077,0.180037,0][0.943464,0.425444,-1.90214][0.637586,-0.321138,-0.700253][0.841282,0.172527,0][0.934426,0.344355,-1.87319][0.637586,-0.321138,-0.700253][0.842689,0.180005,0][0.871048,0.347075,-1.93214][0.637586,-0.321138,-0.700253][0.985462,0.457961,0][0.943464,0.425444,-1.90214][0.637586,-0.321138,-0.700253][0.991667,0.450451,0][0.934426,0.344355,-1.87319][0.637586,-0.321138,-0.700253][0.993074,0.457929,0][0.768645,0.347086,-1.97456][0.382684,2.38103e-006,-0.923879][0.704007,0.647883,0][0.696242,0.425469,-2.00455][0.382684,2.38103e-006,-0.923879][0.71297,0.6517,0][0.871048,0.347075,-1.93214][0.382684,2.38103e-006,-0.923879][0.69497,0.651521,0][0.768645,0.347086,-1.97456][0.382684,2.38103e-006,-0.923879][0.493876,0.972106,0][0.696242,0.425469,-2.00455][0.382684,2.38103e-006,-0.923879][0.502839,0.975923,0][0.871048,0.347075,-1.93214][0.382684,2.38103e-006,-0.923879][0.484839,0.975745,0][0.696242,0.425469,-2.00455][0.382683,5.76299e-007,-0.92388][0.441638,0.82343,0][0.943464,0.425444,-1.90214][0.382683,5.76299e-007,-0.92388][0.465157,0.823432,0][0.871048,0.347075,-1.93214][0.382683,5.76299e-007,-0.92388][0.458268,0.83032,0][0.696242,0.425469,-2.00455][0.382683,5.76299e-007,-0.92388][0.925205,0.290904,0][0.943464,0.425444,-1.90214][0.382683,5.76299e-007,-0.92388][0.948724,0.290906,0][0.871048,0.347075,-1.93214][0.382683,5.76299e-007,-0.92388][0.941835,0.297794,0][0.696242,0.425469,-2.00455][0.382683,-4.11673e-007,-0.92388][0.51967,0.559947,0][0.696242,0.536283,-2.00455][0.382683,-4.11673e-007,-0.92388][0.51967,0.550207,0][0.943464,0.425444,-1.90214][0.382683,-4.11673e-007,-0.92388][0.54319,0.559949,0][0.696242,0.425469,-2.00455][0.382683,-4.11673e-007,-0.92388][0.447947,0.774115,0][0.696242,0.536283,-2.00455][0.382683,-4.11673e-007,-0.92388][0.447947,0.764375,0][0.943464,0.425444,-1.90214][0.382683,-4.11673e-007,-0.92388][0.471467,0.774117,0][0.696242,0.536283,-2.00455][0.382683,-3.41983e-007,-0.92388][0.674015,0.221461,0][0.943474,0.536283,-1.90214][0.382683,-3.41983e-007,-0.92388][0.697536,0.221461,0][0.943464,0.425444,-1.90214][0.382683,-3.41983e-007,-0.92388][0.697535,0.231203,0][0.696242,0.536283,-2.00455][0.382683,-3.41983e-007,-0.92388][0.768604,0.172527,0][0.943474,0.536283,-1.90214][0.382683,-3.41983e-007,-0.92388][0.792124,0.172527,0][0.943464,0.425444,-1.90214][0.382683,-3.41983e-007,-0.92388][0.792123,0.182269,0][0.696242,0.536283,-2.00455][0.382683,-1.34109e-006,-0.92388][0.763278,0.48958,0][0.768669,0.614677,-1.97455][0.382683,-1.34109e-006,-0.92388][0.770168,0.48269,0][0.943474,0.536283,-1.90214][0.382683,-1.34109e-006,-0.92388][0.786798,0.48958,0][0.696242,0.536283,-2.00455][0.382683,-1.34109e-006,-0.92388][0.840431,0.457341,0][0.768669,0.614677,-1.97455][0.382683,-1.34109e-006,-0.92388][0.847321,0.450451,0][0.943474,0.536283,-1.90214][0.382683,-1.34109e-006,-0.92388][0.863951,0.457341,0][0.768669,0.614677,-1.97455][0.382684,1.7989e-006,-0.923879][0.7603,0.687595,0][0.871071,0.614666,-1.93213][0.382684,1.7989e-006,-0.923879][0.751263,0.691233,0][0.943474,0.536283,-1.90214][0.382684,1.7989e-006,-0.923879][0.7423,0.687416,0][0.768669,0.614677,-1.97455][0.382684,1.7989e-006,-0.923879][0.875586,0.550385,0][0.871071,0.614666,-1.93213][0.382684,1.7989e-006,-0.923879][0.866549,0.554024,0][0.943474,0.536283,-1.90214][0.382684,1.7989e-006,-0.923879][0.857586,0.550207,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/fedora.mesh b/charcustom/hats/fonts/fedora.mesh
new file mode 100644
index 0000000..803821e
--- /dev/null
+++ b/charcustom/hats/fonts/fedora.mesh
@@ -0,0 +1,3 @@
+version 1.00
+750
+[0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0,0.334902,0.966632][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][-1.61581e-006,-0.468486,-1.4977][-0.0350084,-0.97518,0.218628][0.5,0.296803,1.03701][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.5,0.315228,1.19469][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][-1.61581e-006,-0.468486,-1.4977][-0.0350084,-0.97518,0.218628][0.5,0.296803,1.03701][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0,0.334902,0.966632][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0,0.334902,0.966632][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][0,0.280936,0.828276][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-1.61581e-006,-0.468486,-1.4977][-0.0350084,-0.97518,0.218628][0.5,0.296803,1.03701][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][-1.32932e-006,0.604076,0.498324][-0.0501094,0.990448,0.128458][0,0.433922,0.232857][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.5,0.402523,0.252281][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0,0.33801,0.953959][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][-1.61656e-006,-0.439237,-1.50267][0.0215734,0.968956,-0.246292][0.5,0.301147,1.02997][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.5,0.315228,1.19469][-1.61656e-006,-0.439237,-1.50267][0.0215734,0.968956,-0.246292][0.5,0.301147,1.02997][0.366204,-0.413756,-1.09232][-0.0272497,0.999608,-0.00641691][0.451404,0.265046,0.875089][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.402485,0.266172,0.870468][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][0.366204,-0.413756,-1.09232][-0.0272497,0.999608,-0.00641691][0.451404,0.265046,0.875089][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.402485,0.266172,0.870468][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.352776,0.267852,0.86273][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.402485,0.266172,0.870468][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.352776,0.267852,0.86273][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.301897,0.270148,0.853064][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.352776,0.267852,0.86273][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.301897,0.270148,0.853064][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.250065,0.273294,0.843781][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.301897,0.270148,0.853064][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.250065,0.273294,0.843781][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.198226,0.277198,0.836725][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.250065,0.273294,0.843781][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.198226,0.277198,0.836725][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.147327,0.281164,0.831951][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.198226,0.277198,0.836725][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.147327,0.281164,0.831951][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.0975893,0.28434,0.828551][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.147327,0.281164,0.831951][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.0975893,0.28434,0.828551][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.0486346,0.286267,0.826182][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.0975893,0.28434,0.828551][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.0486346,0.286267,0.826182][-1.19528e-006,-0.269424,1.28735][-0.0292524,0.968634,-0.246766][0,0.286895,0.825283][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0,0.33801,0.953959][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0,0.33801,0.953959][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.0486346,0.286267,0.826182][-1.56321e-006,-0.417211,-1.14929][-0.00195964,0.998846,-0.0479822][0.5,0.264633,0.876571][0.366204,-0.413756,-1.09232][-0.0272497,0.999608,-0.00641691][0.451404,0.265046,0.875089][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][-1.61656e-006,-0.439237,-1.50267][0.0215734,0.968956,-0.246292][0.5,0.301147,1.02997][-1.56321e-006,-0.417211,-1.14929][-0.00195964,0.998846,-0.0479822][0.5,0.264633,0.876571][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0,0.328,0.716493][-1.21018e-006,-0.269424,1.28735][0.152736,0.219637,0.963551][0,0.286895,0.825283][-1.21018e-006,-0.269424,1.28735][0.152736,0.219637,0.963551][0,0.286895,0.825283][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.0486346,0.286267,0.826182][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.0486346,0.286267,0.826182][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.0486346,0.286267,0.826182][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.0975893,0.28434,0.828551][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.0975893,0.28434,0.828551][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.0975893,0.28434,0.828551][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.147327,0.281164,0.831951][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.147327,0.281164,0.831951][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.147327,0.281164,0.831951][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.198226,0.277198,0.836725][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.198226,0.277198,0.836725][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.198226,0.277198,0.836725][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.250065,0.273294,0.843781][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.250065,0.273294,0.843781][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.250065,0.273294,0.843781][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.301897,0.270148,0.853064][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.301897,0.270148,0.853064][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.301897,0.270148,0.853064][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0.352776,0.267852,0.86273][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0.352776,0.267852,0.86273][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0.352776,0.267852,0.86273][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.402485,0.266172,0.870468][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.402485,0.266172,0.870468][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.402485,0.266172,0.870468][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.451404,0.265046,0.875089][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][-1.56889e-006,-0.09622,-1.08825][0.14995,0.185375,-0.97116][0.5,0.309288,0.744984][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.451404,0.265046,0.875089][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.451404,0.265046,0.875089][-1.57811e-006,-0.417211,-1.14929][0.149372,0.184711,-0.971375][0.5,0.264633,0.876571][-1.56889e-006,-0.09622,-1.08825][0.14995,0.185375,-0.97116][0.5,0.309288,0.744984][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0,0.402509,0.584858][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0,0.328,0.716493][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0,0.328,0.716493][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.428496,0.333097,0.670289][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][-1.5583e-006,0.2051,-1.01813][0.196082,0.278284,-0.940271][0.5,0.365438,0.633752][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][-1.56889e-006,-0.09622,-1.08825][0.14995,0.185375,-0.97116][0.5,0.309288,0.744984][-1.5583e-006,0.2051,-1.01813][0.196082,0.278284,-0.940271][0.5,0.365438,0.633752][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][0,0.467215,0.518605][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0,0.402509,0.584858][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0,0.402509,0.584858][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.271054,0.421092,0.53239][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.464148,0.443671,0.531074][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][-1.5583e-006,0.2051,-1.01813][0.196082,0.278284,-0.940271][0.5,0.365438,0.633752][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.428496,0.333097,0.670289][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.428496,0.333097,0.670289][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.428496,0.333097,0.670289][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.271054,0.421092,0.53239][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.271054,0.421092,0.53239][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.464148,0.443671,0.531074][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.271054,0.421092,0.53239][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][0,0.484511,0.472248][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][0,0.484511,0.472248][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0,0.480366,0.499763][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0,0.480366,0.499763][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0,0.480366,0.499763][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][0,0.467215,0.518605][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][-1.54356e-006,0.56027,-0.920514][0.100092,0.928843,-0.356697][0.5,0.457139,0.530897][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.5,0.46121,0.503676][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][-1.54356e-006,0.56027,-0.920514][0.100092,0.928843,-0.356697][0.5,0.457139,0.530897][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][-1.54356e-006,0.56027,-0.920514][0.100092,0.928843,-0.356697][0.5,0.457139,0.530897][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.464148,0.443671,0.531074][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][-1.23421e-006,0.59405,1.0403][1,0,-1.50996e-007][1,0.467215,0.518605][-1.24676e-006,0.651164,0.957184][1,0,-1.50996e-007][1,0.484511,0.472248][-1.23905e-006,0.636416,1.00823][1,0,-1.50996e-007][1,0.480366,0.499763][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.464148,0.443671,0.531074][-1.52285e-006,0.579169,-0.871301][1,0,-1.50994e-007][0.5,0.46121,0.503676][-1.53444e-006,0.515313,-0.948047][1,0,-1.50994e-007][0.5,0.444549,0.549031][-1.53028e-006,0.56027,-0.920514][1,0,-1.50994e-007][0.5,0.457139,0.530897][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0,0.455968,0.399404][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][0,0.484511,0.472248][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][0,0.484511,0.472248][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][-1.513e-006,0.514549,-0.718111][-0.135728,0.913561,0.383384][0.5,0.428544,0.429309][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.5,0.46121,0.503676][-1.513e-006,0.514549,-0.718111][-0.135728,0.913561,0.383384][0.5,0.428544,0.429309][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0,0.423786,0.343594][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0,0.455968,0.399404][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0,0.455968,0.399404][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][-1.4939e-006,0.464081,-0.591636][-0.132853,0.922038,0.363589][0.5,0.393303,0.372036][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][-1.513e-006,0.514549,-0.718111][-0.135728,0.913561,0.383384][0.5,0.428544,0.429309][-1.4939e-006,0.464081,-0.591636][-0.132853,0.922038,0.363589][0.5,0.393303,0.372036][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][-1.32932e-006,0.604076,0.498324][-0.0501094,0.990448,0.128458][0,0.433922,0.232857][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0,0.423786,0.343594][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0,0.423786,0.343594][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.5,0.402523,0.252281][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][-1.4939e-006,0.464081,-0.591636][-0.132853,0.922038,0.363589][0.5,0.393303,0.372036][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.5,0.402523,0.252281][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][1,0.467215,0.518605][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][1,0.480366,0.499763][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][1,0.484511,0.472248][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.5,0.46121,0.503676][-1.54356e-006,0.56027,-0.920514][0.100092,0.928843,-0.356697][0.5,0.457139,0.530897][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.5,0.315228,1.19469][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][1,0.334902,0.966632][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-1.61581e-006,-0.468486,-1.4977][0.0215601,-0.968847,0.246721][0.5,0.296803,1.03701][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.5,0.315228,1.19469][-1.61581e-006,-0.468486,-1.4977][0.0215601,-0.968847,0.246721][0.5,0.296803,1.03701][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][1,0.280936,0.828276][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][1,0.334902,0.966632][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][1,0.334902,0.966632][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-1.61581e-006,-0.468486,-1.4977][0.0215601,-0.968847,0.246721][0.5,0.296803,1.03701][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-1.31442e-006,0.604075,0.498324][0.0501163,0.990448,0.12846][0,0.433921,0.232857][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.5,0.402522,0.252281][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][1,0.33801,0.953958][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-1.61656e-006,-0.439237,-1.50267][0.00830995,0.951605,-0.307212][0.5,0.301147,1.02997][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.5,0.315228,1.19469][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-1.61656e-006,-0.439237,-1.50267][0.00830995,0.951605,-0.307212][0.5,0.301147,1.02997][-0.366208,-0.413756,-1.09232][0.0396848,0.997687,-0.0551923][0.548596,0.265046,0.875089][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.366208,-0.413756,-1.09232][0.0396848,0.997687,-0.0551923][0.548596,0.265046,0.875089][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.647223,0.267852,0.86273][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.647223,0.267852,0.86273][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.647223,0.267852,0.86273][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.852673,0.281164,0.831951][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.852673,0.281164,0.831951][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.902411,0.28434,0.828551][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.852673,0.281164,0.831951][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.902411,0.28434,0.828551][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.902411,0.28434,0.828551][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][1,0.33801,0.953958][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][1,0.33801,0.953958][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][1,0.286895,0.825282][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-1.56321e-006,-0.417211,-1.14929][0.0111701,0.998001,-0.0622027][0.5,0.264633,0.876571][-1.61656e-006,-0.439237,-1.50267][0.00830995,0.951605,-0.307212][0.5,0.301147,1.02997][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-0.366208,-0.413756,-1.09232][0.0396848,0.997687,-0.0551923][0.548596,0.265046,0.875089][-1.56321e-006,-0.417211,-1.14929][0.0111701,0.998001,-0.0622027][0.5,0.264633,0.876571][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][1,0.286895,0.825282][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][1,0.286895,0.825282][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][1,0.328,0.716493][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.902411,0.28434,0.828551][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.852673,0.281164,0.831951][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.902411,0.28434,0.828551][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.902411,0.28434,0.828551][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.647223,0.267852,0.86273][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.647223,0.267852,0.86273][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.647223,0.267852,0.86273][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.548596,0.265046,0.875089][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-1.55399e-006,-0.09622,-1.08825][-0.149372,0.184711,-0.971375][0.5,0.309288,0.744984][-1.56321e-006,-0.417211,-1.14929][-0.149372,0.184711,-0.971375][0.5,0.264633,0.876571][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.548596,0.265046,0.875089][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.548596,0.265046,0.875089][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-1.55399e-006,-0.09622,-1.08825][-0.149372,0.184711,-0.971375][0.5,0.309288,0.744984][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][1,0.328,0.716493][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][1,0.328,0.716493][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][1,0.402509,0.584859][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.571504,0.333097,0.670289][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-1.5434e-006,0.2051,-1.01813][-0.148471,0.224147,-0.963179][0.5,0.365438,0.633752][-1.55399e-006,-0.09622,-1.08825][-0.149372,0.184711,-0.971375][0.5,0.309288,0.744984][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-1.5434e-006,0.2051,-1.01813][-0.148471,0.224147,-0.963179][0.5,0.365438,0.633752][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][1,0.402509,0.584859][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][1,0.402509,0.584859][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][1,0.467215,0.518605][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.728946,0.421092,0.53239][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-1.5434e-006,0.2051,-1.01813][-0.148471,0.224147,-0.963179][0.5,0.365438,0.633752][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.535852,0.443671,0.531074][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.571504,0.333097,0.670289][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.571504,0.333097,0.670289][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.571504,0.333097,0.670289][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.728946,0.421092,0.53239][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.728946,0.421092,0.53239][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.535852,0.443671,0.531074][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.728946,0.421092,0.53239][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][1,0.480366,0.499763][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][1,0.467215,0.518605][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][1,0.480366,0.499763][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][1,0.480366,0.499763][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-1.52866e-006,0.56027,-0.920515][-0.0738041,0.946764,-0.313353][0.5,0.457139,0.530897][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.5,0.46121,0.503676][-1.52866e-006,0.56027,-0.920515][-0.0738041,0.946764,-0.313353][0.5,0.457139,0.530897][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.535852,0.443671,0.531074][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-1.52866e-006,0.56027,-0.920515][-0.0738041,0.946764,-0.313353][0.5,0.457139,0.530897][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-1.23421e-006,0.59405,1.0403][-1,0,1.50996e-007][1,0.467215,0.518605][-1.23905e-006,0.636416,1.00823][-1,0,1.50996e-007][1,0.480366,0.499763][-1.24676e-006,0.651164,0.957184][-1,0,1.50996e-007][1,0.484511,0.472248][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.535852,0.443671,0.531074][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-1.52285e-006,0.579169,-0.871301][-1,0,1.50997e-007][0.5,0.46121,0.503676][-1.53028e-006,0.56027,-0.920515][-1,0,1.50997e-007][0.5,0.457139,0.530897][-1.53444e-006,0.515313,-0.948047][-1,0,1.50997e-007][0.5,0.444549,0.549031][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][1,0.455968,0.399404][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-1.4981e-006,0.514549,-0.718112][0.134757,0.912974,0.385122][0.5,0.428544,0.42931][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.5,0.46121,0.503676][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-1.4981e-006,0.514549,-0.718112][0.134757,0.912974,0.385122][0.5,0.428544,0.42931][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][1,0.455968,0.399404][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][1,0.455968,0.399404][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][1,0.423786,0.343594][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-1.479e-006,0.46408,-0.591636][0.130798,0.920804,0.367441][0.5,0.393302,0.372036][-1.4981e-006,0.514549,-0.718112][0.134757,0.912974,0.385122][0.5,0.428544,0.42931][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-1.479e-006,0.46408,-0.591636][0.130798,0.920804,0.367441][0.5,0.393302,0.372036][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][1,0.423786,0.343594][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][1,0.423786,0.343594][-1.31442e-006,0.604075,0.498324][0.0501163,0.990448,0.12846][1,0.433921,0.232857][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.5,0.402522,0.252281][-1.479e-006,0.46408,-0.591636][0.130798,0.920804,0.367441][0.5,0.393302,0.372036][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.5,0.402522,0.252281][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][1,0.467215,0.518605][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][1,0.480366,0.499763][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.5,0.46121,0.503676][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-1.52866e-006,0.56027,-0.920515][-0.0738041,0.946764,-0.313353][0.5,0.457139,0.530897][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.5,0.315228,1.19469][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.852673,0.281164,0.831951][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.852673,0.281164,0.831951][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.249873,0.259895,0.827717][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.249873,0.259895,0.827717][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.249873,0.259895,0.827717][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][-0.0499125,0.265289,0.792852][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][-0.0499125,0.265289,0.792852][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][-0.0485672,0.282629,0.83875][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.950087,0.265289,0.792852][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][0,0.280936,0.828276][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][-0.0485672,0.282629,0.83875][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.249873,0.259895,0.827717][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.13513,-0.372272,0.0704276][0.000140897,-0.998154,0.0607385][0.750127,0.259895,0.827716][-1.13513,-0.372272,0.0704276][0.000140897,-0.998154,0.0607385][0.750127,0.259895,0.827716][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.13513,-0.372272,0.0704276][0.000140897,-0.998154,0.0607385][0.750127,0.259895,0.827716][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.13513,-0.372272,0.0704276][0.000140897,-0.998154,0.0607385][0.750127,0.259895,0.827716][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.789007,0.299952,0.49297][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.687308,0.301213,0.52246][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.64163,0.301595,0.534995][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.594108,0.3012,0.54387][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.54706,0.300911,0.549463][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.453405,0.300777,0.549143][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.4063,0.300941,0.543257][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.358684,0.301228,0.534139][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.312889,0.300765,0.521442][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.210861,0.29945,0.491904][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.159423,0.298526,0.47858][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.106902,0.297716,0.468024][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0535319,0.297179,0.461313][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][0.999707,0.297047,0.459126][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][0.945918,0.297364,0.461675][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][-0.0719281,0.295686,0.460276][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.892649,0.298057,0.468707][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.840275,0.298976,0.479505][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][-0.0719281,0.295686,0.460276][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][-0.204803,0.29899,0.489513][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][-0.204803,0.29899,0.489513][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.54706,0.300911,0.549463][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.54706,0.300911,0.549463][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.54706,0.300911,0.549463][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.453405,0.300777,0.549143][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.453405,0.300777,0.549143][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.453405,0.300777,0.549143][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.4063,0.300941,0.543257][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.4063,0.300941,0.543257][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.4063,0.300941,0.543257][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.358684,0.301228,0.534139][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.358684,0.301228,0.534139][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.358684,0.301228,0.534139][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.312889,0.300765,0.521442][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.312889,0.300765,0.521442][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.312889,0.300765,0.521442][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.840275,0.298976,0.479505][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.840275,0.298976,0.479505][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.840275,0.298976,0.479505][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.892649,0.298057,0.468707][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.892649,0.298057,0.468707][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.892649,0.298057,0.468707][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0535319,0.297179,0.461313][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0535319,0.297179,0.461313][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0535319,0.297179,0.461313][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][-0.0499125,0.265289,0.792852][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][-0.054082,0.297364,0.461675][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][-0.054082,0.297364,0.461675][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.950087,0.265289,0.792852][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][0.945918,0.297364,0.461675][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.950087,0.265289,0.792852][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.210861,0.29945,0.491904][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.210861,0.29945,0.491904][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.210861,0.29945,0.491904][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.159423,0.298526,0.47858][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.159423,0.298526,0.47858][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.159423,0.298526,0.47858][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.106902,0.297716,0.468024][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.106902,0.297716,0.468024][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.106902,0.297716,0.468024][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.64163,0.301595,0.534995][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.64163,0.301595,0.534995][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.64163,0.301595,0.534995][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.687308,0.301213,0.52246][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.687308,0.301213,0.52246][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.687308,0.301213,0.52246][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.789007,0.299952,0.49297][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.789007,0.299952,0.49297][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.789007,0.299952,0.49297][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.594108,0.3012,0.54387][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.594108,0.3012,0.54387][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.594108,0.3012,0.54387][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/hardhat.mesh b/charcustom/hats/fonts/hardhat.mesh
new file mode 100644
index 0000000..56ae189
--- /dev/null
+++ b/charcustom/hats/fonts/hardhat.mesh
@@ -0,0 +1,3 @@
+version 1.00
+336
+[0,-0.490867,-1.11174][0,0.997407,-0.0719623][0.819629,0.104198,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][-0.487597,-0.51939,-0.977498][-0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][-0.487597,-0.51939,-0.977498][-0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.487597,-0.51939,-0.977498][-0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.900961,-0.573056,-0.67348][-0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][-0.487597,-0.51939,-0.977498][-0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][-0.900961,-0.573056,-0.67348][-0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-1.17716,-0.589729,-0.253272][-0.306254,0.945013,-0.114713][0.565884,0.0749761,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-0.900961,-0.573056,-0.67348][-0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.17716,-0.589729,-0.253272][-0.306254,0.945013,-0.114713][0.565884,0.0749761,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.27415,-0.589729,0.247418][-0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][-1.17716,-0.589729,-0.253272][-0.306254,0.945013,-0.114713][0.565884,0.0749761,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.27415,-0.589729,0.247418][-0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.17716,-0.589729,0.723426][-0.344142,0.931081,0.121057][0.277192,0.0749761,0][-1.27415,-0.589729,0.247418][-0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-1.17716,-0.589729,0.723426][-0.344142,0.931081,0.121057][0.277192,0.0749761,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-0.900961,-0.589729,1.12697][-0.259181,0.937923,0.230489][0.157914,0.0749761,0][-1.17716,-0.589729,0.723426][-0.344142,0.931081,0.121057][0.277192,0.0749761,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.900961,-0.589729,1.12697][-0.259181,0.937923,0.230489][0.157914,0.0749761,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.487596,-0.589729,1.3966][-0.134145,0.956075,0.260624][0.0782153,0.0749761,0][-0.900961,-0.589729,1.12697][-0.259181,0.937923,0.230489][0.157914,0.0749761,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][-0.487596,-0.589729,1.3966][-0.134145,0.956075,0.260624][0.0782153,0.0749761,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.589729,1.49129][-0.0524018,0.960777,0.272327][0.0502288,0.0749761,0][-0.487596,-0.589729,1.3966][-0.134145,0.956075,0.260624][0.0782153,0.0749761,0][0,-0.589729,1.49129][-0.0524018,0.960777,0.272327][0.0502288,0.0749761,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.63172,1.63849][0,0.563189,0.826328][0.00671747,0.062565,0][-0.514644,-0.689224,-1.55514][-0.310201,-0.000303658,-0.950671][0.950689,0.0455678,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0,-0.667683,-1.63508][0,-0.0246183,-0.999697][0.974316,0.051935,0][-0.514644,-0.689224,-1.55514][-0.310201,-0.000303658,-0.950671][0.950689,0.0455678,0][-0.891475,-0.722483,-1.27884][-0.73771,0.00891465,-0.675059][0.869019,0.0357373,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][-0.514644,-0.689224,-1.55514][-0.310201,-0.000303658,-0.950671][0.950689,0.0455678,0][-0.891475,-0.722483,-1.27884][-0.73771,0.00891465,-0.675059][0.869019,0.0357373,0][-1.08329,-0.754086,-0.73661][-0.933096,0.00320822,-0.359614][0.708748,0.026396,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.891475,-0.722483,-1.27884][-0.73771,0.00891465,-0.675059][0.869019,0.0357373,0][-1.08329,-0.754086,-0.73661][-0.933096,0.00320822,-0.359614][0.708748,0.026396,0][-1.28536,-0.754086,-0.289185][-0.942598,-0.000634785,-0.333928][0.576499,0.026396,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-1.08329,-0.754086,-0.73661][-0.933096,0.00320822,-0.359614][0.708748,0.026396,0][-1.28536,-0.754086,-0.289185][-0.942598,-0.000634785,-0.333928][0.576499,0.026396,0][-1.38079,-0.754086,0.270556][-0.999351,-0.00856282,-0.0349787][0.411051,0.026396,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.28536,-0.754086,-0.289185][-0.942598,-0.000634785,-0.333928][0.576499,0.026396,0][-1.38079,-0.754086,0.270556][-0.999351,-0.00856282,-0.0349787][0.411051,0.026396,0][-1.25091,-0.754086,0.804845][-0.937425,-0.030814,0.346821][0.253126,0.026396,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.38079,-0.754086,0.270556][-0.999351,-0.00856282,-0.0349787][0.411051,0.026396,0][-1.25091,-0.754086,0.804845][-0.937425,-0.030814,0.346821][0.253126,0.026396,0][-0.962957,-0.754086,1.22898][-0.753583,-0.000333737,0.657353][0.127761,0.026396,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-1.25091,-0.754086,0.804845][-0.937425,-0.030814,0.346821][0.253126,0.026396,0][-0.962957,-0.754086,1.22898][-0.753583,-0.000333737,0.657353][0.127761,0.026396,0][-0.538533,-0.754086,1.53381][-0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.962957,-0.754086,1.22898][-0.753583,-0.000333737,0.657353][0.127761,0.026396,0][-0.538533,-0.754086,1.53381][-0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0,-0.754086,1.62495][0,-0.0632444,0.997998][0.0107195,0.026396,0][0,-0.63172,1.63849][0,0.563189,0.826328][0.00671747,0.062565,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][-0.538533,-0.754086,1.53381][-0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0,-0.754086,1.62495][0,-0.0632444,0.997998][0.0107195,0.026396,0][0.487597,-0.51939,-0.977498][0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0,-0.490867,-1.11174][0,0.997407,-0.0719623][0.819629,0.104198,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.514644,-0.689224,-1.55514][0.310201,-0.000303627,-0.950671][0.950689,0.0455678,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0.487597,-0.51939,-0.977498][0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][0.891475,-0.722483,-1.27884][0.73771,0.00891464,-0.675059][0.869019,0.0357373,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.487597,-0.51939,-0.977498][0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][0.487597,-0.51939,-0.977498][0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0.900961,-0.573056,-0.67348][0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][0.900961,-0.573056,-0.67348][0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][0.900961,-0.573056,-0.67348][0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][1.17716,-0.589729,-0.253272][0.306254,0.945013,-0.114713][0.565884,0.0749761,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.28537,-0.754086,-0.289185][0.942598,-0.000634829,-0.333928][0.576499,0.026396,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.17716,-0.589729,-0.253272][0.306254,0.945013,-0.114713][0.565884,0.0749761,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.17716,-0.589729,-0.253272][0.306254,0.945013,-0.114713][0.565884,0.0749761,0][1.27415,-0.589729,0.247418][0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.38079,-0.754086,0.270556][0.999351,-0.00856283,-0.0349787][0.411051,0.026396,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.27415,-0.589729,0.247418][0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.27415,-0.589729,0.247418][0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][1.17716,-0.589729,0.723426][0.344142,0.931081,0.121057][0.277192,0.0749761,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][1.25091,-0.754086,0.804845][0.937425,-0.030814,0.346821][0.253126,0.026396,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.17716,-0.589729,0.723426][0.344142,0.931081,0.121057][0.277192,0.0749761,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][1.17716,-0.589729,0.723426][0.344142,0.931081,0.121057][0.277192,0.0749761,0][0.900961,-0.589729,1.12697][0.259181,0.937923,0.230489][0.157914,0.0749761,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.962958,-0.754086,1.22898][0.753583,-0.000333753,0.657353][0.127761,0.026396,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][0.900961,-0.589729,1.12697][0.259181,0.937923,0.230489][0.157914,0.0749761,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.900961,-0.589729,1.12697][0.259181,0.937923,0.230489][0.157914,0.0749761,0][0.487596,-0.589729,1.3966][0.134145,0.956075,0.260624][0.0782153,0.0749761,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0.538534,-0.754086,1.53381][0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.487596,-0.589729,1.3966][0.134145,0.956075,0.260624][0.0782153,0.0749761,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.589729,1.49129][0.0524018,0.960777,0.272327][0.0502288,0.0749761,0][0,-0.63172,1.63849][0,0.563189,0.826328][0.00671747,0.062565,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0.487596,-0.589729,1.3966][0.134145,0.956075,0.260624][0.0782153,0.0749761,0][0,-0.589729,1.49129][0.0524018,0.960777,0.272327][0.0502288,0.0749761,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0.514644,-0.689224,-1.55514][0.310201,-0.000303627,-0.950671][0.950689,0.0455678,0][0,-0.667683,-1.63508][0,-0.0246183,-0.999697][0.974316,0.051935,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.891475,-0.722483,-1.27884][0.73771,0.00891464,-0.675059][0.869019,0.0357373,0][0.514644,-0.689224,-1.55514][0.310201,-0.000303627,-0.950671][0.950689,0.0455678,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][1.08329,-0.754086,-0.73661][0.933096,0.0032082,-0.359614][0.708748,0.026396,0][0.891475,-0.722483,-1.27884][0.73771,0.00891464,-0.675059][0.869019,0.0357373,0][1.08329,-0.754086,-0.73661][0.933096,0.0032082,-0.359614][0.708748,0.026396,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.28537,-0.754086,-0.289185][0.942598,-0.000634829,-0.333928][0.576499,0.026396,0][1.08329,-0.754086,-0.73661][0.933096,0.0032082,-0.359614][0.708748,0.026396,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.38079,-0.754086,0.270556][0.999351,-0.00856283,-0.0349787][0.411051,0.026396,0][1.28537,-0.754086,-0.289185][0.942598,-0.000634829,-0.333928][0.576499,0.026396,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.25091,-0.754086,0.804845][0.937425,-0.030814,0.346821][0.253126,0.026396,0][1.38079,-0.754086,0.270556][0.999351,-0.00856283,-0.0349787][0.411051,0.026396,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][0.962958,-0.754086,1.22898][0.753583,-0.000333753,0.657353][0.127761,0.026396,0][1.25091,-0.754086,0.804845][0.937425,-0.030814,0.346821][0.253126,0.026396,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.538534,-0.754086,1.53381][0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0.962958,-0.754086,1.22898][0.753583,-0.000333753,0.657353][0.127761,0.026396,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.754086,1.62495][0,-0.0632444,0.997998][0.0107195,0.026396,0][0.538534,-0.754086,1.53381][0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0,-0.754086,1.62495][0,-0.0632444,0.997998][0.0107195,0.026396,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.63172,1.63849][0,0.563189,0.826328][0.00671747,0.062565,0][-0.487597,-0.51939,-0.977498][-0.365164,0.129609,-0.921877][0.916322,0.568891,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][0,-0.490867,-1.11174][0,0.198153,-0.980171][0.962556,0.578714,0][-0.487597,-0.51939,-0.977498][-0.365164,0.129609,-0.921877][0.916322,0.568891,0][-0.900961,-0.573056,-0.67348][-0.679728,0.0850082,-0.728522][0.811616,0.550407,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][-0.487597,-0.51939,-0.977498][-0.365164,0.129609,-0.921877][0.916322,0.568891,0][-0.900961,-0.573056,-0.67348][-0.679728,0.0850082,-0.728522][0.811616,0.550407,0][-1.17716,-0.589729,-0.253272][-0.897581,0.10676,-0.427727][0.666894,0.544665,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][-0.900961,-0.573056,-0.67348][-0.679728,0.0850082,-0.728522][0.811616,0.550407,0][-1.17716,-0.589729,-0.253272][-0.897581,0.10676,-0.427727][0.666894,0.544665,0][-1.27415,-0.589729,0.247418][-0.990084,0.127613,-0.0587277][0.494452,0.544665,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-1.17716,-0.589729,-0.253272][-0.897581,0.10676,-0.427727][0.666894,0.544665,0][-1.27415,-0.589729,0.247418][-0.990084,0.127613,-0.0587277][0.494452,0.544665,0][-1.17716,-0.589729,0.723426][-0.937694,0.126031,0.323799][0.330511,0.544665,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-1.27415,-0.589729,0.247418][-0.990084,0.127613,-0.0587277][0.494452,0.544665,0][-1.17716,-0.589729,0.723426][-0.937694,0.126031,0.323799][0.330511,0.544665,0][-0.900961,-0.589729,1.12697][-0.741447,0.113284,0.66138][0.191529,0.544665,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.17716,-0.589729,0.723426][-0.937694,0.126031,0.323799][0.330511,0.544665,0][-0.900961,-0.589729,1.12697][-0.741447,0.113284,0.66138][0.191529,0.544665,0][-0.487596,-0.589729,1.3966][-0.434575,0.0984719,0.895236][0.0986643,0.544665,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-0.900961,-0.589729,1.12697][-0.741447,0.113284,0.66138][0.191529,0.544665,0][-0.487596,-0.589729,1.3966][-0.434575,0.0984719,0.895236][0.0986643,0.544665,0][0,-0.589729,1.49129][-0.191073,0.0891913,0.977515][0.0660544,0.544665,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.487596,-0.589729,1.3966][-0.434575,0.0984719,0.895236][0.0986643,0.544665,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][0,-0.589729,1.49129][-0.191073,0.0891913,0.977515][0.0660544,0.544665,0][0,-0.180622,1.45456][-0.182844,0.32083,0.92932][0.0787042,0.685565,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][0,-0.180622,1.45456][-0.182844,0.32083,0.92932][0.0787042,0.685565,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][0,-0.180622,1.45456][-0.182844,0.32083,0.92932][0.0787042,0.685565,0][0,0.197342,1.27079][-0.155408,0.593247,0.789878][0.141995,0.815738,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][0,0.486626,-0.486993][0,0.768179,-0.640235][0.747389,0.91537,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.203781,0.494444,-0.45254][-0.252356,0.829642,-0.498008][0.735523,0.918063,0][-0.203781,0.494444,-0.45254][-0.252356,0.829642,-0.498008][0.735523,0.918063,0][0,0.486626,-0.486993][0,0.768179,-0.640235][0.747389,0.91537,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.203781,0.494444,-0.45254][-0.252356,0.829642,-0.498008][0.735523,0.918063,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][0,0.197342,1.27079][-0.155408,0.593247,0.789878][0.141995,0.815738,0][-0.209924,0.494444,0.901674][-0.232137,0.830262,0.506732][0.269121,0.918063,0][-0.209924,0.494444,0.901674][-0.232137,0.830262,0.506732][0.269121,0.918063,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.171644,0.643177,0.0823421][-0.249803,0.950627,-0.184137][0.551306,0.969287,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.200857,0.656207,0.247418][-0.309798,0.950802,0.000492366][0.494452,0.973775,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.209924,0.494444,0.901674][-0.232137,0.830262,0.506732][0.269121,0.918063,0][-0.171644,0.643177,0.417257][-0.256156,0.946623,0.195677][0.435958,0.969287,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.171644,0.643177,0.417257][-0.256156,0.946623,0.195677][0.435958,0.969287,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.171644,0.643177,0.417257][-0.256156,0.946623,0.195677][0.435958,0.969287,0][-0.200857,0.656207,0.247418][-0.309798,0.950802,0.000492366][0.494452,0.973775,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.200857,0.656207,0.247418][-0.309798,0.950802,0.000492366][0.494452,0.973775,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.200857,0.656207,0.247418][-0.309798,0.950802,0.000492366][0.494452,0.973775,0][-0.171644,0.643177,0.0823421][-0.249803,0.950627,-0.184137][0.551306,0.969287,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.171644,0.643177,0.0823421][-0.249803,0.950627,-0.184137][0.551306,0.969287,0][-0.203781,0.494444,-0.45254][-0.252356,0.829642,-0.498008][0.735523,0.918063,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-0.656487,-0.0564604,-0.714074][-0.17931,0.953931,-0.240549][0.825597,0.728327,0][-0.656487,-0.0564604,-0.714074][-0.17931,0.953931,-0.240549][0.825597,0.728327,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.656487,-0.0564604,-0.714074][-0.17931,0.953931,-0.240549][0.825597,0.728327,0][-0.522068,-0.197892,-0.870284][0.649072,0.315918,-0.692027][0.879397,0.679617,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.516993,-0.598087,-0.874311][0.681081,0.0160037,-0.732033][0.880784,0.541786,0][-0.660379,-0.600361,-1.00777][0.35897,0.0131129,-0.933257][0.926747,0.541003,0][-0.522068,-0.197892,-0.870284][0.649072,0.315918,-0.692027][0.879397,0.679617,0][-0.522068,-0.197892,-0.870284][0.649072,0.315918,-0.692027][0.879397,0.679617,0][-0.660379,-0.600361,-1.00777][0.35897,0.0131129,-0.933257][0.926747,0.541003,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.826283,-0.601474,-0.921501][-0.567949,0.000949326,-0.823063][0.897037,0.54062,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.660379,-0.600361,-1.00777][0.35897,0.0131129,-0.933257][0.926747,0.541003,0][-0.826283,-0.601474,-0.921501][-0.567949,0.000949326,-0.823063][0.897037,0.54062,0][-0.951651,-0.601474,-0.776628][-0.947931,0.00218918,-0.318468][0.847141,0.54062,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.826283,-0.601474,-0.921501][-0.567949,0.000949326,-0.823063][0.897037,0.54062,0][-0.951651,-0.601474,-0.776628][-0.947931,0.00218918,-0.318468][0.847141,0.54062,0][-0.852872,-0.599202,-0.607774][-0.861669,0.00738176,0.507417][0.788987,0.541403,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.951651,-0.601474,-0.776628][-0.947931,0.00218918,-0.318468][0.847141,0.54062,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-0.852872,-0.599202,-0.607774][-0.861669,0.00738176,0.507417][0.788987,0.541403,0][-0.850058,-0.195618,-0.610008][-0.753224,0.485957,0.443282][0.789756,0.6804,0][-0.850058,-0.195618,-0.610008][-0.753224,0.485957,0.443282][0.789756,0.6804,0][-0.656487,-0.0564604,-0.714074][-0.17931,0.953931,-0.240549][0.825597,0.728327,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][-1.08774,-0.094429,0.282995][-0.29979,0.953931,0.011928][0.482199,0.71525,0][-1.08774,-0.094429,0.282995][-0.29979,0.953931,0.011928][0.482199,0.71525,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.08774,-0.094429,0.282995][-0.29979,0.953931,0.011928][0.482199,0.71525,0][-1.14061,-0.235861,0.0838089][-0.203925,0.315918,-0.926612][0.5508,0.66654,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.14107,-0.636056,0.0773468][-0.21883,0.0160022,-0.975632][0.553026,0.52871,0][-1.33221,-0.63833,0.120182][-0.566906,0.0131118,-0.823678][0.538273,0.527927,0][-1.14061,-0.235861,0.0838089][-0.203925,0.315918,-0.926612][0.5508,0.66654,0][-1.14061,-0.235861,0.0838089][-0.203925,0.315918,-0.926612][0.5508,0.66654,0][-1.33221,-0.63833,0.120182][-0.566906,0.0131118,-0.823678][0.538273,0.527927,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.35483,-0.639442,0.305799][-0.999994,0.000949438,0.00321427][0.474345,0.527544,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.33221,-0.63833,0.120182][-0.566906,0.0131118,-0.823678][0.538273,0.527927,0][-1.35483,-0.639442,0.305799][-0.999994,0.000949438,0.00321427][0.474345,0.527544,0][-1.3062,-0.639442,0.491111][-0.798567,0.00219005,0.601901][0.410522,0.527544,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.35483,-0.639442,0.305799][-0.999994,0.000949438,0.00321427][0.474345,0.527544,0][-1.3062,-0.639442,0.491111][-0.798567,0.00219005,0.601901][0.410522,0.527544,0][-1.11107,-0.637171,0.505082][-0.0685373,0.00738263,0.997621][0.405711,0.528326,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.3062,-0.639442,0.491111][-0.798567,0.00219005,0.601901][0.410522,0.527544,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][-1.11107,-0.637171,0.505082][-0.0685373,0.00738263,0.997621][0.405711,0.528326,0][-1.11133,-0.233586,0.501498][-0.0601374,0.485958,0.871911][0.406945,0.667323,0][-1.11133,-0.233586,0.501498][-0.0601374,0.485958,0.871911][0.406945,0.667323,0][-1.08774,-0.094429,0.282995][-0.29979,0.953931,0.011928][0.482199,0.71525,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.487597,-0.51939,-0.977498][0.365164,0.129609,-0.921877][0.916322,0.568891,0][0.487597,-0.51939,-0.977498][0.365164,0.129609,-0.921877][0.916322,0.568891,0][0,-0.490867,-1.11174][0,0.198153,-0.980171][0.962556,0.578714,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][0.900961,-0.573056,-0.67348][0.679728,0.0850084,-0.728522][0.811616,0.550407,0][0.900961,-0.573056,-0.67348][0.679728,0.0850084,-0.728522][0.811616,0.550407,0][0.487597,-0.51939,-0.977498][0.365164,0.129609,-0.921877][0.916322,0.568891,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][1.17716,-0.589729,-0.253272][0.897581,0.10676,-0.427727][0.666894,0.544665,0][1.17716,-0.589729,-0.253272][0.897581,0.10676,-0.427727][0.666894,0.544665,0][0.900961,-0.573056,-0.67348][0.679728,0.0850084,-0.728522][0.811616,0.550407,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.27415,-0.589729,0.247418][0.990084,0.127614,-0.0587277][0.494452,0.544665,0][1.27415,-0.589729,0.247418][0.990084,0.127614,-0.0587277][0.494452,0.544665,0][1.17716,-0.589729,-0.253272][0.897581,0.10676,-0.427727][0.666894,0.544665,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][1.17716,-0.589729,0.723426][0.937694,0.126032,0.323799][0.330511,0.544665,0][1.17716,-0.589729,0.723426][0.937694,0.126032,0.323799][0.330511,0.544665,0][1.27415,-0.589729,0.247418][0.990084,0.127614,-0.0587277][0.494452,0.544665,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.900961,-0.589729,1.12697][0.741447,0.113285,0.66138][0.191529,0.544665,0][0.900961,-0.589729,1.12697][0.741447,0.113285,0.66138][0.191529,0.544665,0][1.17716,-0.589729,0.723426][0.937694,0.126032,0.323799][0.330511,0.544665,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0.487596,-0.589729,1.3966][0.434575,0.098472,0.895236][0.0986643,0.544665,0][0.487596,-0.589729,1.3966][0.434575,0.098472,0.895236][0.0986643,0.544665,0][0.900961,-0.589729,1.12697][0.741447,0.113285,0.66138][0.191529,0.544665,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0,-0.180622,1.45456][0.182844,0.32083,0.92932][0.0787042,0.685565,0][0,-0.589729,1.49129][0.191073,0.0891913,0.977515][0.0660544,0.544665,0][0,-0.589729,1.49129][0.191073,0.0891913,0.977515][0.0660544,0.544665,0][0.487596,-0.589729,1.3966][0.434575,0.098472,0.895236][0.0986643,0.544665,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0,0.197342,1.27079][0.155408,0.593247,0.789878][0.141995,0.815738,0][0,-0.180622,1.45456][0.182844,0.32083,0.92932][0.0787042,0.685565,0][0,-0.180622,1.45456][0.182844,0.32083,0.92932][0.0787042,0.685565,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0,0.486626,-0.486993][0,0.768179,-0.640235][0.747389,0.91537,0][0.203781,0.494444,-0.45254][0.252356,0.829642,-0.498008][0.735523,0.918063,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][0,0.486626,-0.486993][0,0.768179,-0.640235][0.747389,0.91537,0][0.203781,0.494444,-0.45254][0.252356,0.829642,-0.498008][0.735523,0.918063,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.203781,0.494444,-0.45254][0.252356,0.829642,-0.498008][0.735523,0.918063,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.209924,0.494444,0.901674][0.232137,0.830262,0.506732][0.269121,0.918063,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0.209924,0.494444,0.901674][0.232137,0.830262,0.506732][0.269121,0.918063,0][0,0.197342,1.27079][0.155408,0.593247,0.789878][0.141995,0.815738,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.171644,0.643177,0.0823421][0.249803,0.950627,-0.184137][0.551306,0.969287,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][0.200856,0.656207,0.247418][0.309798,0.950802,0.000492366][0.494452,0.973775,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.171644,0.643177,0.417257][0.256156,0.946623,0.195678][0.435958,0.969287,0][0.209924,0.494444,0.901674][0.232137,0.830262,0.506732][0.269121,0.918063,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.171644,0.643177,0.417257][0.256156,0.946623,0.195678][0.435958,0.969287,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.200856,0.656207,0.247418][0.309798,0.950802,0.000492366][0.494452,0.973775,0][0.171644,0.643177,0.417257][0.256156,0.946623,0.195678][0.435958,0.969287,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.200856,0.656207,0.247418][0.309798,0.950802,0.000492366][0.494452,0.973775,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.171644,0.643177,0.0823421][0.249803,0.950627,-0.184137][0.551306,0.969287,0][0.200856,0.656207,0.247418][0.309798,0.950802,0.000492366][0.494452,0.973775,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.203781,0.494444,-0.45254][0.252356,0.829642,-0.498008][0.735523,0.918063,0][0.171644,0.643177,0.0823421][0.249803,0.950627,-0.184137][0.551306,0.969287,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.826283,-0.601474,-0.921501][0.567949,0.000949497,-0.823063][0.897037,0.54062,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.656487,-0.0564604,-0.714074][0.17931,0.953931,-0.240549][0.825597,0.728327,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.656487,-0.0564604,-0.714074][0.17931,0.953931,-0.240549][0.825597,0.728327,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.522068,-0.197892,-0.870284][-0.649072,0.315918,-0.692027][0.879397,0.679617,0][0.656487,-0.0564604,-0.714074][0.17931,0.953931,-0.240549][0.825597,0.728327,0][0.522068,-0.197892,-0.870284][-0.649072,0.315918,-0.692027][0.879397,0.679617,0][0.66038,-0.600361,-1.00777][-0.35897,0.0131127,-0.933257][0.926747,0.541003,0][0.516994,-0.598087,-0.874311][-0.681081,0.0160035,-0.732033][0.880784,0.541786,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.66038,-0.600361,-1.00777][-0.35897,0.0131127,-0.933257][0.926747,0.541003,0][0.522068,-0.197892,-0.870284][-0.649072,0.315918,-0.692027][0.879397,0.679617,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.826283,-0.601474,-0.921501][0.567949,0.000949497,-0.823063][0.897037,0.54062,0][0.66038,-0.600361,-1.00777][-0.35897,0.0131127,-0.933257][0.926747,0.541003,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.951652,-0.601474,-0.776628][0.947931,0.00218946,-0.318468][0.847141,0.54062,0][0.951652,-0.601474,-0.776628][0.947931,0.00218946,-0.318468][0.847141,0.54062,0][0.826283,-0.601474,-0.921501][0.567949,0.000949497,-0.823063][0.897037,0.54062,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.850058,-0.195618,-0.610008][0.753224,0.485958,0.443282][0.789756,0.6804,0][0.852872,-0.599202,-0.607774][0.861669,0.00738202,0.507417][0.788987,0.541403,0][0.852872,-0.599202,-0.607774][0.861669,0.00738202,0.507417][0.788987,0.541403,0][0.951652,-0.601474,-0.776628][0.947931,0.00218946,-0.318468][0.847141,0.54062,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.656487,-0.0564604,-0.714074][0.17931,0.953931,-0.240549][0.825597,0.728327,0][0.850058,-0.195618,-0.610008][0.753224,0.485958,0.443282][0.789756,0.6804,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.35483,-0.639442,0.305799][0.999994,0.000950027,0.00321426][0.474345,0.527544,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.08774,-0.094429,0.282995][0.29979,0.953931,0.011928][0.482199,0.71525,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.08774,-0.094429,0.282995][0.29979,0.953931,0.011928][0.482199,0.71525,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.14061,-0.235861,0.0838089][0.203925,0.315918,-0.926612][0.5508,0.66654,0][1.08774,-0.094429,0.282995][0.29979,0.953931,0.011928][0.482199,0.71525,0][1.14061,-0.235861,0.0838089][0.203925,0.315918,-0.926612][0.5508,0.66654,0][1.33221,-0.63833,0.120182][0.566906,0.0131121,-0.823678][0.538273,0.527927,0][1.14107,-0.636056,0.0773468][0.21883,0.0160023,-0.975632][0.553026,0.52871,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.33221,-0.63833,0.120182][0.566906,0.0131121,-0.823678][0.538273,0.527927,0][1.14061,-0.235861,0.0838089][0.203925,0.315918,-0.926612][0.5508,0.66654,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.35483,-0.639442,0.305799][0.999994,0.000950027,0.00321426][0.474345,0.527544,0][1.33221,-0.63833,0.120182][0.566906,0.0131121,-0.823678][0.538273,0.527927,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.3062,-0.639442,0.491111][0.798567,0.00219052,0.601901][0.410522,0.527544,0][1.3062,-0.639442,0.491111][0.798567,0.00219052,0.601901][0.410522,0.527544,0][1.35483,-0.639442,0.305799][0.999994,0.000950027,0.00321426][0.474345,0.527544,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.11133,-0.233586,0.501498][0.0601374,0.485958,0.871911][0.406945,0.667323,0][1.11107,-0.637171,0.505082][0.0685373,0.00738267,0.997621][0.405711,0.528326,0][1.11107,-0.637171,0.505082][0.0685373,0.00738267,0.997621][0.405711,0.528326,0][1.3062,-0.639442,0.491111][0.798567,0.00219052,0.601901][0.410522,0.527544,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.08774,-0.094429,0.282995][0.29979,0.953931,0.011928][0.482199,0.71525,0][1.11133,-0.233586,0.501498][0.0601374,0.485958,0.871911][0.406945,0.667323,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][-0.208943,-0.146632,1.53385][-0.0850565,0.343636,0.935243][0.0376472,0.205947,0][-0.208943,-0.62525,1.58137][-0.0977035,0.110524,0.989059][0.0236027,0.0644771,0][-0.208943,-0.62525,1.58137][-0.0977035,0.110524,0.989059][0.0236027,0.0644771,0][0,-0.629388,1.60861][0,0.123372,0.99236][0.0155503,0.0632542,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][-0.208943,-0.146632,1.53385][-0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][-0.208943,0.245927,1.32599][-0.112372,0.67957,0.724953][0.0990874,0.321979,0][-0.208943,-0.146632,1.53385][-0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][-0.208943,0.245927,1.32599][-0.112372,0.67957,0.724953][0.0990874,0.321979,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][-0.208943,0.576911,0.920267][-0.117265,0.910694,0.396087][0.21901,0.419811,0][-0.208943,0.245927,1.32599][-0.112372,0.67957,0.724953][0.0990874,0.321979,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][-0.208943,0.576911,0.920267][-0.117265,0.910694,0.396087][0.21901,0.419811,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][-0.208943,0.715461,0.423523][-0.114113,0.987153,0.111834][0.365837,0.460763,0][-0.208943,0.576911,0.920267][-0.117265,0.910694,0.396087][0.21901,0.419811,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][-0.208943,0.715461,0.423523][-0.114113,0.987153,0.111834][0.365837,0.460763,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][-0.208943,0.730855,-0.0250593][-0.412208,0.909081,-0.0604675][0.498429,0.465313,0][-0.208943,0.715461,0.423523][-0.114113,0.987153,0.111834][0.365837,0.460763,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][-0.208943,0.730855,-0.0250593][-0.412208,0.909081,-0.0604675][0.498429,0.465313,0][-0.208943,0.674016,-0.509989][-0.487906,0.514688,-0.705014][0.641764,0.448513,0][-0.208943,0.365281,-0.589872][-0.756504,0.163819,-0.633139][0.665376,0.357258,0][-0.208943,0.730855,-0.0250593][-0.412208,0.909081,-0.0604675][0.498429,0.465313,0][-0.208943,0.730855,-0.0250593][-0.412208,0.909081,-0.0604675][0.498429,0.465313,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][-0.208943,0.674016,-0.509989][-0.487906,0.514688,-0.705014][0.641764,0.448513,0][0,0.365281,-0.621411][0,0.251013,-0.967984][0.674698,0.357258,0][-0.208943,0.365281,-0.589872][-0.756504,0.163819,-0.633139][0.665376,0.357258,0][-0.208943,0.674016,-0.509989][-0.487906,0.514688,-0.705014][0.641764,0.448513,0][-0.208943,0.674016,-0.509989][-0.487906,0.514688,-0.705014][0.641764,0.448513,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][0,0.365281,-0.621411][0,0.251013,-0.967984][0.674698,0.357258,0][-0.208943,0.730855,-0.0250593][-1,-1.54835e-007,0][0.498345,0.465427,0][-0.208943,0.365281,-0.589872][-1,-1.72548e-007,0][0.665314,0.357356,0][-0.208943,0.715461,0.423523][-1,-1.72548e-007,0][0.365735,0.460876,0][-0.208943,-0.146632,1.53385][-1,-1.56553e-007,0][0.0375014,0.206025,0][-0.208943,0.245927,1.32599][-1,-0.000200349,-0.000485822][0.0989496,0.322073,0][-0.208943,-0.62525,1.58137][-1,-0.000186532,-0.000635794][0.0234551,0.0645366,0][-0.208943,-0.62525,1.58137][-1,-0.000186532,-0.000635794][0.0234551,0.0645366,0][-0.208943,0.245927,1.32599][-1,-0.000200349,-0.000485822][0.0989496,0.322073,0][-0.208774,-0.588125,1.43732][-1,-0.000300446,-0.000728728][0.0660377,0.0755113,0][-0.208943,0.245927,1.32599][-1,-0.000200349,-0.000485822][0.0989496,0.322073,0][-0.208943,0.576911,0.920267][-1,-0.000227984,-0.000185877][0.218888,0.419918,0][-0.208774,-0.588125,1.43732][-1,-0.000300446,-0.000728728][0.0660377,0.0755113,0][-0.208943,0.715461,0.423523][-1,-1.72548e-007,0][0.365735,0.460876,0][-0.208943,0.365281,-0.589872][-1,-1.72548e-007,0][0.665314,0.357356,0][-0.208943,0.576911,0.920267][-1,-1.90262e-007,0][0.218888,0.419918,0][-0.208943,0.576911,0.920267][-1,-0.000420841,-0.000241885][0.218888,0.419918,0][-0.208774,0.50009,0.353853][-1,-0.000420841,-0.000241885][0.386331,0.397208,0][-0.208774,0.0340233,1.16443][-1,-0.000420841,-0.000241885][0.146711,0.259431,0][0.208943,-0.62525,1.58137][0.0977035,0.110524,0.989059][0.0236027,0.0644771,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0,-0.629388,1.60861][0,0.123372,0.99236][0.0155503,0.0632542,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0.208943,-0.62525,1.58137][0.0977035,0.110524,0.989059][0.0236027,0.0644771,0][0.208943,-0.146632,1.53385][0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0.208943,-0.146632,1.53385][0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0.208943,-0.146632,1.53385][0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0.208943,0.245927,1.32599][0.112372,0.67957,0.724953][0.0990874,0.321979,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][0.208943,0.245927,1.32599][0.112372,0.67957,0.724953][0.0990874,0.321979,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][0.208943,0.245927,1.32599][0.112372,0.67957,0.724953][0.0990874,0.321979,0][0.208943,0.576911,0.920267][0.117265,0.910694,0.396087][0.21901,0.419811,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][0.208943,0.576911,0.920267][0.117265,0.910694,0.396087][0.21901,0.419811,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][0.208943,0.576911,0.920267][0.117265,0.910694,0.396087][0.21901,0.419811,0][0.208943,0.715461,0.423523][0.114113,0.987153,0.111834][0.365837,0.460763,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][0.208943,0.715461,0.423523][0.114113,0.987153,0.111834][0.365837,0.460763,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][0.208943,0.715461,0.423523][0.114113,0.987153,0.111834][0.365837,0.460763,0][0.208943,0.730855,-0.0250593][0.412207,0.909081,-0.0604675][0.498429,0.465313,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][0.208943,0.730855,-0.0250593][0.412207,0.909081,-0.0604675][0.498429,0.465313,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][0.208943,0.730855,-0.0250593][0.412207,0.909081,-0.0604675][0.498429,0.465313,0][0.208943,0.674016,-0.509989][0.487906,0.514688,-0.705014][0.641764,0.448513,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][0.208943,0.674016,-0.509989][0.487906,0.514688,-0.705014][0.641764,0.448513,0][0,0.365281,-0.621411][0,0.251013,-0.967984][0.674698,0.357258,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][0,0.365281,-0.621411][0,0.251013,-0.967984][0.674698,0.357258,0][0.208943,0.674016,-0.509989][0.487906,0.514688,-0.705014][0.641764,0.448513,0][0.208943,0.365281,-0.589872][0.756504,0.16382,-0.633139][0.665376,0.357258,0][0.208943,0.674016,-0.509989][0.487906,0.514688,-0.705014][0.641764,0.448513,0][0.208943,0.730855,-0.0250593][0.412207,0.909081,-0.0604675][0.498429,0.465313,0][0.208943,0.365281,-0.589872][0.756504,0.16382,-0.633139][0.665376,0.357258,0][0.208943,0.715461,0.423523][1,1.72548e-007,0][0.365735,0.460876,0][0.208943,0.365281,-0.589872][1,1.72548e-007,0][0.665314,0.357356,0][0.208943,0.730855,-0.0250593][1,1.54835e-007,0][0.498345,0.465427,0][0.208943,-0.62525,1.58137][1,-0.000186242,-0.000635854][0.0234551,0.0645366,0][0.208943,0.245927,1.32599][1,-0.00020006,-0.000485857][0.0989496,0.322073,0][0.208943,-0.146632,1.53385][1,1.56553e-007,0][0.0375014,0.206025,0][0.208774,-0.588125,1.43732][1,-0.000300168,-0.00072879][0.0660377,0.0755113,0][0.208943,0.245927,1.32599][1,-0.00020006,-0.000485857][0.0989496,0.322073,0][0.208943,-0.62525,1.58137][1,-0.000186242,-0.000635854][0.0234551,0.0645366,0][0.208774,-0.588125,1.43732][1,-0.000300168,-0.00072879][0.0660377,0.0755113,0][0.208943,0.576911,0.920267][1,-0.000227696,-0.000185863][0.218888,0.419918,0][0.208943,0.245927,1.32599][1,-0.00020006,-0.000485857][0.0989496,0.322073,0][0.208943,0.576911,0.920267][1,1.90262e-007,0][0.218888,0.419918,0][0.208943,0.365281,-0.589872][1,1.72548e-007,0][0.665314,0.357356,0][0.208943,0.715461,0.423523][1,1.72548e-007,0][0.365735,0.460876,0][0.208774,0.0340233,1.16443][1,-0.000420583,-0.00024192][0.146711,0.259431,0][0.208774,0.50009,0.353853][1,-0.000420583,-0.00024192][0.386331,0.397208,0][0.208943,0.576911,0.920267][1,-0.000420583,-0.00024192][0.218888,0.419918,0][0,-0.754086,1.62495][0.00184011,-0.999771,-0.0213076][0.0105701,0.0264505,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][0,-0.754086,1.62495][0.00184011,-0.999771,-0.0213076][0.0105701,0.0264505,0][-0.538533,-0.754086,1.53381][0.00749041,-0.999829,-0.0169015][0.0375141,0.0264505,0][-0.962957,-0.754086,1.22898][0.0140066,-0.999803,-0.0140509][0.127627,0.0264505,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.538533,-0.754086,1.53381][0.00749041,-0.999829,-0.0169015][0.0375141,0.0264505,0][-0.962957,-0.754086,1.22898][0.0140066,-0.999803,-0.0140509][0.127627,0.0264505,0][-0.962957,-0.754086,1.22898][0.0140066,-0.999803,-0.0140509][0.127627,0.0264505,0][-1.25091,-0.754086,0.804845][0.0168124,-0.999834,-0.00700114][0.253009,0.0264505,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-1.25091,-0.754086,0.804845][0.0168124,-0.999834,-0.00700114][0.253009,0.0264505,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-1.38079,-0.754086,0.270556][0.0176614,-0.999844,-0.000466921][0.410955,0.0264505,0][-1.28536,-0.754086,-0.289185][0.0183433,-0.999819,0.00510535][0.576425,0.0264505,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.25091,-0.754086,0.804845][0.0168124,-0.999834,-0.00700114][0.253009,0.0264505,0][-1.38079,-0.754086,0.270556][0.0176614,-0.999844,-0.000466921][0.410955,0.0264505,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.28536,-0.754086,-0.289185][0.0183433,-0.999819,0.00510535][0.576425,0.0264505,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-1.08329,-0.754086,-0.73661][0.00833389,-0.999873,-0.0136067][0.708692,0.0264505,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-1.28536,-0.754086,-0.289185][0.0183433,-0.999819,0.00510535][0.576425,0.0264505,0][-1.08329,-0.754086,-0.73661][0.00833389,-0.999873,-0.0136067][0.708692,0.0264505,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][-0.514644,-0.689224,-1.55514][0.00675373,-0.995067,-0.0989765][0.950666,0.045625,0][0,-0.667683,-1.63508][0.000238563,-0.991537,-0.129828][0.974296,0.0519924,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.514644,-0.689224,-1.55514][0.00675373,-0.995067,-0.0989765][0.950666,0.045625,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.891475,-0.722483,-1.27884][0.0118909,-0.997402,-0.0710411][0.868985,0.0357929,0][-0.514644,-0.689224,-1.55514][0.00675373,-0.995067,-0.0989765][0.950666,0.045625,0][-0.891475,-0.722483,-1.27884][0.0118909,-0.997402,-0.0710411][0.868985,0.0357929,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-1.08329,-0.754086,-0.73661][0.00833389,-0.999873,-0.0136067][0.708692,0.0264505,0][0,-0.667683,-1.63508][0.000238563,-0.991537,-0.129828][0.974296,0.0519924,0][0.514644,-0.689224,-1.55514][-0.00751053,-0.994785,-0.101716][0.950666,0.045625,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.514644,-0.689224,-1.55514][-0.00751053,-0.994785,-0.101716][0.950666,0.045625,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.891475,-0.722483,-1.27884][-0.0092402,-0.997254,-0.073479][0.868985,0.0357929,0][1.08329,-0.754086,-0.73661][-0.00665973,-0.999877,-0.0142157][0.708692,0.0264505,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.514644,-0.689224,-1.55514][-0.00751053,-0.994785,-0.101716][0.950666,0.045625,0][0.891475,-0.722483,-1.27884][-0.0092402,-0.997254,-0.073479][0.868985,0.0357929,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][1.08329,-0.754086,-0.73661][-0.00665973,-0.999877,-0.0142157][0.708692,0.0264505,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.08329,-0.754086,-0.73661][-0.00665973,-0.999877,-0.0142157][0.708692,0.0264505,0][1.28537,-0.754086,-0.289185][-0.0165866,-0.999851,0.00483934][0.576425,0.0264505,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.28537,-0.754086,-0.289185][-0.0165866,-0.999851,0.00483934][0.576425,0.0264505,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.28537,-0.754086,-0.289185][-0.0165866,-0.999851,0.00483934][0.576425,0.0264505,0][1.38079,-0.754086,0.270556][-0.0174959,-0.999847,-0.000505454][0.410955,0.0264505,0][1.25091,-0.754086,0.804845][-0.0165998,-0.999833,-0.00763765][0.253009,0.0264505,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.38079,-0.754086,0.270556][-0.0174959,-0.999847,-0.000505454][0.410955,0.0264505,0][1.25091,-0.754086,0.804845][-0.0165998,-0.999833,-0.00763765][0.253009,0.0264505,0][1.25091,-0.754086,0.804845][-0.0165998,-0.999833,-0.00763765][0.253009,0.0264505,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][1.25091,-0.754086,0.804845][-0.0165998,-0.999833,-0.00763765][0.253009,0.0264505,0][0.962958,-0.754086,1.22898][-0.0131711,-0.99982,-0.013686][0.127627,0.0264505,0][0.538534,-0.754086,1.53381][-0.00750941,-0.999788,-0.0191829][0.0375141,0.0264505,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.962958,-0.754086,1.22898][-0.0131711,-0.99982,-0.013686][0.127627,0.0264505,0][0.538534,-0.754086,1.53381][-0.00750941,-0.999788,-0.0191829][0.0375141,0.0264505,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][0.538534,-0.754086,1.53381][-0.00750941,-0.999788,-0.0191829][0.0375141,0.0264505,0][0,-0.754086,1.62495][0.00184011,-0.999771,-0.0213076][0.0105701,0.0264505,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/headphones.mesh b/charcustom/hats/fonts/headphones.mesh
new file mode 100644
index 0000000..4172362
--- /dev/null
+++ b/charcustom/hats/fonts/headphones.mesh
@@ -0,0 +1,3 @@
+version 1.00
+548
+[1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.966036,0.239306,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.975614,0.184981,0][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.966036,0.239306,0][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.938454,0.287078,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.966036,0.239306,0][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.938454,0.287078,0][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.896197,0.322536,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.938454,0.287078,0][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.896197,0.322536,0][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.844361,0.341402,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.896197,0.322536,0][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.844361,0.341402,0][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.789199,0.341402,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.844361,0.341402,0][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.789199,0.341402,0][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.737363,0.322536,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.789199,0.341402,0][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.737363,0.322536,0][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.695106,0.287078,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.737363,0.322536,0][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.695106,0.287078,0][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.667525,0.239306,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.695106,0.287078,0][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.667525,0.239306,0][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.657946,0.184981,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.667525,0.239306,0][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.657946,0.184981,0][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.667525,0.130656,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.657946,0.184981,0][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.667525,0.130656,0][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.695106,0.0828841,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.667525,0.130656,0][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.695106,0.0828841,0][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.737363,0.0474263,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.695106,0.0828841,0][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.737363,0.0474263,0][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.789199,0.0285596,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.737363,0.0474263,0][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.789199,0.0285596,0][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.844361,0.0285596,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.789199,0.0285596,0][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.844361,0.0285596,0][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.896197,0.0474264,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.844361,0.0285596,0][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.896197,0.0474264,0][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.938454,0.0828842,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.896197,0.0474264,0][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.938454,0.0828842,0][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.966036,0.130656,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.938454,0.0828842,0][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.966036,0.130656,0][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.975614,0.184981,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.966036,0.130656,0][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.975614,0.184981,0][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.0726487,0.806588,-0.0126314][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.0375301,0.806588,-0.0135044][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.0375301,0.806588,-0.0135044][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.107534,0.806588,-0.0104281][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.0726487,0.806588,-0.0126314][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.0726487,0.806588,-0.0126314][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.142068,0.806588,-0.00793469][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.107534,0.806588,-0.0104281][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.107534,0.806588,-0.0104281][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.176299,0.806588,-0.0063141][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.142068,0.806588,-0.00793469][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.142068,0.806588,-0.00793469][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.210411,0.806588,-0.00631416][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.176299,0.806588,-0.0063141][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.176299,0.806588,-0.0063141][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.244641,0.806588,-0.00793469][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.210411,0.806588,-0.00631416][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.210411,0.806588,-0.00631416][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.279175,0.806588,-0.0104281][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.244641,0.806588,-0.00793469][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.244641,0.806588,-0.00793469][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.314061,0.806588,-0.0126314][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.279175,0.806588,-0.0104281][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.279175,0.806588,-0.0104281][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.349179,0.806588,-0.0135044][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.314061,0.806588,-0.0126314][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.314061,0.806588,-0.0126314][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.384298,0.806588,-0.0126314][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.349179,0.806588,-0.0135044][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.349179,0.806588,-0.0135044][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.419184,0.806588,-0.0104281][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.384298,0.806588,-0.0126314][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.384298,0.806588,-0.0126314][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.453718,0.806588,-0.00793469][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.419184,0.806588,-0.0104281][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.419184,0.806588,-0.0104281][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.487948,0.806588,-0.00631413][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.453718,0.806588,-0.00793469][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.453718,0.806588,-0.00793469][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.52206,0.806588,-0.00631413][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.487948,0.806588,-0.00631413][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.487948,0.806588,-0.00631413][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.556291,0.806588,-0.00793469][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.52206,0.806588,-0.00631413][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.52206,0.806588,-0.00631413][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.590825,0.806588,-0.0104281][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.556291,0.806588,-0.00793469][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.556291,0.806588,-0.00793469][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.62571,0.792452,0.00693023][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.62571,0.806588,-0.0126314][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.590825,0.806588,-0.0104281][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.590825,0.806588,-0.0104281][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.62571,0.792452,0.00693023][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.0375301,0.806588,-0.0135044][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.00241143,0.806588,-0.0126314][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.00241143,0.806588,-0.0126314][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.00241143,0.792452,0.00693023][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.62571,0.752469,0.00693023][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.62571,0.792452,0.00693023][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.62571,0.752469,0.00693023][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.00241143,0.792452,0.00693023][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.00241143,0.792452,0.00693023][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.00241143,0.752469,0.00693023][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.0726487,0.738333,-0.0126314][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.0375301,0.738333,-0.0135044][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.0726487,0.738333,-0.0126314][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.107534,0.738333,-0.0104281][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.0726487,0.738333,-0.0126314][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.107534,0.738333,-0.0104281][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.142068,0.738333,-0.00793466][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.107534,0.738333,-0.0104281][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.142068,0.738333,-0.00793466][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.176299,0.738333,-0.00631407][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.142068,0.738333,-0.00793466][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.176299,0.738333,-0.00631407][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.210411,0.738333,-0.00631413][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.176299,0.738333,-0.00631407][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.210411,0.738333,-0.00631413][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.244641,0.738333,-0.00793466][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.210411,0.738333,-0.00631413][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.244641,0.738333,-0.00793466][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.279175,0.738333,-0.0104281][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.244641,0.738333,-0.00793466][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.279175,0.738333,-0.0104281][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][0.314061,0.738333,-0.0126314][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.279175,0.738333,-0.0104281][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][0.314061,0.738333,-0.0126314][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][0.349179,0.738333,-0.0135044][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][0.314061,0.738333,-0.0126314][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][0.349179,0.738333,-0.0135044][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][0.384298,0.738333,-0.0126314][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][0.349179,0.738333,-0.0135044][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][0.384298,0.738333,-0.0126314][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.419184,0.738333,-0.0104281][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][0.384298,0.738333,-0.0126314][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.419184,0.738333,-0.0104281][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.453718,0.738333,-0.00793472][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.419184,0.738333,-0.0104281][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.453718,0.738333,-0.00793472][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.487948,0.738333,-0.00631416][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.453718,0.738333,-0.00793472][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.487948,0.738333,-0.00631416][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.52206,0.738333,-0.00631413][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.487948,0.738333,-0.00631416][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.52206,0.738333,-0.00631413][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.556291,0.738333,-0.00793469][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.52206,0.738333,-0.00631413][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.556291,0.738333,-0.00793469][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.590825,0.738333,-0.0104281][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.556291,0.738333,-0.00793469][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.590825,0.738333,-0.0104281][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.62571,0.738333,-0.0126314][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.62571,0.752469,0.00693023][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.590825,0.738333,-0.0104281][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.62571,0.738333,-0.0126314][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.0375301,0.738333,-0.0135044][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.00241143,0.752469,0.00693023][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.00241143,0.752469,0.00693023][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.00241143,0.738333,-0.0126314][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.0375301,0.738333,-0.0135044][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.156643,0.376679,0][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.161739,0.405575,0][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.161739,0.405575,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.141972,0.351268,0][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.156643,0.376679,0][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.156643,0.376679,0][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.119495,0.332407,0][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.141972,0.351268,0][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.141972,0.351268,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.091923,0.322372,0][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.119495,0.332407,0][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.119495,0.332407,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.0625812,0.322372,0][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.091923,0.322372,0][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.091923,0.322372,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.0350089,0.332407,0][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.0625812,0.322372,0][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.0625812,0.322372,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.0125318,0.351268,0][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.0350089,0.332407,0][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.0350089,0.332407,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][-0.00213912,0.376679,0][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.0125318,0.351268,0][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.0125318,0.351268,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][-0.00723428,0.405575,0][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][-0.00213912,0.376679,0][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][-0.00213912,0.376679,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][-0.00213912,0.434471,0][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][-0.00723428,0.405575,0][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][-0.00723428,0.405575,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.0125318,0.459882,0][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][-0.00213912,0.434471,0][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][-0.00213912,0.434471,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.0350089,0.478742,0][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.0125318,0.459882,0][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.0125318,0.459882,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.0625812,0.488778,0][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.0350089,0.478742,0][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.0350089,0.478742,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.0919231,0.488778,0][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.0625812,0.488778,0][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.0625812,0.488778,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.119495,0.478742,0][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.0919231,0.488778,0][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.0919231,0.488778,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.141972,0.459882,0][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.119495,0.478742,0][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.119495,0.478742,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.156643,0.434471,0][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.141972,0.459882,0][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.141972,0.459882,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.161739,0.405575,0][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.156643,0.434471,0][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.156643,0.434471,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.623299,0.615853,-0.20435][-1.26752,0.308662,-0.345849][-0.988012,0.154374,6.59885e-007][0.623299,0.623299,-0.483731][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0,0.623299,-0.483731][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0,0.623299,-0.483731][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0,0.615853,-0.20435][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.623299,0.615853,-0.20435][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.623299,0.593124,0.0447331][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.623299,0.615853,-0.20435][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0,0.615853,-0.20435][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0,0.615853,-0.20435][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0,0.593124,0.0447329][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.623299,0.593124,0.0447331][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.623298,0.557069,0.232923][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.623299,0.593124,0.0447331][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0,0.593124,0.0447329][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0,0.593124,0.0447329][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0,0.557069,0.232923][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.623298,0.557069,0.232923][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.623299,0.510352,0.362549][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.623298,0.557069,0.232923][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0,0.557069,0.232923][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0,0.557069,0.232923][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0,0.510352,0.362549][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.623299,0.510352,0.362549][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.623299,0.45423,0.44448][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.623299,0.510352,0.362549][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0,0.510352,0.362549][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0,0.510352,0.362549][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0,0.45423,0.444479][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.623299,0.45423,0.44448][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.623299,0.388921,0.488106][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.623299,0.45423,0.44448][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0,0.45423,0.444479][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0,0.45423,0.444479][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0,0.388921,0.488106][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.623299,0.388921,0.488106][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.623299,0.31441,0.5][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.623299,0.388921,0.488106][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0,0.388921,0.488106][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0,0.388921,0.488106][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0,0.31441,0.5][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.623299,0.31441,0.5][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.623299,0.239548,0.4839][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.623299,0.31441,0.5][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0,0.31441,0.5][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0,0.31441,0.5][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0,0.239548,0.4839][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.623299,0.239548,0.4839][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.623299,0.173367,0.436651][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.623299,0.239548,0.4839][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0,0.239548,0.4839][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0,0.239548,0.4839][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0,0.173367,0.43665][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.623299,0.173367,0.436651][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.623299,0.11612,0.351886][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.623299,0.173367,0.436651][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0,0.173367,0.43665][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0,0.173367,0.43665][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0,0.11612,0.351885][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.623299,0.11612,0.351886][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.623299,0.0682399,0.220526][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.623299,0.11612,0.351886][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0,0.11612,0.351885][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0,0.11612,0.351885][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0,0.0682399,0.220526][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.623299,0.0682399,0.220526][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.623299,0.0310746,0.0314227][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.623299,0.0682399,0.220526][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0,0.0682399,0.220526][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0,0.0682399,0.220526][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0,0.0310746,0.0314227][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.623299,0.0310746,0.0314227][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.623299,0.00749806,-0.219299][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.623299,0.0310746,0.0314227][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0,0.0310746,0.0314227][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0,0.0310746,0.0314227][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][1.48606e-007,0.00749806,-0.219299][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.623299,0.00749806,-0.219299][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.623299,0,-0.5][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.623299,0.00749806,-0.219299][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][1.48606e-007,0.00749806,-0.219299][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][1.48606e-007,0.00749806,-0.219299][1.28787,0.309562,0.35415][0.986468,0.163955,-5.03983e-007][0,0,-0.5][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.623299,0,-0.5][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.298237,0.837201,0][-1.1686,0.29402,-0.345849][0.989223,-0.146419,-6.61387e-007][0.385061,0.837201,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.385061,0.85861,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.385061,0.85861,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.298237,0.85861,0][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.298237,0.837201,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.298237,0.85861,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.385061,0.85861,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.385061,0.875783,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.385061,0.875783,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.298237,0.875783,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.298237,0.85861,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.451564,0.265259,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.451564,0.352082,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.436237,0.352082,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.436237,0.352082,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.436237,0.265259,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.451564,0.265259,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.436237,0.265259,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.436237,0.352082,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.415163,0.352082,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.415163,0.352082,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.415163,0.265259,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.436237,0.265259,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.415163,0.265259,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.415163,0.352082,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.388564,0.352082,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.388564,0.352082,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.388564,0.265259,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.415163,0.265259,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.388564,0.265259,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.388564,0.352082,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.356661,0.352082,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.356661,0.352082,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.356661,0.265259,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.388564,0.265259,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.356661,0.265259,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.356661,0.352082,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.319676,0.352082,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.319676,0.352082,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.319676,0.265259,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.356661,0.265259,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.319676,0.265259,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.319676,0.352082,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.282492,0.352082,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.282492,0.352082,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.282492,0.265259,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.319676,0.265259,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.282492,0.265259,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.282492,0.352082,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.250074,0.352082,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.250074,0.352082,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.250074,0.265259,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.282492,0.265259,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.250074,0.265259,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.250074,0.352082,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.222771,0.352082,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.222771,0.352082,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.222771,0.265259,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.250074,0.265259,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.222771,0.265259,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.222771,0.352082,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.200931,0.352082,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.200931,0.352082,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.200931,0.265259,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.222771,0.265259,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.200931,0.265259,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.200931,0.352082,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.1849,0.352082,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.1849,0.352082,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.1849,0.265259,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.200931,0.265259,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.549025,0.910739,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.635849,0.910739,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.635849,0.927912,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.635849,0.927912,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.549025,0.927912,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.549025,0.910739,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.549025,0.927912,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.635849,0.927912,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.635849,0.949321,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.635849,0.949321,0][1.18909,0.294019,0.35415][-0.987848,-0.155424,5.04688e-007][0.549025,0.949321,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.549025,0.927912,0][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.95258,0.467338,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.949411,0.445929,0][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0.961173,0.441993,0][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0.961173,0.441993,0][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0.96485,0.465521,0][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.95258,0.467338,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.505385,0.886352,0][-1.1686,0.29402,-0.345849][0.989223,-0.146419,-6.61387e-007][0.508554,0.864943,0][-1.26752,0.308662,-0.345849][-0.988012,0.154374,6.59885e-007][0.520823,0.866759,0][-1.26752,0.308662,-0.345849][-0.988012,0.154374,6.59885e-007][0.520823,0.866759,0][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.517147,0.890288,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.505385,0.886352,0][-1.1686,0.29402,-0.345849][0.989223,-0.146419,-6.61387e-007][0.0360453,0.918754,0][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.122869,0.918754,0][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0.122869,0.931023,0][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0.122869,0.931023,0][-1.26752,0.308662,-0.345849][-0.988012,0.154374,6.59885e-007][0.0360453,0.931023,0][-1.1686,0.29402,-0.345849][0.989223,-0.146419,-6.61387e-007][0.0360453,0.918754,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.949411,0.445929,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.940053,0.428756,0][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0.949714,0.420977,0][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0.949714,0.420977,0][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0.961173,0.441993,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.949411,0.445929,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.496026,0.903525,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.505385,0.886352,0][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.517147,0.890288,0][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.517147,0.890288,0][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.505687,0.911304,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.496026,0.903525,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.940053,0.428756,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.924725,0.415474,0][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0.931453,0.405054,0][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0.931453,0.405054,0][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0.949714,0.420977,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.940053,0.428756,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.480699,0.916806,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.496026,0.903525,0][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.505687,0.911304,0][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.505687,0.911304,0][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.487427,0.927226,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.480699,0.916806,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.924725,0.415474,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.903652,0.405742,0][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0.907749,0.394034,0][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0.907749,0.394034,0][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0.931453,0.405054,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.924725,0.415474,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.459625,0.926539,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.480699,0.916806,0][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.487427,0.927226,0][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.487427,0.927226,0][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.463722,0.938246,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.459625,0.926539,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.903652,0.405742,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.877053,0.399215,0][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0.879243,0.387006,0][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0.879243,0.387006,0][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0.907749,0.394034,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.903652,0.405742,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.433026,0.933066,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.459625,0.926539,0][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.463722,0.938246,0][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.463722,0.938246,0][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.435216,0.945274,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.433026,0.933066,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.877053,0.399215,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.84515,0.39555,0][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0.84605,0.38318,0][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0.84605,0.38318,0][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0.879243,0.387006,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.877053,0.399215,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.401123,0.93673,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.433026,0.933066,0][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.435216,0.945274,0][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.435216,0.945274,0][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.402024,0.949101,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.401123,0.93673,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.84515,0.39555,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.808165,0.394405,0][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0.808166,0.382002,0][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0.808166,0.382002,0][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0.84605,0.38318,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.84515,0.39555,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.364138,0.937875,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.401123,0.93673,0][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.402024,0.949101,0][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.402024,0.949101,0][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.364139,0.950279,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.364138,0.937875,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.808165,0.394405,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.77098,0.39555,0][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0.770092,0.383179,0][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0.770092,0.383179,0][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0.808166,0.382002,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.808165,0.394405,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.326954,0.93673,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.364138,0.937875,0][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.364139,0.950279,0][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.364139,0.950279,0][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.326065,0.949102,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.326954,0.93673,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.77098,0.39555,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.738562,0.399215,0][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0.73642,0.386998,0][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0.73642,0.386998,0][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0.770092,0.383179,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.77098,0.39555,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.294536,0.933066,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.326954,0.93673,0][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.326065,0.949102,0][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.326065,0.949102,0][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.292394,0.945283,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.294536,0.933066,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.738562,0.399215,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.711259,0.405742,0][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0.707276,0.393995,0][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0.707276,0.393995,0][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0.73642,0.386998,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.738562,0.399215,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.267233,0.926539,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.294536,0.933066,0][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.292394,0.945283,0][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.292394,0.945283,0][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.26325,0.938285,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.267233,0.926539,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.711259,0.405742,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.689419,0.415474,0][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0.682877,0.404936,0][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0.682877,0.404936,0][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0.707276,0.393995,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.711259,0.405742,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.245393,0.916806,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.267233,0.926539,0][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.26325,0.938285,0][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.26325,0.938285,0][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.238851,0.927344,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.245393,0.916806,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.689419,0.415474,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.673388,0.428756,0][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0.663904,0.420762,0][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0.663904,0.420762,0][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0.682877,0.404936,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.689419,0.415474,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.229362,0.903525,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.245393,0.916806,0][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.238851,0.927344,0][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.238851,0.927344,0][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.219878,0.911519,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.229362,0.903525,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.673388,0.428756,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.663515,0.445929,0][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][0.651817,0.441805,0][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][0.651817,0.441805,0][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0.663904,0.420762,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.673388,0.428756,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.219489,0.886352,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.229362,0.903525,0][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.219878,0.911519,0][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.219878,0.911519,0][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.207791,0.890475,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.219489,0.886352,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.663515,0.445929,0][1.18909,0.294019,0.35415][-0.987848,-0.155424,5.04688e-007][0.660146,0.467338,0][1.28787,0.309562,0.35415][0.986468,0.163955,-5.03983e-007][0.647894,0.46541,0][1.28787,0.309562,0.35415][0.986468,0.163955,-5.03983e-007][0.647894,0.46541,0][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][0.651817,0.441805,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.663515,0.445929,0][1.18909,0.294019,0.35415][-0.987848,-0.155424,5.04688e-007][0.125281,0.977322,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.0384567,0.977322,0][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.0384567,0.965069,0][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.0384567,0.965069,0][1.28787,0.309562,0.35415][0.986468,0.163955,-5.03983e-007][0.125281,0.965069,0][1.18909,0.294019,0.35415][-0.987848,-0.155424,5.04688e-007][0.125281,0.977322,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.21612,0.864943,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.219489,0.886352,0][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.207791,0.890475,0][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.207791,0.890475,0][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.203868,0.866871,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.21612,0.864943,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.546515,0.150682,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0.55161,0.121786,0][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.546515,0.150682,0][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.531844,0.176093,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.546515,0.150682,0][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.531844,0.176093,0][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.509366,0.194953,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.531844,0.176093,0][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.509366,0.194953,0][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.481794,0.204989,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.509366,0.194953,0][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.481794,0.204989,0][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.452452,0.204989,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.481794,0.204989,0][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.452452,0.204989,0][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.42488,0.194953,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.452452,0.204989,0][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.42488,0.194953,0][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.402403,0.176092,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.42488,0.194953,0][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.402403,0.176092,0][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.387732,0.150682,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.402403,0.176092,0][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.387732,0.150682,0][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.382637,0.121786,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.387732,0.150682,0][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.382637,0.121786,0][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.387732,0.0928896,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.382637,0.121786,0][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.387732,0.0928896,0][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.402403,0.0674789,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.387732,0.0928896,0][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.402403,0.0674789,0][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.42488,0.0486183,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.402403,0.0674789,0][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.42488,0.0486183,0][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.452452,0.0385828,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.42488,0.0486183,0][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.452452,0.0385828,0][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.481794,0.0385828,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.452452,0.0385828,0][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.481794,0.0385828,0][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.509366,0.0486183,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.481794,0.0385828,0][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.509366,0.0486183,0][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.531844,0.0674789,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.509366,0.0486183,0][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.531844,0.0674789,0][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.546515,0.0928897,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.531844,0.0674789,0][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.546515,0.0928897,0][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0.55161,0.121786,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.546515,0.0928897,0][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0.55161,0.121786,0][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.0351186,0.716149,-0.0126315][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0,0.716149,-0.0135044][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0,0.716149,-0.0135044][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0,0.702013,0.00602183][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.0700042,0.716149,-0.0104281][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.0351186,0.716149,-0.0126315][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.0351186,0.716149,-0.0126315][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.104538,0.716149,-0.00793472][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.0700042,0.716149,-0.0104281][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.0700042,0.716149,-0.0104281][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.138769,0.716149,-0.0063141][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.104538,0.716149,-0.00793472][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.104538,0.716149,-0.00793472][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.172881,0.716149,-0.0063141][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.138769,0.716149,-0.0063141][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.138769,0.716149,-0.0063141][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.207111,0.716149,-0.00793463][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.172881,0.716149,-0.0063141][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.172881,0.716149,-0.0063141][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.241645,0.716149,-0.010428][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.207111,0.716149,-0.00793463][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.207111,0.716149,-0.00793463][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.276531,0.716149,-0.0126312][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.241645,0.716149,-0.010428][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.241645,0.716149,-0.010428][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.311649,0.716149,-0.0135042][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.276531,0.716149,-0.0126312][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.276531,0.716149,-0.0126312][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.346768,0.716149,-0.0126312][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.311649,0.716149,-0.0135042][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.311649,0.716149,-0.0135042][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.381654,0.716149,-0.0104279][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.346768,0.716149,-0.0126312][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.346768,0.716149,-0.0126312][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.416188,0.716149,-0.00793457][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.381654,0.716149,-0.0104279][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.381654,0.716149,-0.0104279][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.450418,0.716149,-0.00631398][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.416188,0.716149,-0.00793457][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.416188,0.716149,-0.00793457][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.48453,0.716149,-0.00631404][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.450418,0.716149,-0.00631398][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.450418,0.716149,-0.00631398][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.518761,0.716149,-0.0079346][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.48453,0.716149,-0.00631404][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.48453,0.716149,-0.00631404][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.553294,0.716149,-0.0104281][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.518761,0.716149,-0.0079346][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.518761,0.716149,-0.0079346][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.58818,0.716149,-0.0126314][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.553294,0.716149,-0.0104281][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.553294,0.716149,-0.0104281][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0.623299,0.702013,0.00602183][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0.623299,0.716149,-0.0135044][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.58818,0.716149,-0.0126314][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.58818,0.716149,-0.0126314][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0.623299,0.702013,0.00602183][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0,0.702013,0.00602183][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0,0.702013,0.00602183][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0,0.66203,0.00602183][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0.623299,0.66203,0.00602183][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0.623299,0.702013,0.00602183][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0.623299,0.66203,0.00602183][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.0351186,0.647894,-0.0126315][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0,0.66203,0.00602183][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0,0.66203,0.00602183][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0,0.647894,-0.0135044][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.0351186,0.647894,-0.0126315][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.0700042,0.647894,-0.0104281][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.0351186,0.647894,-0.0126315][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.0700042,0.647894,-0.0104281][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.104538,0.647894,-0.00793469][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.0700042,0.647894,-0.0104281][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.104538,0.647894,-0.00793469][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.138769,0.647894,-0.0063141][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.104538,0.647894,-0.00793469][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.138769,0.647894,-0.0063141][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.172881,0.647894,-0.00631407][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.138769,0.647894,-0.0063141][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.172881,0.647894,-0.00631407][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.207111,0.647894,-0.00793463][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.172881,0.647894,-0.00631407][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.207111,0.647894,-0.00793463][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.241645,0.647894,-0.010428][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.207111,0.647894,-0.00793463][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.241645,0.647894,-0.010428][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.276531,0.647894,-0.0126312][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.241645,0.647894,-0.010428][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.276531,0.647894,-0.0126312][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.311649,0.647894,-0.0135042][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.276531,0.647894,-0.0126312][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.311649,0.647894,-0.0135042][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.346768,0.647894,-0.0126312][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.311649,0.647894,-0.0135042][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.346768,0.647894,-0.0126312][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.381654,0.647894,-0.0104279][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.346768,0.647894,-0.0126312][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.381654,0.647894,-0.0104279][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.416188,0.647894,-0.00793457][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.381654,0.647894,-0.0104279][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.416188,0.647894,-0.00793457][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.450418,0.647894,-0.00631401][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.416188,0.647894,-0.00793457][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.450418,0.647894,-0.00631401][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.48453,0.647894,-0.00631407][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.450418,0.647894,-0.00631401][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.48453,0.647894,-0.00631407][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.518761,0.647894,-0.00793463][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.48453,0.647894,-0.00631407][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.518761,0.647894,-0.00793463][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.553294,0.647894,-0.0104281][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.518761,0.647894,-0.00793463][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.553294,0.647894,-0.0104281][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.58818,0.647894,-0.0126314][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.553294,0.647894,-0.0104281][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.58818,0.647894,-0.0126314][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.623299,0.647894,-0.0135044][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0.623299,0.66203,0.00602183][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.58818,0.647894,-0.0126314][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.623299,0.647894,-0.0135044][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.662233,0.866485,0][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.657118,0.808025,0][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.657118,0.808025,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.687034,0.91967,0][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.662233,0.866485,0][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.662233,0.866485,0][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.728529,0.961166,0][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.687034,0.91967,0][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.687034,0.91967,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.781715,0.985967,0][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.728529,0.961166,0][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.728529,0.961166,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.840175,0.991081,0][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.781715,0.985967,0][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.781715,0.985967,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.896859,0.975893,0][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.840175,0.991081,0][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.840175,0.991081,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.94493,0.942233,0][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.896859,0.975893,0][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.896859,0.975893,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.97859,0.894163,0][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.94493,0.942233,0][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.94493,0.942233,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.993778,0.837479,0][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.97859,0.894163,0][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.97859,0.894163,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.988663,0.779018,0][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.993778,0.837479,0][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.993778,0.837479,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.963863,0.725833,0][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.988663,0.779018,0][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.988663,0.779018,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.922367,0.684337,0][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.963863,0.725833,0][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.963863,0.725833,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.869182,0.659537,0][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.922367,0.684337,0][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.922367,0.684337,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.810721,0.654422,0][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.869182,0.659537,0][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.869182,0.659537,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.754037,0.66961,0][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.810721,0.654422,0][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.810721,0.654422,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.705967,0.70327,0][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.754037,0.66961,0][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.754037,0.66961,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.672307,0.751341,0][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.705967,0.70327,0][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.705967,0.70327,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.657118,0.808025,0][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.672307,0.751341,0][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.672307,0.751341,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/pumpkin.mesh b/charcustom/hats/fonts/pumpkin.mesh
new file mode 100644
index 0000000..8d610d3
--- /dev/null
+++ b/charcustom/hats/fonts/pumpkin.mesh
@@ -0,0 +1,3 @@
+version 1.00
+1488
+[2.54992,-0.126848,4.27998][0.566532,0.0444978,0.822837][0.492604,0.277496,0][2.53399,-0.967802,4.23822][0.564685,-0.135171,0.814162][0.474456,0.277424,0][3.30265,-0.995356,3.80491][0.629015,-0.132955,0.76594][0.474242,0.260829,0][1.99969,2.46521,2.45039][-0.484135,-0.707505,-0.51483][0.401874,0.828401,0][2.58006,2.45252,1.64583][-0.630293,-0.722413,-0.284342][0.384383,0.827354,0][2.70547,1.90716,2.33444][-0.669778,-0.553362,-0.495165][0.398275,0.814198,0][-3.56059,-1.86281,-1.55822][-0.751678,-0.322602,-0.575246][0.295376,0.550008,0][-3.25324,-2.65384,-1.37277][-0.681983,-0.497126,-0.536437][0.277433,0.546006,0][-3.579,-2.65797,-0.688025][-0.845835,-0.502525,-0.178975][0.278531,0.531232,0][4.55106,-0.306155,-0.137167][0.988715,0.0473355,-0.142133][0.496053,0.51115,0][4.43449,0.524566,-0.0830664][0.962318,0.233715,-0.139001][0.478921,0.505217,0][4.64326,0.561965,0.741793][0.971123,0.23107,-0.0593929][0.483616,0.488049,0][3.43994,-0.888327,-1.40395][-0.854929,0.140059,0.49948][0.313094,0.758423,0][3.72913,-0.921031,-0.767367][-0.933124,0.143902,0.329502][0.326656,0.75563,0][3.76163,-0.201203,-0.767689][-0.94319,-0.0555365,0.327578][0.327811,0.770777,0][0.163038,-3.92573,1.64146][0.00507077,0.959264,-0.282465][0.222886,0.760928,0][-0.70643,-3.92635,1.20403][0.215761,0.962682,-0.163371][0.203841,0.752658,0][-0.477227,-3.66421,2.18926][0.167401,0.885306,-0.433832][0.223954,0.743637,0][-2.26892,1.87686,-2.52528][-0.187848,0.244696,-0.283773][0.173409,0.516276,0][-1.78952,2.94609,-1.92064][-0.536472,0.699311,-0.4724][0.167508,0.544109,0][-1.28687,2.94712,-2.25249][-0.213628,0.714272,-0.666467][0.15467,0.54208,0][4.04945,0.640775,-1.69642][0.796514,0.253055,-0.549116][0.465937,0.537748,0][3.8012,1.45136,-1.52738][0.747895,0.434417,-0.501932][0.449416,0.529411,0][4.12951,1.41399,-0.806189][0.890754,0.41756,-0.179447][0.455469,0.514938,0][-3.00362,-2.11972,1.34785][0.830099,0.494218,-0.258234][0.329231,0.941359,0][-3.07455,-2.13914,0.106199][0.851621,0.511393,0.114973][0.326031,0.914759,0][-3.39508,-1.47591,0.742921][0.93901,0.339055,-0.0574659][0.342766,0.926672,0][-1.09023,2.89764,-1.09105][0.341996,-0.828226,0.443938][0.170182,0.930912,0][-1.58931,2.90809,-0.498427][0.44504,-0.859261,0.252211][0.180711,0.943738,0][-1.7977,2.46996,-1.17795][0.516645,-0.717392,0.467362][0.165167,0.94685,0][-0.145379,-1.86192,-2.83949][0.341491,0.597549,3.27831][0.205139,0.614641,0][0.574839,-1.50136,-3.01295][-0.0581411,0.319484,0.945806][0.221074,0.621576,0][0.599135,-0.80014,-3.18545][-0.0510904,0.0923703,0.994413][0.222409,0.636657,0][0.93798,-0.468988,-3.82231][0.478129,0.000252229,-1.17083][0.348863,0.186938,0][1.47741,-1.04911,-3.60215][0.255411,-0.128559,-0.958247][0.35979,0.200082,0][0.675893,-1.01668,-3.92946][0.184041,-0.125211,-0.974911][0.342561,0.198424,0][-1.2478,-3.65286,1.5834][0.384748,0.875395,-0.292665][0.203469,0.739334,0][-1.51969,-3.64757,0.98444][0.481217,0.87208,-0.0889189][0.18983,0.743105,0][-1.73421,-3.25369,1.92801][0.54751,0.760938,-0.348147][0.203552,0.727742,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.80283,-4.29184,-0.0712322][-0.278599,-0.954793,0.103693][0.359654,0.374862,0][-1.62579,-4.29998,-0.430933][-0.107191,-0.963158,-0.246652][0.351975,0.378766,0][0.791056,-2.1951,3.78828][-0.195101,0.504719,-0.840949][0.364852,0.693847,0][0.169458,-2.21154,3.83911][0.0550603,0.496625,-0.866217][0.351435,0.693983,0][0.170005,-1.56006,4.13409][0.0051103,0.323238,-0.946304][0.351676,0.679928,0][-2.80659,1.97132,1.32072][0.780963,-0.597983,-0.180314][0.0760355,0.957017,0][-2.32728,1.95397,2.36014][0.628183,-0.614963,-0.476662][0.05332,0.966718,0][-2.9503,1.36129,2.03498][0.814075,-0.442387,-0.376267][0.0579156,0.947421,0][-0.644883,-1.93863,4.83862][-0.0811128,-0.322498,0.943088][0.45194,0.345517,0][-0.678955,-1.08898,5.0408][-0.0900977,-0.14335,0.985562][0.470252,0.346673,0][-1.51168,-1.07427,4.80373][-0.445865,-0.144927,0.88329][0.470157,0.364643,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.28956,-4.30386,2.14969][-0.0340184,-0.961283,0.273456][0.380082,0.33017,0][-1.55418,-4.29641,1.84231][-0.28888,-0.95701,-0.0260679][0.380511,0.338841,0][0.36766,2.9257,-1.51669][-0.0687725,-0.841218,0.536304][0.167115,0.898621,0][-0.40414,2.90781,-1.45042][0.162007,-0.841176,0.515923][0.165368,0.91507,0][-0.559164,2.4737,-1.98854][0.226091,-0.725995,0.649473][0.153038,0.917637,0][1.61527,2.92267,-2.21875][0.227064,0.704316,-0.672593][0.367513,0.114678,0][1.89535,2.22965,-2.73014][0.299795,0.556717,-0.774719][0.372718,0.129944,0][1.19935,2.16448,-2.86939][0.270064,0.550162,-0.790182][0.357645,0.130515,0][2.32581,-1.10987,-3.46431][0.333904,-0.154059,-0.929932][0.377995,0.202406,0][2.34178,-0.238315,-3.49488][0.338448,0.0747115,-0.938015][0.379382,0.183649,0][3.06675,-0.215898,-3.05888][0.685243,0.0851221,-0.723323][0.395028,0.184033,0][2.56032,0.355795,-2.32892][-0.440779,-0.0151487,0.619774][0.266003,0.659294,0][1.93653,0.158308,-2.77738][-1.05221,-0.0361623,1.47949][0.252334,0.655761,0][1.95381,-0.862782,-2.79005][-0.44962,0.121652,0.884897][0.251525,0.63374,0][-2.87363,2.98384,1.34596][-0.612996,0.738926,0.279686][0.437149,0.172416,0][-3.43444,2.33256,1.52594][-0.753699,0.590344,0.288847][0.422346,0.173024,0][-3.07929,2.2496,2.1317][-0.728013,0.597079,0.336888][0.425319,0.158376,0][-3.56647,-0.0970874,3.28102][-0.872093,0.0389061,0.487791][0.332951,0.44559,0][-3.46655,0.766727,3.22766][-0.847633,0.230624,0.47784][0.350959,0.446742,0][-3.72339,0.743229,2.42073][-0.892227,0.226861,0.390468][0.351394,0.464153,0][-0.996556,2.89668,3.49901][-0.368292,0.72521,0.581749][0.460902,0.116179,0][-0.725614,3.44611,2.85714][-0.329408,0.859445,0.390954][0.472478,0.127043,0][-1.09346,3.31855,2.56792][-0.245791,0.859383,0.448383][0.466458,0.135492,0][-0.077658,3.4817,-1.91708][-0.217187,0.864554,-0.453184][0.516805,0.221068,0][0.0112227,3.75921,-1.14692][-0.237527,0.965884,-0.103197][0.514559,0.204349,0][0.33546,3.76632,-1.14334][0.22018,0.967629,-0.123346][0.521136,0.202188,0][3.1791,0.590356,2.65378][-0.79561,-0.234967,-0.558386][0.402871,0.784028,0][3.53715,0.573195,2.03459][-0.890278,-0.219395,-0.399087][0.389422,0.783387,0][3.63038,-0.141548,2.05026][-0.909944,-0.038581,-0.412932][0.388571,0.767866,0][0.169089,-2.79261,3.42631][-0.0294075,0.659388,-0.751227][0.255312,0.739718,0][1.23557,-2.76906,3.22395][-0.295844,0.650883,-0.699162][0.266421,0.760066,0][1.04236,-3.2689,2.7318][-0.255377,0.790547,-0.556613][0.254456,0.762245,0][4.27782,-1.98841,-0.899545][0.917923,-0.333481,-0.214962][0.525216,0.536252,0][3.93245,-2.78953,-0.74838][0.845635,-0.500843,-0.184549][0.541297,0.537301,0][3.6305,-2.75449,-1.43999][0.676482,-0.505883,-0.535215][0.535554,0.551197,0][2.56795,-2.73612,-2.62005][-1.28826,0.54193,-0.0239802][0.719542,0.0854703,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.705935,0.0904809,0][2.29986,-3.28414,-0.458669][-3.28522,1.33184,-0.0583885][0.675988,0.0656681,0][4.31056,-1.96161,-0.0776094][0.933301,-0.331651,-0.137686][0.529493,0.519034,0][4.50978,-1.14541,-0.134556][0.978944,-0.146002,-0.142658][0.513131,0.515799,0][4.72354,-1.17294,0.706007][0.987783,-0.145985,-0.0545306][0.519264,0.498676,0][1.86484,-1.02159,4.80364][0.480271,-0.137546,0.866268][0.472964,0.291832,0][1.78532,-1.8727,4.61842][0.472744,-0.317372,0.822063][0.454565,0.293126,0][2.42732,-1.79351,4.07795][0.538705,-0.307515,0.784367][0.456591,0.279316,0][0.965479,3.24116,1.72099][-0.174533,-0.927163,-0.331521][0.238337,0.89837,0][1.5749,3.24568,0.887598][-0.367293,-0.923281,-0.11246][0.223168,0.882194,0][1.87234,2.91578,1.7505][-0.449569,-0.841283,-0.300217][0.242423,0.880723,0][-1.61224,2.46406,2.42678][0.450556,-0.733493,-0.508907][0.242263,0.95787,0][-2.18104,2.49341,1.63626][0.605637,-0.740255,-0.291935][0.223228,0.966378,0][-1.46794,2.91275,1.71473][0.417673,-0.855521,-0.305995][0.228081,0.950318,0][-3.09123,-3.36411,-0.520171][-0.745948,-0.654232,-0.124668][0.261737,0.52761,0][-3.579,-2.65797,-0.688025][-0.845835,-0.502525,-0.178975][0.278531,0.531232,0][-3.25324,-2.65384,-1.37277][-0.681983,-0.497126,-0.536437][0.277433,0.546006,0][-2.91591,-1.48846,-1.21831][0.814745,0.31808,0.484785][0.335957,0.884857,0][-3.20696,-1.4884,-0.598524][0.888413,0.337191,0.311486][0.338531,0.898023,0][-2.66298,-2.14718,-1.07076][0.751173,0.51215,0.416463][0.321486,0.889718,0][-3.34718,2.30114,-0.580576][-0.807244,0.570668,-0.150646][0.437713,0.215837,0][-2.80571,2.96131,-0.438946][-0.686669,0.720547,-0.0964196][0.450062,0.208726,0][-2.56447,2.95676,-0.994387][-0.52662,0.713136,-0.462718][0.458552,0.218611,0][-4.10954,-1.02724,-0.886387][-0.960195,-0.141901,-0.240603][0.315144,0.535512,0][-4.14929,-0.15671,-0.894337][-0.969037,0.0489349,-0.242019][0.333803,0.535683,0][-3.7755,-0.146231,-1.67514][-0.802406,0.0487193,-0.594787][0.332666,0.552531,0][0.805785,3.71346,1.19296][-0.220013,0.972248,0.0795534][0.515288,0.151165,0][1.37894,3.76031,1.81937][-0.0774477,0.956712,0.280542][0.522997,0.134551,0][1.59349,3.77417,1.5831][0.231098,0.969121,-0.0860089][0.528934,0.138021,0][2.97428,2.78679,1.88236][0.663937,0.696139,0.273091][0.438684,0.450136,0][3.4677,2.13901,2.08156][0.765817,0.552743,0.328633][0.454839,0.450131,0][3.83113,2.19402,1.47514][0.778631,0.557459,0.288052][0.451509,0.462786,0][-0.393079,-3.39012,-2.64667][0.217589,1.13756,0.0340557][0.714785,0.113826,0][-0.709817,-3.33385,-2.50269][0.317406,1.65941,0.0496784][0.720914,0.117666,0][-0.389174,-3.42716,-1.43441][0.0846336,2.65283,0.900071][0.711815,0.139814,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.685138,0.112096,0][1.00023,-3.36245,-1.43206][-0.0262323,2.10866,-0.0364691][0.682223,0.136423,0][1.86384,-3.3428,-0.917229][-0.34569,5.17696,0.624401][0.662623,0.145327,0][1.64202,1.78421,-2.26318][-0.252313,-2.71606,1.25731][0.191414,0.284511,0][0.853031,1.55239,-2.6827][0.191995,-1.67898,1.16755][0.172057,0.288732,0][1.28523,1.65751,-3.1143][0.751314,-3.40226,0.0410111][0.173524,0.275456,0][-0.101236,1.94785,-2.54439][0.037979,-0.577907,0.815219][0.210498,0.696676,0][1.06212,1.92463,-2.42191][-0.247661,-0.571548,0.782302][0.235537,0.69483,0][0.426702,2.48335,-2.07552][-0.0978229,-0.723807,0.683034][0.222493,0.707604,0][-3.79399,-0.926811,2.42413][-0.905635,-0.141692,0.399685][0.316132,0.46408,0][-3.83269,-0.0878661,2.44893][-0.915197,0.0405994,0.400958][0.334116,0.463544,0][-4.26728,-0.131205,1.68077][-0.946835,0.0397163,0.319258][0.334775,0.480119,0][-2.22428,-3.38493,3.12353][-0.446887,-0.646054,0.618795][0.17902,0.108536,0][-1.78964,-3.99815,2.67011][-0.286329,-0.822926,0.490723][0.164573,0.115906,0][-1.30708,-3.87313,2.91744][-0.33752,-0.821541,0.459511][0.1566,0.108686,0][0.675883,-0.489919,-3.92733][-0.10315,0.704063,-0.00952553][0.0444816,0.396617,0][-0.181903,-0.615974,-3.95567][-0.234973,1.60383,-0.0216988][0.0257793,0.397229,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.0243848,0.380393,0][-0.370139,-0.100523,-3.87867][1.98679,-0.434652,0.0564347][0.112258,0.0656364,0][-0.183183,0.756675,-3.85844][1.75497,-0.430725,-0.0305403][0.0933245,0.0659073,0][-0.473817,-0.478471,-3.13957][1.12327,-0.267376,-0.00527127][0.120101,0.0493781,0][-2.10725,0.417669,-3.18555][0.981955,1.74344,-0.00549473][0.0759457,0.271176,0][-2.53004,0.791738,-2.86136][0.817295,0.930943,-0.00828316][0.0877213,0.270537,0][-2.09209,0.411748,-2.35537][0.55078,0.627368,-0.00558207][0.0871974,0.285115,0][-2.56982,-1.01975,-2.95775][-0.686049,-0.136793,-0.71458][0.272631,0.194606,0][-2.60057,-0.149514,-2.98327][-0.686569,0.0528615,-0.725141][0.27301,0.17582,0][-1.85938,-0.143039,-3.47366][-0.372931,0.0623176,-0.925764][0.288986,0.176568,0][-0.350159,0.833803,-3.76938][-1.01668,0.92527,-0.0400111][0.127537,0.490698,0][-1.02285,0.0898155,-3.61537][-1.2826,1.14497,-0.0710672][0.143845,0.477012,0][-1.04128,0.108405,-2.98323][-1.13479,1.02581,-0.0510726][0.150525,0.485007,0][0.599135,-0.80014,-3.18545][-0.0510904,0.0923703,0.994413][0.222409,0.636657,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.204379,0.641625,0][-0.145379,-1.86192,-2.83949][0.341491,0.597549,3.27831][0.205139,0.614641,0][3.76163,-0.201203,-0.767689][-0.94319,-0.0555365,0.327578][0.327811,0.770777,0][3.9328,-0.223113,-0.0737488][-0.988074,-0.0479523,0.146326][0.342658,0.768546,0][3.83279,0.494151,-0.0293971][-0.952072,-0.280608,0.121727][0.344807,0.784046,0][1.73059,2.91576,-0.784132][-0.446736,-0.835755,0.319282][0.188165,0.873226,0][2.12975,2.89781,-0.104801][-0.536046,-0.823454,0.185953][0.204163,0.86776,0][1.59595,3.24462,0.355543][-0.377019,-0.92272,0.0802779][0.211984,0.879563,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][1.87108,-4.29421,1.76349][0.272319,-0.961737,-0.0300763][0.32156,0.295993,0][1.61213,-4.29529,2.07445][0.0264614,-0.964925,0.261188][0.330012,0.294003,0][2.91173,-2.67045,3.43102][0.520666,-0.48129,0.705171][0.188435,0.0840493,0][2.56231,-3.39719,3.06361][0.422183,-0.650342,0.631519][0.189606,0.0649649,0][2.99572,-3.41811,2.56613][0.671606,-0.65917,0.338291][0.203847,0.064703,0][2.1547,-2.76591,2.61494][-0.536795,0.652194,-0.535252][0.268718,0.783518,0][2.96751,-2.80598,1.1901][-0.735732,0.637422,-0.228893][0.255892,0.816298,0][2.30758,-3.26488,1.49562][-0.559097,0.779625,-0.282127][0.250992,0.799985,0][2.2712,-3.34731,-0.277232][-0.927368,1.23866,0.408662][0.220787,0.823483,0][3.0121,-2.83447,0.105468][-0.718231,0.68185,0.138651][0.238368,0.831833,0][2.50939,-2.7941,-1.1244][-2.86467,1.5081,0.177633][0.211182,0.840571,0][1.43394,1.29823,3.75269][-0.323074,-0.418218,-0.848951][0.379949,0.618706,0][0.801441,1.27617,3.93194][-0.107939,-0.431471,-0.895646][0.366295,0.618959,0][1.31129,1.91685,3.41331][-0.256656,-0.585099,-0.769277][0.37752,0.605316,0][-1.83494,0.593155,3.65842][0.484394,-0.283911,-0.8275][0.309177,0.632769,0][-2.37769,0.631209,3.24428][0.653624,-0.239394,-0.71796][0.29748,0.631757,0][-2.21051,1.3079,3.06581][0.576985,-0.439786,-0.688242][0.301325,0.617217,0][-2.6414,1.50703,-2.2569][1.76824,0.139234,-0.155654][0.108069,0.27067,0][-2.67477,1.32563,-1.31492][1.50608,-0.0471571,0.309556][0.11811,0.288732,0][-2.54689,0.832546,-1.78661][2.76184,0.064189,0.664701][0.103186,0.287842,0][-2.49068,1.83236,-1.07872][0.0258396,-0.726455,-0.00394824][0.120249,0.098515,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.10991,0.115381,0][-2.19081,1.84529,-1.49616][0.113063,-2.89537,-0.0458979][0.109677,0.101778,0][-2.16771,0.634531,4.22029][-0.498006,0.229999,0.836116][0.506694,0.37964,0][-2.22164,-0.19734,4.32153][-0.52166,0.0380939,0.852303][0.488723,0.380392,0][-1.53099,-0.202149,4.84664][-0.444701,0.0420573,0.894691][0.488961,0.365491,0][1.81539,0.712061,4.73316][0.447484,0.242156,0.860883][0.510337,0.293757,0][1.69427,1.53157,4.46423][0.415912,0.419118,0.807067][0.527956,0.296775,0][0.933889,1.49189,4.68244][0.0414344,0.416417,0.908229][0.526724,0.313158,0][-0.561135,-3.84655,-1.99829][-0.148859,-0.816944,-0.557174][0.18743,0.155298,0][-0.709817,-3.33385,-2.50269][0.317406,1.65941,0.0496784][0.182212,0.170262,0][-0.393079,-3.39012,-2.64667][0.217589,1.13756,0.0340557][0.175064,0.167666,0][1.73179,-4.15502,-0.773755][0.165374,-0.971922,-0.167388][0.2903,0.341005,0][2.27115,-3.87043,-1.24253][0.408612,-0.831649,-0.376027][0.274221,0.341459,0][2.6586,-4.04188,-0.873202][0.353312,-0.834963,-0.421908][0.273001,0.330503,0][3.04616,-1.08875,-3.03626][0.67629,-0.142624,-0.722696][0.151751,0.38574,0][3.06675,-0.215898,-3.05888][0.685243,0.0851221,-0.723323][0.133827,0.37992,0][3.54802,-0.206916,-2.37061][0.745345,0.0837381,-0.661399][0.139372,0.362666,0][3.95104,-1.94887,-1.6518][0.755481,-0.342252,-0.55867][0.180661,0.357774,0][3.6305,-2.75449,-1.43999][0.676482,-0.505883,-0.535215][0.197344,0.36356,0][3.09199,-2.64027,-1.95525][0.63101,-0.509404,-0.585092][0.190124,0.377776,0][-1.62267,1.89368,-2.92234][-0.421623,-2.5359,-0.0697341][0.0812629,0.118804,0][-2.19081,1.84529,-1.49616][0.113063,-2.89537,-0.0458979][0.109677,0.101778,0][-2.26892,1.87686,-2.52528][-0.187848,0.244696,-0.283773][0.0974354,0.120369,0][-0.183183,0.756675,-3.85844][1.75497,-0.430725,-0.0305403][0.0933245,0.0659073,0][-0.110019,0.923042,-3.03619][1.24367,-0.319431,-0.0460311][0.0888212,0.0483495,0][-0.473817,-0.478471,-3.13957][1.12327,-0.267376,-0.00527127][0.120101,0.0493781,0][0.406652,0.776108,-3.07764][-0.420602,-1.59046,-0.0709133][0.390003,0.0354309,0][-0.110019,0.923042,-3.03619][1.24367,-0.319431,-0.0460311][0.390897,0.0470213,0][-0.106439,0.942394,-3.7639][-0.412202,-1.62635,-0.0858896][0.37519,0.0470621,0][-1.04128,0.108405,-2.98323][-1.13479,1.02581,-0.0510726][0.150525,0.485007,0][-0.384063,0.820988,-3.0241][-1.21832,1.12158,-0.0361383][0.135738,0.499474,0][-0.350159,0.833803,-3.76938][-1.01668,0.92527,-0.0400111][0.127537,0.490698,0][-1.79001,-3.12667,-2.41751][1.68487,3.12243,-0.0250921][0.641069,0.0565531,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.638954,0.0423409,0][-2.20834,-2.58285,-1.1897][0.353761,0.335966,-0.0282743][0.667606,0.0418287,0][-0.951185,-3.28601,-2.55604][0.0688564,0.348973,0.0120743][0.725974,0.117096,0][-1.25213,-3.27081,-1.2791][0.539164,2.02488,0.565707][0.729093,0.145197,0][-0.814596,-3.35288,-1.40236][0.71134,2.79572,0.663655][0.720454,0.141515,0][-2.56447,2.95676,-0.994387][-0.52662,0.713136,-0.462718][0.458552,0.218611,0][-1.96488,3.48006,-0.673054][-0.315806,0.862914,-0.39452][0.470436,0.20758,0][-1.62843,3.32934,-0.99942][-0.386189,0.864228,-0.322442][0.478859,0.212302,0][-1.99316,2.93521,2.86495][-0.333576,0.731702,0.594424][0.444951,0.135572,0][-1.51307,3.4668,2.35925][-0.193078,0.862307,0.468132][0.459821,0.142314,0][-1.81947,3.47912,2.00529][-0.468559,0.871995,0.141692][0.455954,0.151547,0][-0.181903,-0.615974,-3.95567][-0.234973,1.60383,-0.0216988][0.32456,0.188765,0][0.675883,-0.489919,-3.92733][-0.10315,0.704063,-0.00952553][0.343191,0.187075,0][0.675893,-1.01668,-3.92946][0.184041,-0.125211,-0.974911][0.342561,0.198424,0][-0.181903,-0.615974,-3.95567][-0.234973,1.60383,-0.0216988][0.32456,0.188765,0][-0.147464,-1.83723,-3.72766][-0.539444,-0.402461,-2.07419][0.32384,0.215117,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.306715,0.21035,0][-1.73421,-3.25369,1.92801][0.54751,0.760938,-0.348147][0.302104,0.957064,0][-2.16711,-3.23663,0.68439][0.625832,0.778878,-0.0410318][0.300979,0.930183,0][-2.6031,-2.71923,1.24957][0.742552,0.633671,-0.216973][0.314874,0.940868,0][-1.76763,-1.54109,3.56666][0.468293,0.353368,-0.809835][0.309879,0.678838,0][-0.508513,-1.56449,4.06046][0.233049,0.399734,-0.88651][0.337036,0.679785,0][0.169458,-2.21154,3.83911][0.0550603,0.496625,-0.866217][0.351435,0.693983,0][0.776539,2.91056,3.6821][-0.0398005,0.717402,0.695522][0.557249,0.317254,0][0.857409,2.24979,4.24886][0.00411687,0.57663,0.816995][0.543035,0.315183,0][1.54244,2.27872,4.05964][0.383563,0.576161,0.721746][0.543998,0.30042,0][2.77696,2.91447,2.45423][0.64539,0.704082,0.296211][0.534013,0.0521338,0][2.22208,3.47022,2.05539][0.49495,0.853928,0.160726][0.531573,0.0709819,0][1.91074,3.47055,2.40236][0.196239,0.85613,0.478049][0.521524,0.0705346,0][1.69086,-3.64785,-0.342411][-0.373796,0.895959,0.239863][0.211157,0.814008,0][0.691364,-3.63482,-1.10859][-0.141801,0.88385,0.44576][0.184911,0.808152,0][0.680224,-3.9106,-0.391648][-0.138622,0.957354,0.253491][0.19606,0.797357,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][-0.814596,-3.35288,-1.40236][0.71134,2.79572,0.663655][0.160303,0.788256,0][-1.25213,-3.27081,-1.2791][0.539164,2.02488,0.565707][0.156627,0.779614,0][-1.21636,-1.62891,-2.6553][0.40547,0.347367,1.13554][0.182333,0.620901,0][-0.750863,-1.72513,-2.79209][0.450586,0.386018,1.26189][0.192252,0.618289,0][-0.817697,-0.769827,-3.06045][0.260708,0.148547,0.953921][0.191917,0.638949,0][-3.20696,-1.4884,-0.598524][0.888413,0.337191,0.311486][0.338531,0.898023,0][-2.91591,-1.48846,-1.21831][0.814745,0.31808,0.484785][0.335957,0.884857,0][-3.0618,-0.787179,-1.29888][0.851145,0.138341,0.506373][0.351106,0.881374,0][2.95176,0.718481,-2.91691][-1.9698,1.80624,-0.141748][0.0587982,0.451044,0][2.59968,0.315043,-3.22939][-0.75527,0.709562,-0.0651227][0.0699699,0.451975,0][2.56032,0.355795,-2.32892][-0.440779,-0.0151487,0.619774][0.0575496,0.466932,0][1.28523,1.65751,-3.1143][0.751314,-3.40226,0.0410111][0.173524,0.275456,0][2.01312,1.80464,-2.91842][0.282276,-2.59671,0.106814][0.188572,0.268533,0][1.64202,1.78421,-2.26318][-0.252313,-2.71606,1.25731][0.191414,0.284511,0][3.17935,2.84737,-0.410328][0.710091,0.698554,-0.0882764][0.425016,0.497684,0][3.71793,2.16773,-0.629627][0.807857,0.572577,-0.139723][0.439583,0.506607,0][3.419,2.20004,-1.2776][0.651161,0.596628,-0.469067][0.434157,0.519615,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][1.81114,3.75574,0.0457153][0.233714,0.960742,0.149509][0.543286,0.168273,0][1.67063,3.7596,-0.254768][0.0489948,0.969461,-0.240302][0.542406,0.175352,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.647691,0.0203074,0][0.295969,-3.35103,-1.60632][-0.712714,-0.046139,0.00453053][0.674946,0.02,0][0.254266,-2.77128,-2.26251][-2.42751,-0.154908,0.0133374][0.660787,0.0324822,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.152684,0.152305,0][0.473982,-3.97981,-2.21814][0.186512,-0.819565,-0.54178][0.167329,0.144825,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.160544,0.163782,0][2.28358,0.240962,-3.40082][-0.607071,1.99774,-0.0730785][0.0776502,0.453869,0][1.93653,0.158308,-2.77738][-1.05221,-0.0361623,1.47949][0.0744275,0.469021,0][2.56032,0.355795,-2.32892][-0.440779,-0.0151487,0.619774][0.0575496,0.466932,0][0.785706,0.775299,-3.76721][1.15964,-0.0646017,-0.032417][0.163225,0.192516,0][0.840329,1.58378,-3.42435][1.92671,-0.102693,-0.0446861][0.181151,0.197235,0][0.806938,0.780468,-3.01797][1.10892,-0.0617761,-0.0309991][0.165723,0.208489,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.0243848,0.380393,0][0.930866,-0.47532,-3.13645][-0.182819,1.5385,0.0123073][0.0499578,0.379552,0][0.93798,-0.468988,-3.82231][0.478129,0.000252229,-1.17083][0.0501322,0.394351,0][-0.106439,0.942394,-3.7639][-0.412202,-1.62635,-0.0858896][0.37519,0.0470621,0][0.419449,0.824439,-3.8234][-0.328992,-1.41758,-0.0975165][0.373888,0.0354528,0][0.406652,0.776108,-3.07764][-0.420602,-1.59046,-0.0709133][0.390003,0.0354309,0][2.29986,-3.28414,-0.458669][-3.28522,1.33184,-0.0583885][0.675988,0.0656681,0][2.50939,-2.7941,-1.1244][-2.86467,1.5081,0.177633][0.693268,0.0667031,0][2.56795,-2.73612,-2.62005][-1.28826,0.54193,-0.0239802][0.719542,0.0854703,0][0.642199,-1.70389,-3.76011][0.443414,-2.71821,-0.0160606][0.726107,0.0566688,0][1.40922,-1.59528,-3.48035][0.0594714,-2.74806,0.0522794][0.708463,0.0545958,0][1.40427,-1.58283,-2.79453][0.22149,-1.42568,0.00393598][0.705151,0.0401728,0][-3.49332,-0.0384479,1.47752][0.971644,-0.0431786,-0.232474][0.375298,0.938904,0][-3.59717,-0.0588381,0.763015][0.997662,-0.0469706,-0.049642][0.373489,0.923593,0][-3.49332,0.656963,0.7745][0.957683,-0.286723,-0.0251743][0.388267,0.922151,0][-3.30088,0.645393,-0.606071][0.915149,-0.24502,0.320105][0.38394,0.892663,0][-3.00877,0.646454,-1.24674][0.836601,-0.24421,0.490367][0.381335,0.879047,0][-2.67477,1.32563,-1.31492][1.50608,-0.0471571,0.309556][0.394312,0.876081,0][1.74868,-3.646,1.24592][-0.395549,0.89302,-0.214606][0.238393,0.793168,0][1.90735,-3.65197,0.601951][-0.450609,0.892696,-0.00679868][0.229802,0.804592,0][1.23687,-3.91301,0.586218][-0.268365,0.963004,-0.0245837][0.219867,0.793069,0][2.51617,-3.28834,0.629083][-0.588497,0.807948,-0.0298625][0.239329,0.815233,0][2.30758,-3.26488,1.49562][-0.559097,0.779625,-0.282127][0.250992,0.799985,0][2.96751,-2.80598,1.1901][-0.735732,0.637422,-0.228893][0.255892,0.816298,0][4.08735,0.615685,2.31492][0.889166,0.216173,0.403302][0.489584,0.454484,0][4.1955,-0.214441,2.32897][0.906042,0.0384041,0.421441][0.507065,0.458988,0][4.64246,-0.250313,1.57108][0.944528,0.0417294,0.32577][0.505023,0.475388,0][4.14934,-2.80689,0.746314][0.856744,-0.511958,-0.062363][0.550983,0.506516,0][4.51616,-2.02011,0.730016][0.941031,-0.333696,-0.0557432][0.536045,0.502764,0][4.40488,-1.97317,1.54339][0.887388,-0.314394,0.337194][0.539355,0.485471,0][-4.02428,-1.84048,1.62577][-0.884948,-0.323266,0.335211][0.297538,0.481306,0][-3.67733,-2.62534,1.54761][-0.806883,-0.488957,0.331454][0.279582,0.482993,0][-3.29498,-2.51488,2.20329][-0.802019,-0.480012,0.355463][0.280541,0.468845,0][-2.52618,-3.82578,0.221759][-0.57246,-0.814139,-0.0973023][0.249863,0.511601,0][-3.12779,-3.24081,0.139856][-0.754633,-0.645243,-0.119124][0.264493,0.513368,0][-3.09123,-3.36411,-0.520171][-0.745948,-0.654232,-0.124668][0.261737,0.52761,0][-1.78897,2.92285,1.01311][0.474429,-0.870274,-0.132439][0.211923,0.954089,0][-1.83183,2.9214,0.238617][0.511786,-0.854896,0.0850215][0.195344,0.951794,0][-1.19433,3.23477,0.319714][0.361158,-0.930428,0.0621959][0.199872,0.937701,0][-0.40414,2.90781,-1.45042][0.162007,-0.841176,0.515923][0.165368,0.91507,0][0.36766,2.9257,-1.51669][-0.0687725,-0.841218,0.536304][0.167115,0.898621,0][0.577173,3.25148,-0.827196][-0.0969187,-0.923796,0.370414][0.182796,0.895928,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.33546,3.76632,-1.14334][0.22018,0.967629,-0.123346][0.521136,0.202188,0][0.0112227,3.75921,-1.14692][-0.237527,0.965884,-0.103197][0.514559,0.204349,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-1.28269,3.7475,-0.290009][-0.0135615,0.963574,-0.267097][0.482705,0.195031,0][-1.41157,3.75224,0.00670533][-0.183412,0.972679,0.142319][0.478177,0.189748,0][3.60128,-0.861384,2.02499][-0.899516,0.138752,-0.41427][0.386864,0.752749,0][3.23541,-0.843326,2.66005][-0.808655,0.140107,-0.571355][0.400658,0.753411,0][3.26155,-0.122976,2.69071][-0.818074,-0.0352837,-0.574029][0.402482,0.768541,0][0.878877,-0.839762,4.23971][-0.189892,0.137164,-0.972176][0.367223,0.664637,0][1.56235,-0.811139,4.03683][-0.38121,0.136249,-0.914393][0.381978,0.664259,0][1.50126,-1.51508,3.88228][-0.367141,0.331537,-0.869074][0.380413,0.679425,0][-1.28687,2.94712,-2.25249][-0.213628,0.714272,-0.666467][0.15467,0.54208,0][-1.53052,2.30549,-2.74848][-0.317153,0.5652,-0.761553][0.156037,0.523923,0][-2.26892,1.87686,-2.52528][-0.187848,0.244696,-0.283773][0.173409,0.516276,0][0.598203,1.53697,-3.57598][0.226671,0.397234,-0.889284][0.343943,0.143315,0][0.419449,0.824439,-3.8234][-0.328992,-1.41758,-0.0975165][0.339239,0.158452,0][-0.106439,0.942394,-3.7639][-0.412202,-1.62635,-0.0858896][0.328051,0.155281,0][-0.678955,-1.08898,5.0408][-0.0900977,-0.14335,0.985562][0.470252,0.346673,0][-0.644883,-1.93863,4.83862][-0.0811128,-0.322498,0.943088][0.45194,0.345517,0][0.175268,-1.87825,4.76669][-0.0101687,-0.319014,0.947695][0.453649,0.327855,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][0.948468,-4.3068,2.53634][0.26785,-0.956106,0.11882][0.347312,0.294668,0][0.566538,-4.31307,2.66733][-0.111996,-0.967117,0.228344][0.355502,0.297363,0][0.783444,-4.13997,-1.34785][0.0705212,-0.968754,-0.237785][0.298776,0.363056,0][0.977662,-3.84141,-2.03254][0.137193,-0.829905,-0.540774][0.285666,0.371635,0][1.50964,-3.98886,-1.95733][0.0775338,-0.831089,-0.550708][0.278082,0.363807,0][2.2712,-3.34731,-0.277232][-0.927368,1.23866,0.408662][0.652438,0.158045,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.656909,0.115501,0][1.80702,-3.37518,-2.53946][-0.0192064,1.01496,-0.00856407][0.667985,0.110711,0][3.00337,1.8922,1.82207][-0.770083,-0.558477,-0.308344][0.387145,0.813645,0][2.70547,1.90716,2.33444][-0.669778,-0.553362,-0.495165][0.398275,0.814198,0][2.58006,2.45252,1.64583][-0.630293,-0.722413,-0.284342][0.384383,0.827354,0][2.85973,1.86547,-1.00414][-0.731269,-0.531724,0.427219][0.326338,0.818265,0][3.28043,1.84181,0.682856][-0.844063,-0.536095,0.0126173][0.362477,0.813452,0][2.66183,2.41752,-0.296985][-0.703195,-0.680491,0.206031][0.342505,0.829522,0][-3.59717,-0.0588381,0.763015][0.997662,-0.0469706,-0.049642][0.373489,0.923593,0][-3.49332,-0.0384479,1.47752][0.971644,-0.0431786,-0.232474][0.375298,0.938904,0][-3.45902,-0.758504,1.4602][0.961035,0.14386,-0.236044][0.359916,0.940288,0][-2.37769,0.631209,3.24428][0.653624,-0.239394,-0.71796][0.29748,0.631757,0][-1.83494,0.593155,3.65842][0.484394,-0.283911,-0.8275][0.309177,0.632769,0][-1.88586,-0.120548,3.74659][0.525948,-0.0420562,-0.849476][0.307827,0.648149,0][-2.14648,-2.42854,-1.4593][2.18026,-0.903557,-0.0169461][0.639506,0.150178,0][-2.20834,-2.58285,-1.1897][0.353761,0.335966,-0.0282743][0.645693,0.153081,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.617469,0.158045,0][-0.750863,-1.72513,-2.79209][0.450586,0.386018,1.26189][0.636142,0.0748318,0][-1.21636,-1.62891,-2.6553][0.40547,0.347367,1.13554][0.646133,0.0745241,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.63625,0.0896681,0][-1.08994,-3.99322,-1.89673][-0.120841,-0.815176,-0.566467][0.197961,0.157483,0][-0.951185,-3.28601,-2.55604][0.0688564,0.348973,0.0120743][0.185468,0.174114,0][-0.561135,-3.84655,-1.99829][-0.148859,-0.816944,-0.557174][0.18743,0.155298,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.206623,0.19695,0][-1.93826,-3.37035,-2.11395][-0.556551,-0.65357,-0.512931][0.208146,0.178305,0][-2.32132,-3.25174,-1.57255][-0.575183,-0.63885,-0.510916][0.221611,0.178168,0][0.584195,2.89768,2.54146][-0.0882713,-0.853005,-0.514385][0.253925,0.910942,0][-0.191856,2.89184,2.53071][0.113463,-0.842432,-0.526721][0.250537,0.927119,0][-0.0646989,3.22973,1.89874][0.093112,-0.923165,-0.372956][0.237905,0.920651,0][1.31129,1.91685,3.41331][-0.256656,-0.585099,-0.769277][0.37752,0.605316,0][0.156778,1.88733,3.62169][0.0298038,-0.549037,-0.835266][0.352602,0.605547,0][0.179274,2.43929,3.14332][0.0126608,-0.71334,-0.700704][0.353281,0.593647,0][3.44407,1.20118,-0.605626][-0.86168,-0.435844,0.259898][0.333668,0.8014,0][3.00327,1.54321,-1.12481][-2.12368,-0.671841,0.649243][0.323178,0.81111,0][3.08028,0.919101,-1.51875][-2.23314,-0.497773,0.352073][0.313666,0.798246,0][3.03007,1.42866,-2.32033][-2.04576,-0.252091,-0.0321276][0.0937682,0.369555,0][3.08028,0.919101,-1.51875][-2.23314,-0.497773,0.352073][0.104788,0.386851,0][3.00327,1.54321,-1.12481][-2.12368,-0.671841,0.649243][0.0912345,0.395351,0][1.96562,-3.99502,-1.68145][0.433894,-0.832352,-0.344857][0.274002,0.353205,0][1.50996,-4.28428,-1.09342][0.246646,-0.967179,-0.0610709][0.29024,0.349636,0][1.17675,-4.27752,-1.2934][-0.0822306,-0.957543,-0.276313][0.293237,0.357351,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.0894,-4.31196,-1.0222][-0.276178,-0.959161,-0.0611195][0.335201,0.382014,0][-0.750014,-4.30983,-1.23544][0.0686136,-0.960862,-0.268397][0.326666,0.381288,0][-1.49551,0.236594,-2.77638][0.683375,-0.0283528,0.980157][0.178477,0.661418,0][-2.09209,0.411748,-2.35537][0.55078,0.627368,-0.00558207][0.165825,0.665882,0][-2.09818,-0.78767,-2.38582][0.607961,0.134504,0.782491][0.164306,0.640046,0][-2.09209,0.411748,-2.35537][0.55078,0.627368,-0.00558207][0.428382,0.0599132,0][-1.49551,0.236594,-2.77638][0.683375,-0.0283528,0.980157][0.444556,0.0608711,0][-2.10725,0.417669,-3.18555][0.981955,1.74344,-0.00549473][0.437231,0.0754924,0][-2.02535,1.42857,3.9796][-0.455426,0.421972,0.783917][0.523893,0.376962,0][-2.16771,0.634531,4.22029][-0.498006,0.229999,0.836116][0.506694,0.37964,0][-1.49969,0.659321,4.73083][-0.437003,0.233095,0.868732][0.507559,0.365242,0][-2.38206,2.96719,2.42079][-0.600964,0.745669,0.287784][0.440066,0.147169,0][-2.8584,2.33297,2.79256][-0.696709,0.60886,0.379324][0.425788,0.143272,0][-2.4073,2.28685,3.30791][-0.424582,0.601063,0.677092][0.431422,0.129827,0][1.40427,-1.58283,-2.79453][0.22149,-1.42568,0.00393598][0.705151,0.0401728,0][0.560125,-1.72825,-2.9084][0.41034,-2.38579,-0.0286775][0.723708,0.0383562,0][0.642199,-1.70389,-3.76011][0.443414,-2.71821,-0.0160606][0.726107,0.0566688,0][-0.248266,-2.31187,-2.85213][-0.353244,-1.53993,-0.0523712][0.615995,0.0747497,0][-1.05505,-2.11064,-3.32747][-0.341627,-1.48973,-0.0508353][0.629397,0.0904809,0][-0.291526,-2.27687,-3.60482][-0.290085,-1.26226,-0.0420157][0.611506,0.0904043,0][-3.42923,1.54574,-1.43168][-0.729422,0.40159,-0.553777][0.367392,0.547278,0][-3.67534,0.71866,-1.59126][-0.78656,0.246312,-0.566263][0.350697,0.550721,0][-4.03293,0.709426,-0.828614][-0.944858,0.239131,-0.223742][0.351801,0.534265,0][-2.54689,0.832546,-1.78661][2.76184,0.064189,0.664701][0.103186,0.287842,0][-2.68988,0.996823,-2.46917][1.36861,-0.00977817,-0.28906][0.0969177,0.273924,0][-2.6414,1.50703,-2.2569][1.76824,0.139234,-0.155654][0.108069,0.27067,0][0.204731,3.50982,0.514692][0.011764,-0.999926,0.00307499][0.209882,0.908316,0][-0.378175,3.43614,0.928694][0.16819,-0.976856,-0.132154][0.216229,0.922456,0][-0.507111,3.43526,0.410756][0.19976,-0.978752,0.0462558][0.204734,0.923014,0][0.206244,3.4388,1.23312][0.0101347,-0.978192,-0.207455][0.225055,0.911502,0][0.859001,3.44698,0.828179][-0.171269,-0.980183,-0.0995447][0.219138,0.896175,0][0.965479,3.24116,1.72099][-0.174533,-0.927163,-0.331521][0.238337,0.89837,0][1.00023,-3.36245,-1.43206][-0.0262323,2.10866,-0.0364691][0.645693,0.13261,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.621193,0.133026,0][0.960296,-2.72032,-2.21745][2.43407,0.146248,-0.00339208][0.628747,0.118808,0][0.96021,-2.73559,-3.12381][0.876416,0.0525242,-0.000967892][0.60919,0.119132,0][0.960296,-2.72032,-2.21745][2.43407,0.146248,-0.00339208][0.628747,0.118808,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.621193,0.133026,0][3.28124,2.87351,1.37363][0.65869,0.69853,0.279613][0.435065,0.460525,0][3.83113,2.19402,1.47514][0.778631,0.557459,0.288052][0.451509,0.462786,0][3.93159,2.15761,0.77274][0.82262,0.561343,-0.0904996][0.44858,0.4777,0][2.56444,3.29639,0.285115][0.542365,0.83402,-0.101245][0.41764,0.480085,0][3.21359,2.72855,0.185956][0.714051,0.689825,-0.119468][0.430991,0.485985,0][3.17935,2.84737,-0.410328][0.710091,0.698554,-0.0882764][0.425016,0.497684,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-1.28682,3.61432,1.24405][-0.15901,0.982817,0.0937342][0.472177,0.163644,0][-1.18442,3.75366,1.55033][-0.241286,0.96696,-0.0822831][0.472744,0.156533,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-0.1241,3.74176,2.22428][0.167998,0.967631,0.188329][0.489819,0.135881,0][0.199544,3.60248,2.19534][0.000663,0.978903,0.204325][0.496088,0.134553,0][0.175268,-1.87825,4.76669][-0.0101687,-0.319014,0.947695][0.453649,0.327855,0][0.179378,-1.06456,4.96103][-0.00806924,-0.138033,0.990395][0.471203,0.328169,0][-0.678955,-1.08898,5.0408][-0.0900977,-0.14335,0.985562][0.470252,0.346673,0][0.176537,-0.226114,4.99901][-0.00570034,0.0487583,0.998794][0.489289,0.328645,0][0.161693,0.606734,4.87659][-0.00517929,0.235814,0.971784][0.507247,0.329377,0][-0.68113,0.645088,4.96101][-0.0794947,0.236255,0.968434][0.507657,0.347578,0][0.168648,-3.31485,3.9437][0.00765018,-0.643206,0.765655][0.422656,0.327287,0][0.171194,-2.63759,4.42443][-0.00571564,-0.490364,0.871499][0.437266,0.327567,0][-0.580851,-2.733,4.4917][-0.0553055,-0.489242,0.870393][0.434836,0.343743,0][-1.63652,-3.29831,3.41567][-0.437814,-0.641059,0.630367][0.0973767,0.203155,0][-1.30708,-3.87313,2.91744][-0.33752,-0.821541,0.459511][0.0850651,0.19018,0][-0.882024,-4.02694,3.25931][-0.348474,-0.827304,0.440607][0.0928268,0.18073,0][0.535956,2.28938,-3.14861][0.223804,0.574524,-0.787295][0.0915105,0.496825,0][0.461226,2.94823,-2.58655][0.224428,0.714279,-0.6629][0.0934379,0.515481,0][1.02552,2.81962,-2.34517][0.2203,0.70182,-0.677434][0.0800029,0.517088,0][-0.195357,1.57409,-3.58047][-0.186344,0.391843,-0.900963][0.326891,0.141566,0][-0.174677,2.31657,-3.15577][-0.180753,0.573948,-0.798694][0.328225,0.125594,0][0.535956,2.28938,-3.14861][0.223804,0.574524,-0.787295][0.343502,0.12703,0][4.04725,-2.76624,1.49104][0.800019,-0.496722,0.336508][0.27678,0.269216,0][3.54282,-3.46493,1.38588][0.669831,-0.664784,0.33074][0.285953,0.27907,0][3.6373,-3.49639,0.73701][0.734101,-0.674794,-0.0758161][0.275953,0.289051,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][2.26442,-4.31269,0.639033][0.190132,-0.968009,-0.163732][0.300244,0.310247,0][2.20215,-4.3051,1.03471][0.134311,-0.963935,0.22976][0.306454,0.304247,0][-4.18486,-0.163511,-0.0243253][-0.988995,0.0506223,-0.139016][0.333788,0.516911,0][-4.14703,-1.00095,-0.0238417][-0.980255,-0.138737,-0.140901][0.31584,0.5169,0][-4.35128,-1.03423,0.808379][-0.988647,-0.14299,-0.046154][0.315875,0.498943,0][-2.80571,2.96131,-0.438946][-0.686669,0.720547,-0.0964196][0.450062,0.208726,0][-3.34718,2.30114,-0.580576][-0.807244,0.570668,-0.150646][0.437713,0.215837,0][-3.36973,2.21232,0.133912][-0.81524,0.568639,-0.109701][0.432299,0.201379,0][2.47462,0.698566,4.19304][0.542575,0.232493,0.807192][0.510373,0.279529,0][2.54992,-0.126848,4.27998][0.566532,0.0444978,0.822837][0.492604,0.277496,0][3.32562,-0.121064,3.84497][0.636569,0.0400068,0.770181][0.493113,0.260766,0][3.84164,1.40827,2.22838][0.840937,0.392694,0.372313][0.471975,0.451568,0][4.08735,0.615685,2.31492][0.889166,0.216173,0.403302][0.489584,0.454484,0][4.52194,0.61098,1.58081][0.921612,0.221322,0.318821][0.486996,0.470202,0][3.8012,1.45136,-1.52738][0.747895,0.434417,-0.501932][0.449416,0.529411,0][4.04945,0.640775,-1.69642][0.796514,0.253055,-0.549116][0.465937,0.537748,0][3.09708,0.92863,-2.52952][0.451961,0.229621,-0.437329][0.451918,0.552531,0][3.08028,0.919101,-1.51875][-2.23314,-0.497773,0.352073][0.104788,0.386851,0][3.03007,1.42866,-2.32033][-2.04576,-0.252091,-0.0321276][0.0937682,0.369555,0][3.09708,0.92863,-2.52952][0.451961,0.229621,-0.437329][0.104647,0.365041,0][3.29143,-1.58804,-1.30986][-0.784718,0.379729,0.489922][0.314021,0.743968,0][3.56644,-1.61861,-0.700205][-0.863719,0.38356,0.326911][0.327011,0.741316,0][3.72913,-0.921031,-0.767367][-0.933124,0.143902,0.329502][0.326656,0.75563,0][3.46264,-2.26663,0.647965][-0.846229,0.5245,-0.0937852][0.096772,0.813147,0][2.85925,-2.19422,2.41601][-0.705737,0.512532,-0.489129][0.0564519,0.814428,0][3.44921,-1.55979,1.96483][-0.849938,0.363944,-0.380985][0.0686983,0.797274,0][-3.07455,-2.13914,0.106199][0.851621,0.511393,0.114973][0.326031,0.914759,0][-2.66298,-2.14718,-1.07076][0.751173,0.51215,0.416463][0.321486,0.889718,0][-3.20696,-1.4884,-0.598524][0.888413,0.337191,0.311486][0.338531,0.898023,0][-1.80798,-3.15113,-0.843118][2.64493,2.87025,0.996407][0.156646,0.764844,0][-2.03563,-3.24585,-0.195025][0.603677,0.771501,0.200899][0.16414,0.751949,0][-1.31905,-3.65936,-0.293752][0.408347,0.88702,0.215519][0.171232,0.763904,0][0.254266,-2.77128,-2.26251][-2.42751,-0.154908,0.0133374][0.660787,0.0324822,0][0.249599,-2.75547,-3.28065][-0.9396,-0.0580783,0.00340585][0.638818,0.0328354,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.647691,0.0203074,0][0.96021,-2.73559,-3.12381][0.876416,0.0525242,-0.000967892][0.23999,0.107157,0][0.993508,-3.30741,-2.67042][0.336426,-0.826164,-1.06669][0.240023,0.119517,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.224768,0.119332,0][0.806938,0.780468,-3.01797][1.10892,-0.0617761,-0.0309991][0.165723,0.208489,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.14468,0.198863,0][0.785706,0.775299,-3.76721][1.15964,-0.0646017,-0.032417][0.163225,0.192516,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.361563,0.177712,0][1.47741,-1.04911,-3.60215][0.255411,-0.128559,-0.958247][0.35979,0.200082,0][0.93798,-0.468988,-3.82231][0.478129,0.000252229,-1.17083][0.348863,0.186938,0][2.66183,2.41752,-0.296985][-0.703195,-0.680491,0.206031][0.342505,0.829522,0][2.15796,2.45631,-1.15655][-0.561349,-0.710182,0.424886][0.324216,0.833592,0][2.85973,1.86547,-1.00414][-0.731269,-0.531724,0.427219][0.326338,0.818265,0][1.06212,1.92463,-2.42191][-0.247661,-0.571548,0.782302][0.0796983,0.675094,0][1.64202,1.78421,-2.26318][-0.252313,-2.71606,1.25731][0.0919029,0.669753,0][1.7968,2.47581,-1.50261][-0.408672,-0.716942,0.564784][0.104384,0.688392,0][3.56644,-1.61861,-0.700205][-0.863719,0.38356,0.326911][0.124167,0.803375,0][3.29143,-1.58804,-1.30986][-0.784718,0.379729,0.489922][0.134799,0.807377,0][2.69633,-2.36163,-1.40872][-3.01648,1.68249,0.601469][0.133987,0.828436,0][2.34385,-1.80534,-3.24544][-0.799068,-0.526853,-0.00359727][0.742773,0.0772712,0][2.64187,-2.26857,-1.6003][-0.727847,-0.476033,-0.00218925][0.707919,0.0644305,0][2.32753,-1.77382,-2.23113][-1.99434,-1.25815,0.0070108][0.725817,0.0634138,0][0.806938,0.780468,-3.01797][1.10892,-0.0617761,-0.0309991][0.165723,0.208489,0][1.49505,0.0329956,-2.97652][1.16828,1.07221,-0.0592884][0.147674,0.21218,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.14468,0.198863,0][0.419449,0.824439,-3.8234][-0.328992,-1.41758,-0.0975165][0.0501322,0.35368,0][0.930866,-0.47532,-3.13645][-0.182819,1.5385,0.0123073][0.02,0.338845,0][0.406652,0.776108,-3.07764][-0.420602,-1.59046,-0.0709133][0.0492758,0.337575,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][0.740658,-3.9188,1.45363][-0.18429,0.958614,-0.217017][0.227587,0.773006,0][1.23687,-3.91301,0.586218][-0.268365,0.963004,-0.0245837][0.219867,0.793069,0][-0.70643,-3.92635,1.20403][0.215761,0.962682,-0.163371][0.203841,0.752658,0][-0.884603,-3.92758,0.4321][0.285523,0.957267,0.0460048][0.188574,0.760322,0][-1.51969,-3.64757,0.98444][0.481217,0.87208,-0.0889189][0.18983,0.743105,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][1.42902,3.62391,-0.486002][0.155931,0.979269,-0.129295][0.53854,0.181808,0][1.23629,3.76992,-0.759967][0.267675,0.963372,0.0162606][0.536921,0.18852,0][1.98177,3.3293,-0.955269][0.413692,0.844863,-0.339212][0.0553731,0.545724,0][2.47903,2.78838,-1.38771][0.544221,0.698038,-0.465367][0.0450828,0.530901,0][2.12552,2.9159,-1.88309][0.559864,0.690978,-0.457276][0.0560708,0.525573,0][0.801441,1.27617,3.93194][-0.107939,-0.431471,-0.895646][0.366295,0.618959,0][1.43394,1.29823,3.75269][-0.323074,-0.418218,-0.848951][0.379949,0.618706,0][1.52408,0.621329,3.97483][-0.354456,-0.239155,-0.903972][0.381656,0.633341,0][-0.554005,-0.145485,4.26249][0.188599,-0.0451371,-0.981016][0.336553,0.649155,0][-1.24617,-0.135976,4.06348][0.361269,-0.0425498,-0.93149][0.321623,0.648706,0][-1.21543,0.577814,3.96819][0.360536,-0.245999,-0.899721][0.322537,0.633318,0][-3.00362,-2.11972,1.34785][0.830099,0.494218,-0.258234][0.329231,0.941359,0][-2.09039,-2.16718,2.93798][0.650628,0.507466,-0.564944][0.328828,0.97594,0][-1.80096,-2.76189,2.63424][0.554734,0.642667,-0.52844][0.31447,0.970987,0][-2.88007,-0.755652,2.75482][0.812817,0.146874,-0.563699][0.36106,0.968274,0][-3.22785,-0.743402,2.1369][0.900485,0.163009,-0.40318][0.36106,0.954853,0][-3.26115,-0.0222704,2.16016][0.912018,-0.0417297,-0.408023][0.376475,0.953595,0][0.825441,-3.41627,4.00231][0.0472193,-0.655335,0.753861][0.366006,0.269144,0][0.709982,-4.01676,3.38111][-0.0106999,-0.831539,0.555363][0.361564,0.282615,0][1.22648,-4.00443,3.20755][0.37749,-0.819887,0.430448][0.350523,0.2789,0][2.56231,-3.39719,3.06361][0.422183,-0.650342,0.631519][0.422064,0.275611,0][2.91173,-2.67045,3.43102][0.520666,-0.48129,0.705171][0.437914,0.268433,0][2.23727,-2.57166,3.79839][0.488518,-0.482612,0.726936][0.439711,0.283031,0][-1.7977,2.46996,-1.17795][0.516645,-0.717392,0.467362][0.165167,0.94685,0][-0.559164,2.4737,-1.98854][0.226091,-0.725995,0.649473][0.153038,0.917637,0][-1.09023,2.89764,-1.09105][0.341996,-0.828226,0.443938][0.170182,0.930912,0][-0.456672,1.58106,-2.68909][-0.17271,-0.631496,0.0169859][0.0655061,0.100449,0][-1.2565,1.811,-2.27281][-0.429929,-1.57199,0.0422832][0.0838134,0.103121,0][-1.62267,1.89368,-2.92234][-0.421623,-2.5359,-0.0697341][0.0812629,0.118804,0][-0.428708,1.62697,-3.44352][-1.8941,-0.148376,-0.0835104][0.0705003,0.187237,0][-0.350159,0.833803,-3.76938][-1.01668,0.92527,-0.0400111][0.0519703,0.186622,0][-0.384063,0.820988,-3.0241][-1.21832,1.12158,-0.0361383][0.0584225,0.171892,0][-0.106439,0.942394,-3.7639][-0.412202,-1.62635,-0.0858896][0.328051,0.155281,0][-0.195357,1.57409,-3.58047][-0.186344,0.391843,-0.900963][0.326891,0.141566,0][0.598203,1.53697,-3.57598][0.226671,0.397234,-0.889284][0.343943,0.143315,0][-2.18104,2.49341,1.63626][0.605637,-0.740255,-0.291935][0.223228,0.966378,0][-2.41546,2.49836,0.683478][0.680787,-0.73177,-0.0322746][0.202099,0.967324,0][-1.78897,2.92285,1.01311][0.474429,-0.870274,-0.132439][0.211923,0.954089,0][-3.49332,0.656963,0.7745][0.957683,-0.286723,-0.0251743][0.388267,0.922151,0][-3.46315,0.646924,0.0748179][0.95039,-0.288661,0.115908][0.38623,0.907188,0][-3.07582,1.32783,-0.522489][0.860825,-0.433468,0.266619][0.397752,0.892897,0][-2.14583,-3.97598,2.25792][-0.55717,-0.809882,0.18345][0.395028,0.338638,0][-1.55418,-4.29641,1.84231][-0.28888,-0.95701,-0.0260679][0.380511,0.338841,0][-1.28956,-4.30386,2.14969][-0.0340184,-0.961283,0.273456][0.380082,0.33017,0][-3.79029,-2.64973,0.798397][-0.865203,-0.498238,-0.0564101][0.279475,0.499159,0][-3.29111,-3.35027,0.778714][-0.758234,-0.646823,-0.0818598][0.262759,0.499583,0][-3.19793,-3.33611,1.43157][-0.701895,-0.63765,0.317405][0.262721,0.485496,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-1.49616,3.75864,0.646457][-0.148468,0.966071,-0.211339][0.472321,0.177122,0][-1.44938,3.75878,0.966917][-0.0723592,0.970154,0.231443][0.471185,0.170229,0][-2.16391,3.35427,0.231038][-0.490924,0.869468,-0.0549456][0.460081,0.190395,0][-2.82172,2.84906,0.168625][-0.692426,0.716163,-0.0875027][0.445395,0.196452,0][-2.96073,2.97538,0.752638][-0.683371,0.720775,-0.116134][0.439214,0.18519,0][-0.370139,-0.100523,-3.87867][1.98679,-0.434652,0.0564347][0.321121,0.177434,0][-1.02285,0.0898155,-3.61537][-1.2826,1.14497,-0.0710672][0.307287,0.172553,0][-0.350159,0.833803,-3.76938][-1.01668,0.92527,-0.0400111][0.32267,0.157329,0][-1.02285,0.0898155,-3.61537][-1.2826,1.14497,-0.0710672][0.307287,0.172553,0][-0.466777,-0.46098,-3.82047][-1.19207,-0.230949,-3.20323][0.318608,0.185084,0][-1.8373,-1.01309,-3.4404][-0.375856,-0.136048,-0.916637][0.288421,0.195339,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.1849,0.520811,0][-2.68988,0.996823,-2.46917][1.36861,-0.00977817,-0.28906][0.184356,0.500049,0][-3.67534,0.71866,-1.59126][-0.78656,0.246312,-0.566263][0.212584,0.502036,0][-2.60057,-0.149514,-2.98327][-0.686569,0.0528615,-0.725141][0.180656,0.474278,0][-2.56982,-1.01975,-2.95775][-0.686049,-0.136793,-0.71458][0.182746,0.459661,0][-3.08584,-0.979226,-2.24755][-0.736417,-0.135198,-0.662881][0.199541,0.466992,0][1.52408,0.621329,3.97483][-0.354456,-0.239155,-0.903972][0.381656,0.633341,0][2.15011,0.630646,3.64999][-0.532002,-0.233158,-0.814009][0.395165,0.63336,0][2.21013,-0.0797337,3.72923][-0.554138,-0.0455336,-0.831179][0.396211,0.648707,0][2.55058,1.29331,3.03918][-0.64835,-0.416328,-0.637427][0.412482,0.800579,0][3.32556,1.25848,1.95807][-0.829496,-0.398842,-0.390976][0.38895,0.798813,0][3.1791,0.590356,2.65378][-0.79561,-0.234967,-0.558386][0.402871,0.784028,0][2.65747,1.79374,-2.55097][0.303706,0.236699,-0.155802][0.0429702,0.498116,0][2.12552,2.9159,-1.88309][0.559864,0.690978,-0.457276][0.0560708,0.525573,0][2.47903,2.78838,-1.38771][0.544221,0.698038,-0.465367][0.0450828,0.530901,0][2.56257,1.79565,-1.51661][-0.988608,-1.34602,0.598864][0.2168,0.284466,0][2.65747,1.79374,-2.55097][0.303706,0.236699,-0.155802][0.20416,0.265962,0][2.89875,1.71422,-2.02303][-0.694191,-2.46917,-0.0638092][0.215141,0.271674,0][3.06675,-0.215898,-3.05888][0.685243,0.0851221,-0.723323][0.395028,0.184033,0][3.04616,-1.08875,-3.03626][0.67629,-0.142624,-0.722696][0.39354,0.202813,0][2.32581,-1.10987,-3.46431][0.333904,-0.154059,-0.929932][0.377995,0.202406,0][2.34385,-1.80534,-3.24544][-0.799068,-0.526853,-0.00359727][0.742773,0.0772712,0][2.72584,-2.37706,-2.72442][-1.73755,-1.1758,-0.0163178][0.725616,0.0812225,0][2.64187,-2.26857,-1.6003][-0.727847,-0.476033,-0.00218925][0.707919,0.0644305,0][-3.36973,2.21232,0.133912][-0.81524,0.568639,-0.109701][0.381352,0.513496,0][-3.78921,1.47518,0.0839259][-0.903586,0.410033,-0.12412][0.367201,0.514575,0][-3.97754,1.54337,0.853113][-0.908841,0.411532,-0.0681944][0.369336,0.497978,0][-4.26728,-0.131205,1.68077][-0.946835,0.0397163,0.319258][0.334775,0.480119,0][-4.14642,0.737681,1.67722][-0.924245,0.224724,0.308658][0.352815,0.480196,0][-4.26641,0.705189,0.833051][-0.970234,0.235025,-0.0583957][0.352561,0.498411,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.832961,3.75148,2.14828][0.228235,0.971365,0.0660189][0.509755,0.131296,0][1.08932,3.61511,1.95704][0.547695,5.82811,0.925456][0.515725,0.133735,0][0.857409,2.24979,4.24886][0.00411687,0.57663,0.816995][0.543035,0.315183,0][0.776539,2.91056,3.6821][-0.0398005,0.717402,0.695522][0.557249,0.317254,0][0.175522,2.7799,3.61073][-0.0104632,0.711319,0.702791][0.554133,0.330154,0][2.22208,3.47022,2.05539][0.49495,0.853928,0.160726][0.537553,0.124606,0][1.59349,3.77417,1.5831][0.231098,0.969121,-0.0860089][0.528934,0.138021,0][1.37894,3.76031,1.81937][-0.0774477,0.956712,0.280542][0.522997,0.134551,0][1.82885,3.61471,0.370655][0.21468,0.975658,-0.0447644][0.541042,0.16163,0][2.56444,3.29639,0.285115][0.542365,0.83402,-0.101245][0.555411,0.159021,0][2.5372,3.43103,-0.183896][0.546801,0.837262,0.000575204][0.558377,0.168697,0][-0.373056,-2.79647,3.36787][0.211134,0.630418,-0.746991][0.122633,0.633035,0][-1.80096,-2.76189,2.63424][0.554734,0.642667,-0.52844][0.0879863,0.633083,0][-1.60393,-2.19513,3.30987][0.408159,0.511229,-0.756341][0.098141,0.616439,0][0.814502,-3.65529,2.16774][-0.209966,0.883874,-0.417948][0.241087,0.765159,0][-0.477227,-3.66421,2.18926][0.167401,0.885306,-0.433832][0.223954,0.743637,0][0.170102,-3.28236,2.90927][0.000401124,0.799937,-0.600083][0.245582,0.745454,0][4.64246,-0.250313,1.57108][0.944528,0.0417294,0.32577][0.505023,0.475388,0][4.60402,-1.12255,1.55964][0.93369,-0.133801,0.332144][0.522706,0.480519,0][4.72354,-1.17294,0.706007][0.987783,-0.145985,-0.0545306][0.519264,0.498676,0][4.64326,0.561965,0.741793][0.971123,0.23107,-0.0593929][0.483616,0.488049,0][4.36195,1.38917,0.759107][0.911346,0.405162,-0.0727422][0.465768,0.482742,0][4.24822,1.43333,1.54378][0.865694,0.398415,0.303051][0.468962,0.46606,0][-1.7977,2.46996,-1.17795][0.516645,-0.717392,0.467362][0.165167,0.94685,0][-2.28439,2.4874,-0.303052][0.661034,-0.711713,0.237695][0.18173,0.960557,0][-2.49068,1.83236,-1.07872][0.0258396,-0.726455,-0.00394824][0.164008,0.964003,0][-2.80659,1.97132,1.32072][0.780963,-0.597983,-0.180314][0.213638,0.98,0][-2.86635,1.9564,0.155313][0.832273,-0.543524,0.109097][0.188702,0.976493,0][-2.41546,2.49836,0.683478][0.680787,-0.73177,-0.0322746][0.202099,0.967324,0][-3.06345,-2.61598,2.92032][-0.782504,-0.486244,0.388914][0.277548,0.453373,0][-2.65439,-3.3448,2.62626][-0.707393,-0.631786,0.316926][0.260559,0.459718,0][-2.22428,-3.38493,3.12353][-0.446887,-0.646054,0.618795][0.25814,0.448988,0][-2.96685,-1.0263,3.90326][-0.610675,-0.151054,0.77734][0.311006,0.432164,0][-3.00119,-0.155528,3.94217][-0.610908,0.0333892,0.790997][0.329651,0.431324,0][-3.56647,-0.0970874,3.28102][-0.872093,0.0389061,0.487791][0.332951,0.44559,0][1.95381,-0.862782,-2.79005][-0.44962,0.121652,0.884897][0.251525,0.63374,0][1.29743,-0.839366,-3.04752][-0.280574,0.132973,0.950577][0.237409,0.635004,0][1.40427,-1.58283,-2.79453][0.22149,-1.42568,0.00393598][0.238851,0.618861,0][2.34385,-1.80534,-3.24544][-0.799068,-0.526853,-0.00359727][0.688697,0.0540129,0][2.32753,-1.77382,-2.23113][-1.99434,-1.25815,0.0070108][0.683939,0.0326489,0][1.84086,-1.67744,-2.58338][-0.574905,-2.5798,0.0615733][0.695407,0.0377725,0][3.8693,0.502402,0.669655][-0.96081,-0.276557,-0.0190098][0.359849,0.782934,0][3.83279,0.494151,-0.0293971][-0.952072,-0.280608,0.121727][0.344807,0.784046,0][3.9328,-0.223113,-0.0737488][-0.988074,-0.0479523,0.146326][0.342658,0.768546,0][2.70547,1.90716,2.33444][-0.669778,-0.553362,-0.495165][0.398275,0.814198,0][3.00337,1.8922,1.82207][-0.770083,-0.558477,-0.308344][0.387145,0.813645,0][3.32556,1.25848,1.95807][-0.829496,-0.398842,-0.390976][0.38895,0.798813,0][0.810369,-0.152942,-3.88974][0.476304,0.1788,-1.25868][0.346492,0.179976,0][0.785706,0.775299,-3.76721][1.15964,-0.0646017,-0.032417][0.347071,0.159949,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.361563,0.177712,0][0.419449,0.824439,-3.8234][-0.328992,-1.41758,-0.0975165][0.0501322,0.35368,0][0.810369,-0.152942,-3.88974][0.476304,0.1788,-1.25868][0.0274209,0.355096,0][0.930866,-0.47532,-3.13645][-0.182819,1.5385,0.0123073][0.02,0.338845,0][2.17763,-4.17347,0.252644][0.217626,-0.975962,-0.0117393][0.296251,0.317687,0][2.88013,-3.91809,0.16277][0.525213,-0.849575,-0.0487331][0.282458,0.309601,0][3.00043,-4.05834,0.690829][0.50981,-0.852837,-0.11297][0.287742,0.299301,0][2.6586,-4.04188,-0.873202][0.353312,-0.834963,-0.421908][0.273001,0.330503,0][3.20029,-3.46386,-1.17667][0.565709,-0.653693,-0.502651][0.258198,0.327443,0][3.46354,-3.49239,-0.569407][0.740056,-0.660409,-0.127185][0.261779,0.313693,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][0.014432,-4.29238,-1.46845][-0.187044,-0.961522,-0.201224][0.31064,0.375383,0][0.414187,-4.28387,-1.48172][0.202435,-0.960992,-0.188454][0.303683,0.370434,0][0.414187,-4.28387,-1.48172][0.202435,-0.960992,-0.188454][0.303683,0.370434,0][0.473982,-3.97981,-2.21814][0.186512,-0.819565,-0.54178][0.292153,0.381623,0][0.977662,-3.84141,-2.03254][0.137193,-0.829905,-0.540774][0.285666,0.371635,0][0.691364,-3.63482,-1.10859][-0.141801,0.88385,0.44576][0.184911,0.808152,0][1.71445e-005,-3.38313,-1.5642][-0.0627875,3.73129,0.961664][0.168555,0.803763,0][0.0918773,-3.91902,-0.488193][0.0266728,0.954268,0.297761][0.186476,0.789002,0][0.295969,-3.35103,-1.60632][-0.712714,-0.046139,0.00453053][0.171931,0.809289,0][1.00023,-3.36245,-1.43206][-0.0262323,2.10866,-0.0364691][0.184332,0.818425,0][0.960296,-2.72032,-2.21745][2.43407,0.146248,-0.00339208][0.172199,0.83035,0][-0.68113,0.645088,4.96101][-0.0794947,0.236255,0.968434][0.507657,0.347578,0][-0.646217,1.46777,4.67478][-0.0648497,0.419346,0.905507][0.525421,0.347231,0][-1.40867,1.48009,4.4588][-0.421478,0.422198,0.802561][0.52531,0.363685,0][-0.557526,2.22432,4.23551][-0.0407399,0.581031,0.812861][0.541785,0.345693,0][-0.422068,2.89058,3.66571][-0.00211382,0.71614,0.697953][0.556225,0.3431,0][-0.996556,2.89668,3.49901][-0.368292,0.72521,0.581749][0.556072,0.355496,0][-1.85938,-0.143039,-3.47366][-0.372931,0.0623176,-0.925764][0.288986,0.176568,0][-1.8373,-1.01309,-3.4404][-0.375856,-0.136048,-0.916637][0.288421,0.195339,0][-2.56982,-1.01975,-2.95775][-0.686049,-0.136793,-0.71458][0.272631,0.194606,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.617469,0.158045,0][-1.76025,-1.83993,-3.26482][1.28219,-2.20229,0.202326][0.599125,0.139778,0][-1.93961,-1.91437,-2.05969][1.32067,-1.21719,0.121371][0.625275,0.139771,0][1.71445e-005,-3.38313,-1.5642][-0.0627875,3.73129,0.961664][0.168555,0.803763,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][0.0918773,-3.91902,-0.488193][0.0266728,0.954268,0.297761][0.186476,0.789002,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][0.0918773,-3.91902,-0.488193][0.0266728,0.954268,0.297761][0.186476,0.789002,0][-0.472522,-3.92835,-0.256418][0.177471,0.960941,0.21236][0.18268,0.776531,0][0.156778,1.88733,3.62169][0.0298038,-0.549037,-0.835266][0.352602,0.605547,0][-0.984978,1.88864,3.40102][0.257523,-0.583838,-0.769945][0.327969,0.605118,0][-0.788621,2.44064,2.95297][0.238729,-0.724246,-0.646897][0.332399,0.593278,0][-1.46794,2.91275,1.71473][0.417673,-0.855521,-0.305995][0.228081,0.950318,0][-0.910031,2.89919,2.24389][0.256284,-0.858496,-0.444188][0.241548,0.940902,0][-1.61224,2.46406,2.42678][0.450556,-0.733493,-0.508907][0.242263,0.95787,0][0.977662,-3.84141,-2.03254][0.137193,-0.829905,-0.540774][0.285666,0.371635,0][0.473982,-3.97981,-2.21814][0.186512,-0.819565,-0.54178][0.292153,0.381623,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.276964,0.379515,0][1.58309,-3.37673,-2.54142][-0.0148795,1.78642,-0.0347421][0.672726,0.11122,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.685138,0.112096,0][1.86384,-3.3428,-0.917229][-0.34569,5.17696,0.624401][0.662623,0.145327,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-0.603515,3.74584,-0.963077][0.117025,0.966269,-0.229412][0.500851,0.204524,0][-0.871845,3.74308,-0.784192][-0.248987,0.968299,0.020043][0.494236,0.202568,0][-1.28687,2.94712,-2.25249][-0.213628,0.714272,-0.666467][0.492612,0.23631,0][-0.972939,3.46368,-1.64847][-0.0748411,0.866051,-0.494322][0.49684,0.221304,0][-0.508997,3.33345,-1.7387][-0.173712,0.864519,-0.471625][0.506383,0.220327,0][1.59595,3.24462,0.355543][-0.377019,-0.92272,0.0802779][0.211984,0.879563,0][1.05631,3.25278,-0.569244][-0.250275,-0.928686,0.273688][0.190209,0.886985,0][1.73059,2.91576,-0.784132][-0.446736,-0.835755,0.319282][0.188165,0.873226,0][0.204731,3.50982,0.514692][0.011764,-0.999926,0.00307499][0.209882,0.908316,0][0.859001,3.44698,0.828179][-0.171269,-0.980183,-0.0995447][0.219138,0.896175,0][0.206244,3.4388,1.23312][0.0101347,-0.978192,-0.207455][0.225055,0.911502,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][0.167832,-4.17773,2.64077][0.00791325,-0.970825,0.239657][0.361505,0.302664,0][-0.229198,-4.31934,2.69343][0.145581,-0.961185,0.234369][0.369316,0.307196,0][-0.229198,-4.31934,2.69343][0.145581,-0.961185,0.234369][0.369316,0.307196,0][-0.363655,-4.03182,3.40935][0.0637306,-0.826655,0.559089][0.380129,0.296016,0][-0.882024,-4.02694,3.25931][-0.348474,-0.827304,0.440607][0.386916,0.305267,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.93574,-4.28385,0.713688][-0.230956,-0.958925,-0.16469][0.372152,0.363096,0][-1.82995,-4.14999,0.328579][-0.261161,-0.964273,-0.0444044][0.364935,0.368041,0][-1.68208,-4.15279,1.46065][-0.252856,-0.963234,0.0907978][0.377262,0.346721,0][-2.31976,-3.82385,1.74662][-0.549131,-0.805039,0.224429][0.390836,0.349317,0][-2.59441,-3.9551,1.27612][-0.510404,-0.812213,0.282485][0.3897,0.361221,0][-3.29111,-3.35027,0.778714][-0.758234,-0.646823,-0.0818598][0.262759,0.499583,0][-3.79029,-2.64973,0.798397][-0.865203,-0.498238,-0.0564101][0.279475,0.499159,0][-3.6123,-2.56376,0.0666937][-0.859378,-0.495449,-0.12649][0.280656,0.514947,0][-4.14929,-0.15671,-0.894337][-0.969037,0.0489349,-0.242019][0.333803,0.535683,0][-4.10954,-1.02724,-0.886387][-0.960195,-0.141901,-0.240603][0.315144,0.535512,0][-4.14703,-1.00095,-0.0238417][-0.980255,-0.138737,-0.140901][0.31584,0.5169,0][3.54282,-3.46493,1.38588][0.669831,-0.664784,0.33074][0.230733,0.059607,0][4.04725,-2.76624,1.49104][0.800019,-0.496722,0.336508][0.236022,0.0775612,0][3.66553,-2.63516,2.13343][0.779162,-0.48794,0.393474][0.220147,0.0814153,0][3.90165,-0.165251,3.1624][0.867897,0.0392079,0.495194][0.509804,0.441089,0][3.87149,-1.03918,3.13069][0.85896,-0.133667,0.494288][0.527435,0.446659,0][4.1615,-1.05383,2.30643][0.894356,-0.131955,0.427452][0.524027,0.464168,0][-2.25448,-3.97795,-0.807595][-0.404322,-0.820071,-0.404979][0.356743,0.392628,0][-1.62579,-4.29998,-0.430933][-0.107191,-0.963158,-0.246652][0.351975,0.378766,0][-1.80283,-4.29184,-0.0712322][-0.278599,-0.954793,0.103693][0.359654,0.374862,0][-1.93826,-3.37035,-2.11395][-0.556551,-0.65357,-0.512931][0.208146,0.178305,0][-1.5413,-3.9954,-1.61003][-0.463672,-0.816969,-0.342885][0.209394,0.159024,0][-1.85669,-3.84898,-1.17271][-0.43527,-0.813977,-0.384682][0.220274,0.159749,0][-0.384063,0.820988,-3.0241][-1.21832,1.12158,-0.0361383][0.0584225,0.171892,0][-0.456672,1.58106,-2.68909][-0.17271,-0.631496,0.0169859][0.0763714,0.172029,0][-0.428708,1.62697,-3.44352][-1.8941,-0.148376,-0.0835104][0.0705003,0.187237,0][1.06212,1.92463,-2.42191][-0.247661,-0.571548,0.782302][0.235537,0.69483,0][-0.101236,1.94785,-2.54439][0.037979,-0.577907,0.815219][0.210498,0.696676,0][-0.125585,1.33401,-2.89632][0.0783222,-0.414184,0.906817][0.209263,0.683479,0][-1.48636,-0.78319,-2.78771][0.468451,0.142575,0.871909][0.177494,0.639435,0][-0.817697,-0.769827,-3.06045][0.260708,0.148547,0.953921][0.191917,0.638949,0][-1.04128,0.108405,-2.98323][-1.13479,1.02581,-0.0510726][0.188115,0.658131,0][-1.04128,0.108405,-2.98323][-1.13479,1.02581,-0.0510726][0.188115,0.658131,0][-0.473817,-0.478471,-3.13957][1.12327,-0.267376,-0.00527127][0.199663,0.644829,0][-0.110019,0.923042,-3.03619][1.24367,-0.319431,-0.0460311][0.209123,0.674606,0][3.10014,-1.54366,2.56902][-0.749941,0.321026,-0.578386][0.0539878,0.799483,0][2.10747,-1.50672,3.55423][-0.564745,0.311802,-0.764096][0.0271869,0.807673,0][2.19641,-0.801022,3.69492][-0.563902,0.14945,-0.812206][0.0238929,0.793468,0][1.23557,-2.76906,3.22395][-0.295844,0.650883,-0.699162][0.266421,0.760066,0][2.1547,-2.76591,2.61494][-0.536795,0.652194,-0.535252][0.268718,0.783518,0][1.79227,-3.25764,2.23357][-0.399718,0.811628,-0.426011][0.256328,0.781422,0][4.43449,0.524566,-0.0830664][0.962318,0.233715,-0.139001][0.478921,0.505217,0][4.55106,-0.306155,-0.137167][0.988715,0.0473355,-0.142133][0.496053,0.51115,0][4.5146,-0.258058,-1.0083][0.972229,0.0543466,-0.227635][0.489944,0.528964,0][3.36779,-1.87193,-2.20868][0.708703,-0.344914,-0.615447][0.173805,0.37347,0][3.52382,-1.04789,-2.35402][0.749314,-0.140576,-0.647122][0.156596,0.368412,0][4.13313,-1.08872,-1.78044][0.803616,-0.145138,-0.577179][0.1629,0.351882,0][-0.508513,-1.56449,4.06046][0.233049,0.399734,-0.88651][0.337036,0.679785,0][-1.76763,-1.54109,3.56666][0.468293,0.353368,-0.809835][0.309879,0.678838,0][-1.22793,-0.856115,4.0283][0.360541,0.166226,-0.917812][0.321764,0.664249,0][-1.86249,-0.8407,3.7149][0.526634,0.150007,-0.836752][0.308079,0.663694,0][-2.4204,-0.801418,3.28779][0.684821,0.149501,-0.713211][0.296056,0.662651,0][-2.44742,-0.0807074,3.31762][0.682912,-0.0419183,-0.729297][0.295726,0.647092,0][-1.12014,-3.43233,3.82736][-0.406031,-0.642828,0.649547][0.107124,0.192398,0][-1.30721,-2.72212,4.27749][-0.42738,-0.48721,0.761559][0.120224,0.204875,0][-1.89971,-2.6157,3.81793][-0.481679,-0.489164,0.727121][0.108942,0.216563,0][-3.00119,-0.155528,3.94217][-0.610908,0.0333892,0.790997][0.489239,0.397229,0][-2.96685,-1.0263,3.90326][-0.610675,-0.151054,0.77734][0.470472,0.396057,0][-2.19437,-1.03607,4.28352][-0.525174,-0.147466,0.83812][0.470643,0.379389,0][0.638794,3.6286,-1.01309][0.030598,0.986881,-0.158526][0.525961,0.197714,0][0.836832,3.35303,-1.72024][0.142994,0.855164,-0.498244][0.533622,0.211295,0][0.393995,3.48701,-1.9108][0.218293,0.859903,-0.461427][0.526347,0.217908,0][1.70239,3.48304,-1.34917][0.45754,0.846627,-0.27181][0.549211,0.197967,0][1.23629,3.76992,-0.759967][0.267675,0.963372,0.0162606][0.536921,0.18852,0][1.42902,3.62391,-0.486002][0.155931,0.979269,-0.129295][0.53854,0.181808,0][1.23687,-3.91301,0.586218][-0.268365,0.963004,-0.0245837][0.219867,0.793069,0][0.740658,-3.9188,1.45363][-0.18429,0.958614,-0.217017][0.227587,0.773006,0][1.74868,-3.646,1.24592][-0.395549,0.89302,-0.214606][0.238393,0.793168,0][1.79227,-3.25764,2.23357][-0.399718,0.811628,-0.426011][0.256328,0.781422,0][1.04236,-3.2689,2.7318][-0.255377,0.790547,-0.556613][0.254456,0.762245,0][1.23557,-2.76906,3.22395][-0.295844,0.650883,-0.699162][0.266421,0.760066,0][3.97042,-0.215487,0.644529][-0.99818,-0.0432251,-0.0420464][0.358113,0.767385,0][3.8693,-0.178949,1.36068][-0.971923,-0.0410872,-0.231684][0.373608,0.767345,0][3.76997,0.537164,1.36569][-0.949763,-0.222856,-0.21974][0.374908,0.782883,0][3.83692,-0.898341,1.34186][-0.961376,0.141128,-0.236305][0.372041,0.752238,0][3.9354,-0.934287,0.632395][-0.988391,0.144977,-0.0454397][0.356692,0.752289,0][3.76441,-1.62733,0.637584][-0.941776,0.332829,-0.047778][0.355723,0.738204,0][0.933889,1.49189,4.68244][0.0414344,0.416417,0.908229][0.526724,0.313158,0][1.00702,0.664798,4.96915][0.0709843,0.237928,0.968685][0.508918,0.311171,0][1.81539,0.712061,4.73316][0.447484,0.242156,0.860883][0.510337,0.293757,0][1.78532,-1.8727,4.61842][0.472744,-0.317372,0.822063][0.454565,0.293126,0][1.86484,-1.02159,4.80364][0.480271,-0.137546,0.866268][0.472964,0.291832,0][1.04049,-1.07111,5.05524][0.0978432,-0.137997,0.985588][0.471488,0.30959,0][-2.67477,1.32563,-1.31492][1.50608,-0.0471571,0.309556][0.394312,0.876081,0][-3.07582,1.32783,-0.522489][0.860825,-0.433468,0.266619][0.397752,0.892897,0][-3.30088,0.645393,-0.606071][0.915149,-0.24502,0.320105][0.38394,0.892663,0][-2.86635,1.9564,0.155313][0.832273,-0.543524,0.109097][0.099447,0.952338,0][-2.49068,1.83236,-1.07872][0.0258396,-0.726455,-0.00394824][0.121795,0.951852,0][-2.28439,2.4874,-0.303052][0.661034,-0.711713,0.237695][0.110223,0.967649,0][1.30694,2.91028,2.27176][-0.266054,-0.843867,-0.465944][0.25116,0.894696,0][1.87234,2.91578,1.7505][-0.449569,-0.841283,-0.300217][0.242423,0.880723,0][1.99969,2.46521,2.45039][-0.484135,-0.707505,-0.51483][0.257451,0.88256,0][1.15669,2.45727,2.97286][-0.229695,-0.719264,-0.655667][0.265083,0.902343,0][0.179274,2.43929,3.14332][0.0126608,-0.71334,-0.700704][0.264706,0.923515,0][0.584195,2.89768,2.54146][-0.0882713,-0.853005,-0.514385][0.253925,0.910942,0][0.806938,0.780468,-3.01797][1.10892,-0.0617761,-0.0309991][0.228715,0.670473,0][0.853031,1.55239,-2.6827][0.191995,-1.67898,1.16755][0.230601,0.687052,0][-0.125585,1.33401,-2.89632][0.0783222,-0.414184,0.906817][0.209263,0.683479,0][0.840329,1.58378,-3.42435][1.92671,-0.102693,-0.0446861][0.181151,0.197235,0][0.853031,1.55239,-2.6827][0.191995,-1.67898,1.16755][0.182887,0.213159,0][0.806938,0.780468,-3.01797][1.10892,-0.0617761,-0.0309991][0.165723,0.208489,0][-3.39786,-0.0691873,-0.653317][0.943082,-0.0517203,0.328513][0.369076,0.893338,0][-3.09428,-0.0669764,-1.30749][0.858005,-0.0548872,0.510701][0.36642,0.879434,0][-3.00877,0.646454,-1.24674][0.836601,-0.24421,0.490367][0.381335,0.879047,0][-2.63139,-0.785837,-1.883][0.736011,0.126337,0.665076][0.15282,0.640703,0][-2.09818,-0.78767,-2.38582][0.607961,0.134504,0.782491][0.164306,0.640046,0][-2.09209,0.411748,-2.35537][0.55078,0.627368,-0.00558207][0.165825,0.665882,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][2.01576,-4.3066,-0.509825][0.0550213,-0.959484,-0.276339][0.289392,0.333149,0][2.17084,-4.31435,-0.148377][0.217874,-0.970676,0.101582][0.291524,0.324965,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][1.17675,-4.27752,-1.2934][-0.0822306,-0.957543,-0.276313][0.293237,0.357351,0][1.50996,-4.28428,-1.09342][0.246646,-0.967179,-0.0610709][0.29024,0.349636,0][1.56235,-0.811139,4.03683][-0.38121,0.136249,-0.914393][0.381978,0.664259,0][0.878877,-0.839762,4.23971][-0.189892,0.137164,-0.972176][0.367223,0.664637,0][0.879796,-0.11972,4.27129][-0.183765,-0.0513598,-0.981627][0.367495,0.649103,0][-1.24617,-0.135976,4.06348][0.361269,-0.0425498,-0.93149][0.321623,0.648706,0][-0.554005,-0.145485,4.26249][0.188599,-0.0451371,-0.981016][0.336553,0.649155,0][-0.541939,-0.8654,4.22779][0.190536,0.144066,-0.971051][0.33656,0.664691,0][-2.03563,-3.24585,-0.195025][0.603677,0.771501,0.200899][0.298151,0.911408,0][-1.80798,-3.15113,-0.843118][2.64493,2.87025,0.996407][0.29774,0.897379,0][-2.09166,-2.74751,-1.15552][1.82615,1.46338,0.232478][0.306528,0.889589,0][-2.09166,-2.74751,-1.15552][1.82615,1.46338,0.232478][0.668307,0.0461386,0][-1.80798,-3.15113,-0.843118][2.64493,2.87025,0.996407][0.674946,0.0566688,0][-1.79001,-3.12667,-2.41751][1.68487,3.12243,-0.0250921][0.641069,0.0565531,0][0.665155,3.45231,3.00009][-0.102101,0.856178,0.506493][0.499772,0.115176,0][0.52122,3.74666,2.23143][-0.196159,0.960628,0.196761][0.502876,0.13159,0][0.199544,3.60248,2.19534][0.000663,0.978903,0.204325][0.496088,0.134553,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.199544,3.60248,2.19534][0.000663,0.978903,0.204325][0.496088,0.134553,0][0.52122,3.74666,2.23143][-0.196159,0.960628,0.196761][0.502876,0.13159,0][-2.72618,1.53538,3.65282][-0.512999,0.426331,0.745033][0.363239,0.0537268,0][-2.4073,2.28685,3.30791][-0.424582,0.601063,0.677092][0.360993,0.0727165,0][-2.8584,2.33297,2.79256][-0.696709,0.60886,0.379324][0.346182,0.0726463,0][-3.46655,0.766727,3.22766][-0.847633,0.230624,0.47784][0.350959,0.446742,0][-3.56647,-0.0970874,3.28102][-0.872093,0.0389061,0.487791][0.332951,0.44559,0][-3.00119,-0.155528,3.94217][-0.610908,0.0333892,0.790997][0.329651,0.431324,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][1.86471,3.75883,1.00724][0.110267,0.96421,0.241123][0.538127,0.148145,0][1.91022,3.75602,0.688119][0.178717,0.963441,-0.199605][0.541117,0.154421,0][2.68356,3.43351,0.750224][0.526575,0.837599,-0.145417][0.555276,0.148538,0][1.91022,3.75602,0.688119][0.178717,0.963441,-0.199605][0.541117,0.154421,0][1.86471,3.75883,1.00724][0.110267,0.96421,0.241123][0.538127,0.148145,0][-2.09818,-0.78767,-2.38582][0.607961,0.134504,0.782491][0.164306,0.640046,0][-2.63139,-0.785837,-1.883][0.736011,0.126337,0.665076][0.15282,0.640703,0][-2.50521,-1.48869,-1.77708][0.695942,0.328204,0.638708][0.154725,0.625413,0][-1.93961,-1.91437,-2.05969][1.32067,-1.21719,0.121371][0.665379,0.0664979,0][-1.76025,-1.83993,-3.26482][1.28219,-2.20229,0.202326][0.654531,0.0904809,0][-1.21636,-1.62891,-2.6553][0.40547,0.347367,1.13554][0.646133,0.0745241,0][3.83279,0.494151,-0.0293971][-0.952072,-0.280608,0.121727][0.344807,0.784046,0][3.8693,0.502402,0.669655][-0.96081,-0.276557,-0.0190098][0.359849,0.782934,0][3.54332,1.22602,1.33433][-0.897961,-0.411747,-0.155337][0.375417,0.798365,0][3.28043,1.84181,0.682856][-0.844063,-0.536095,0.0126173][0.362477,0.813452,0][2.85973,1.86547,-1.00414][-0.731269,-0.531724,0.427219][0.326338,0.818265,0][3.44407,1.20118,-0.605626][-0.86168,-0.435844,0.259898][0.333668,0.8014,0][3.46688,-0.168114,-1.41009][-0.859492,-0.0915512,0.502883][0.314127,0.773608,0][3.06317,-0.145346,-1.97581][-0.740237,-0.0874267,0.666637][0.302105,0.77649,0][3.04245,-0.865246,-1.9635][-0.733794,0.169402,0.657913][0.301204,0.761278,0][2.56032,0.355795,-2.32892][-0.440779,-0.0151487,0.619774][0.0575496,0.466932,0][2.9258,0.758565,-1.84139][-0.865221,0.796526,-0.0505669][0.0436527,0.468632,0][2.95176,0.718481,-2.91691][-1.9698,1.80624,-0.141748][0.0587982,0.451044,0][1.50996,-4.28428,-1.09342][0.246646,-0.967179,-0.0610709][0.29024,0.349636,0][1.96562,-3.99502,-1.68145][0.433894,-0.832352,-0.344857][0.274002,0.353205,0][2.27115,-3.87043,-1.24253][0.408612,-0.831649,-0.376027][0.274221,0.341459,0][3.09199,-2.64027,-1.95525][0.63101,-0.509404,-0.585092][0.190124,0.377776,0][2.72529,-3.31348,-1.6317][0.555446,-0.647177,-0.522151][0.204613,0.381349,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.200331,0.397229,0][0.96021,-2.73559,-3.12381][0.876416,0.0525242,-0.000967892][0.68502,0.0999987,0][0.576251,-2.74454,-3.29737][-0.0126256,0.804171,-0.0135452][0.693596,0.0972259,0][0.960296,-2.72032,-2.21745][2.43407,0.146248,-0.00339208][0.682703,0.119418,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.160544,0.163782,0][0.576251,-2.74454,-3.29737][-0.0126256,0.804171,-0.0135452][0.148832,0.174545,0][0.96021,-2.73559,-3.12381][0.876416,0.0525242,-0.000967892][0.14468,0.168739,0][-2.57208,2.86112,1.86046][-0.602108,0.740528,0.298472][0.439491,0.160032,0][-1.9679,3.35066,1.56066][-0.426344,0.874901,0.229737][0.455391,0.161788,0][-2.20428,3.49818,1.15447][-0.401348,0.876083,0.267205][0.453753,0.171498,0][-2.20428,3.49818,1.15447][-0.401348,0.876083,0.267205][0.453753,0.171498,0][-1.44938,3.75878,0.966917][-0.0723592,0.970154,0.231443][0.471185,0.170229,0][-1.49616,3.75864,0.646457][-0.148468,0.966071,-0.211339][0.472321,0.177122,0][3.23259,0.733937,3.78253][0.610629,0.225018,0.759275][0.511511,0.263196,0][3.0353,1.54058,3.59154][0.558242,0.404362,0.724471][0.528814,0.267851,0][2.31994,1.47991,3.96593][0.501267,0.40918,0.762432][0.527151,0.283253,0][2.10726,2.1927,3.6191][0.448108,0.565613,0.692301][0.542422,0.288193,0][2.31994,1.47991,3.96593][0.501267,0.40918,0.762432][0.527151,0.283253,0][3.0353,1.54058,3.59154][0.558242,0.404362,0.724471][0.528814,0.267851,0][1.87108,-4.29421,1.76349][0.272319,-0.961737,-0.0300763][0.32156,0.295993,0][2.47539,-4.00486,2.18847][0.517905,-0.83581,0.182199][0.316069,0.280268,0][2.12527,-4.00084,2.59687][0.267121,-0.831412,0.487238][0.327323,0.277771,0][2.91882,-4.03849,1.22181][0.4449,-0.844231,0.298895][0.296015,0.291202,0][2.20215,-4.3051,1.03471][0.134311,-0.963935,0.22976][0.306454,0.304247,0][2.26442,-4.31269,0.639033][0.190132,-0.968009,-0.163732][0.300244,0.310247,0][-0.692312,2.83477,-2.36706][-0.217421,0.717773,-0.661461][0.317693,0.113811,0][-0.828389,2.22094,-2.88521][-0.258917,0.550924,-0.793375][0.314027,0.126872,0][-1.53052,2.30549,-2.74848][-0.317153,0.5652,-0.761553][0.299001,0.12421,0][-1.62267,1.89368,-2.92234][-0.421623,-2.5359,-0.0697341][0.0812629,0.118804,0][-0.886134,1.73043,-3.12374][-0.869274,-3.35365,-0.293602][0.0666456,0.113116,0][-0.456672,1.58106,-2.68909][-0.17271,-0.631496,0.0169859][0.0655061,0.100449,0][-2.12906,2.83087,-1.41806][-0.543475,0.711128,-0.446018][0.469702,0.224673,0][-1.62843,3.32934,-0.99942][-0.386189,0.864228,-0.322442][0.478859,0.212302,0][-1.36463,3.46104,-1.38824][-0.422113,0.866473,-0.266545][0.487195,0.218465,0][-1.36463,3.46104,-1.38824][-0.422113,0.866473,-0.266545][0.487195,0.218465,0][-0.871845,3.74308,-0.784192][-0.248987,0.968299,0.020043][0.494236,0.202568,0][-0.603515,3.74584,-0.963077][0.117025,0.966269,-0.229412][0.500851,0.204524,0][-0.147464,-1.83723,-3.72766][-0.539444,-0.402461,-2.07419][0.32384,0.215117,0][-0.181903,-0.615974,-3.95567][-0.234973,1.60383,-0.0216988][0.32456,0.188765,0][0.675893,-1.01668,-3.92946][0.184041,-0.125211,-0.974911][0.342561,0.198424,0][-0.147464,-1.83723,-3.72766][-0.539444,-0.402461,-2.07419][0.742773,0.0520521,0][0.642199,-1.70389,-3.76011][0.443414,-2.71821,-0.0160606][0.726107,0.0566688,0][0.560125,-1.72825,-2.9084][0.41034,-2.38579,-0.0286775][0.723708,0.0383562,0][-2.82172,2.84906,0.168625][-0.692426,0.716163,-0.0875027][0.445395,0.196452,0][-2.16391,3.35427,0.231038][-0.490924,0.869468,-0.0549456][0.460081,0.190395,0][-2.15145,3.48818,-0.242362][-0.490064,0.871668,-0.00556167][0.463878,0.199907,0][-2.15145,3.48818,-0.242362][-0.490064,0.871668,-0.00556167][0.463878,0.199907,0][-1.41157,3.75224,0.00670533][-0.183412,0.972679,0.142319][0.478177,0.189748,0][-1.28269,3.7475,-0.290009][-0.0135615,0.963574,-0.267097][0.482705,0.195031,0][3.0353,1.54058,3.59154][0.558242,0.404362,0.724471][0.474249,0.421685,0][3.23259,0.733937,3.78253][0.610629,0.225018,0.759275][0.492576,0.422461,0][3.79925,0.690992,3.12511][0.848972,0.219859,0.480529][0.491675,0.436927,0][3.87149,-1.03918,3.13069][0.85896,-0.133667,0.494288][0.527435,0.446659,0][3.90165,-0.165251,3.1624][0.867897,0.0392079,0.495194][0.509804,0.441089,0][3.32562,-0.121064,3.84497][0.636569,0.0400068,0.770181][0.510791,0.426084,0][-3.20696,-1.4884,-0.598524][0.888413,0.337191,0.311486][0.338531,0.898023,0][-3.3676,-1.48584,0.0626416][0.937549,0.323129,0.128797][0.340788,0.912124,0][-3.07455,-2.13914,0.106199][0.851621,0.511393,0.114973][0.326031,0.914759,0][-3.45902,-0.758504,1.4602][0.961035,0.14386,-0.236044][0.359916,0.940288,0][-3.56366,-0.778215,0.752258][0.988424,0.141605,-0.0544635][0.358141,0.925116,0][-3.59717,-0.0588381,0.763015][0.997662,-0.0469706,-0.049642][0.373489,0.923593,0][-2.96073,2.97538,0.752638][-0.683371,0.720775,-0.116134][0.439214,0.18519,0][-3.53625,2.31291,0.824704][-0.814336,0.573878,-0.0867229][0.424776,0.188126,0][-3.43444,2.33256,1.52594][-0.753699,0.590344,0.288847][0.422346,0.173024,0][-3.53625,2.31291,0.824704][-0.814336,0.573878,-0.0867229][0.384098,0.498591,0][-3.97754,1.54337,0.853113][-0.908841,0.411532,-0.0681944][0.369336,0.497978,0][-3.8654,1.57146,1.64032][-0.860404,0.412102,0.299796][0.369526,0.480992,0][2.54269,-0.863903,-2.42718][-0.593186,0.130486,0.79442][0.264212,0.633035,0][3.04245,-0.865246,-1.9635][-0.733794,0.169402,0.657913][0.274978,0.632428,0][3.06317,-0.145346,-1.97581][-0.740237,-0.0874267,0.666637][0.276257,0.647915,0][2.64187,-2.26857,-1.6003][-0.727847,-0.476033,-0.00218925][0.0243403,0.648854,0][3.29143,-1.58804,-1.30986][-0.784718,0.379729,0.489922][0.0250074,0.627619,0][2.32753,-1.77382,-2.23113][-1.99434,-1.25815,0.0070108][0.0428438,0.650547,0][-2.53601,2.20917,-1.74475][-0.624672,0.551455,-0.552885][0.461418,0.234686,0][-2.12906,2.83087,-1.41806][-0.543475,0.711128,-0.446018][0.469702,0.224673,0][-1.78952,2.94609,-1.92064][-0.536472,0.699311,-0.4724][0.480257,0.232708,0][-3.67534,0.71866,-1.59126][-0.78656,0.246312,-0.566263][0.212584,0.502036,0][-3.42923,1.54574,-1.43168][-0.729422,0.40159,-0.553777][0.207261,0.519288,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.1849,0.520811,0][1.42902,3.62391,-0.486002][0.155931,0.979269,-0.129295][0.53854,0.181808,0][1.98177,3.3293,-0.955269][0.413692,0.844863,-0.339212][0.55178,0.18824,0][1.70239,3.48304,-1.34917][0.45754,0.846627,-0.27181][0.549211,0.197967,0][2.3319,3.44441,-0.619738][0.383606,0.846135,-0.370002][0.557096,0.178965,0][1.67063,3.7596,-0.254768][0.0489948,0.969461,-0.240302][0.542406,0.175352,0][1.81114,3.75574,0.0457153][0.233714,0.960742,0.149509][0.543286,0.168273,0][1.90735,-3.65197,0.601951][-0.450609,0.892696,-0.00679868][0.229802,0.804592,0][1.69086,-3.64785,-0.342411][-0.373796,0.895959,0.239863][0.211157,0.814008,0][1.10603,-3.91103,0.00693724][-0.237453,0.961531,0.138111][0.208456,0.798876,0][1.80702,-3.37518,-2.53946][-0.0192064,1.01496,-0.00856407][0.667985,0.110711,0][1.86384,-3.3428,-0.917229][-0.34569,5.17696,0.624401][0.662623,0.145327,0][2.2712,-3.34731,-0.277232][-0.927368,1.23866,0.408662][0.652438,0.158045,0][2.12527,-4.00084,2.59687][0.267121,-0.831412,0.487238][0.327323,0.277771,0][1.61213,-4.29529,2.07445][0.0264614,-0.964925,0.261188][0.330012,0.294003,0][1.87108,-4.29421,1.76349][0.272319,-0.961737,-0.0300763][0.32156,0.295993,0][0.948468,-4.3068,2.53634][0.26785,-0.956106,0.11882][0.347312,0.294668,0][1.22648,-4.00443,3.20755][0.37749,-0.819887,0.430448][0.350523,0.2789,0][0.709982,-4.01676,3.38111][-0.0106999,-0.831539,0.555363][0.361564,0.282615,0][0.960296,-2.72032,-2.21745][2.43407,0.146248,-0.00339208][0.172199,0.83035,0][0.254266,-2.77128,-2.26251][-2.42751,-0.154908,0.0133374][0.161782,0.819236,0][0.295969,-3.35103,-1.60632][-0.712714,-0.046139,0.00453053][0.171931,0.809289,0][0.254266,-2.77128,-2.26251][-2.42751,-0.154908,0.0133374][0.697915,0.120209,0][0.960296,-2.72032,-2.21745][2.43407,0.146248,-0.00339208][0.682703,0.119418,0][0.576251,-2.74454,-3.29737][-0.0126256,0.804171,-0.0135452][0.693596,0.0972259,0][-1.13029,1.26037,3.74473][0.313984,-0.418885,-0.852026][0.324614,0.618622,0][0.801441,1.27617,3.93194][-0.107939,-0.431471,-0.895646][0.366295,0.618959,0][0.153911,0.572962,4.2292][0.0270094,-0.285025,-0.95814][0.352078,0.633903,0][-0.984978,1.88864,3.40102][0.257523,-0.583838,-0.769945][0.327969,0.605118,0][0.156778,1.88733,3.62169][0.0298038,-0.549037,-0.835266][0.352602,0.605547,0][-1.13029,1.26037,3.74473][0.313984,-0.418885,-0.852026][0.324614,0.618622,0][-0.942847,3.23515,1.33495][0.30441,-0.928782,-0.211418][0.222397,0.936638,0][-0.0646989,3.22973,1.89874][0.093112,-0.923165,-0.372956][0.237905,0.920651,0][-0.191856,2.89184,2.53071][0.113463,-0.842432,-0.526721][0.250537,0.927119,0][-0.507111,3.43526,0.410756][0.19976,-0.978752,0.0462558][0.204734,0.923014,0][-0.378175,3.43614,0.928694][0.16819,-0.976856,-0.132154][0.216229,0.922456,0][-0.942847,3.23515,1.33495][0.30441,-0.928782,-0.211418][0.222397,0.936638,0][-0.393079,-3.39012,-2.64667][0.217589,1.13756,0.0340557][0.175064,0.167666,0][-0.0652976,-3.97818,-2.20371][-0.213146,-0.823856,-0.525195][0.17659,0.150348,0][-0.561135,-3.84655,-1.99829][-0.148859,-0.816944,-0.557174][0.18743,0.155298,0][0.473982,-3.97981,-2.21814][0.186512,-0.819565,-0.54178][0.292153,0.381623,0][0.414187,-4.28387,-1.48172][0.202435,-0.960992,-0.188454][0.303683,0.370434,0][0.014432,-4.29238,-1.46845][-0.187044,-0.961522,-0.201224][0.31064,0.375383,0][-0.686264,3.22882,-0.593062][0.247836,-0.9317,0.265542][0.182602,0.92335,0][-1.19433,3.23477,0.319714][0.361158,-0.930428,0.0621959][0.199872,0.937701,0][-1.83183,2.9214,0.238617][0.511786,-0.854896,0.0850215][0.195344,0.951794,0][0.26209,3.44469,-0.198071][0.00202326,-0.982522,0.186135][0.194974,0.904411,0][-0.507111,3.43526,0.410756][0.19976,-0.978752,0.0462558][0.204734,0.923014,0][-0.686264,3.22882,-0.593062][0.247836,-0.9317,0.265542][0.182602,0.92335,0][1.48917,3.32943,2.60169][0.272547,0.859196,0.433012][0.512211,0.0712063,0][1.83391,2.81538,3.16399][0.379124,0.710786,0.592494][0.508942,0.0534613,0][2.37738,2.92615,2.90187][0.372632,0.710654,0.596755][0.521072,0.0516856,0][0.832961,3.75148,2.14828][0.228235,0.971365,0.0660189][0.509755,0.131296,0][1.11842,3.46082,2.88133][0.30728,0.86454,0.39768][0.509766,0.114703,0][1.48917,3.32943,2.60169][0.272547,0.859196,0.433012][0.518648,0.118222,0][-3.67733,-2.62534,1.54761][-0.806883,-0.488957,0.331454][0.279582,0.482993,0][-4.02428,-1.84048,1.62577][-0.884948,-0.323266,0.335211][0.297538,0.481306,0][-4.14766,-1.87124,0.807614][-0.943711,-0.327543,-0.0461021][0.297332,0.49896,0][-4.35128,-1.03423,0.808379][-0.988647,-0.14299,-0.046154][0.315875,0.498943,0][-4.14766,-1.87124,0.807614][-0.943711,-0.327543,-0.0461021][0.297332,0.49896,0][-4.02428,-1.84048,1.62577][-0.884948,-0.323266,0.335211][0.297538,0.481306,0][-3.29498,-2.51488,2.20329][-0.802019,-0.480012,0.355463][0.280541,0.468845,0][-2.86192,-3.2163,2.00232][-0.715444,-0.625104,0.312067][0.264047,0.473181,0][-2.65439,-3.3448,2.62626][-0.707393,-0.631786,0.316926][0.260559,0.459718,0][-1.55418,-4.29641,1.84231][-0.28888,-0.95701,-0.0260679][0.380511,0.338841,0][-2.14583,-3.97598,2.25792][-0.55717,-0.809882,0.18345][0.395028,0.338638,0][-2.31976,-3.82385,1.74662][-0.549131,-0.805039,0.224429][0.390836,0.349317,0][-1.8373,-1.01309,-3.4404][-0.375856,-0.136048,-0.916637][0.288421,0.195339,0][-0.466777,-0.46098,-3.82047][-1.19207,-0.230949,-3.20323][0.318608,0.185084,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.306715,0.21035,0][-1.76025,-1.83993,-3.26482][1.28219,-2.20229,0.202326][0.654531,0.0904809,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.63625,0.0896681,0][-1.21636,-1.62891,-2.6553][0.40547,0.347367,1.13554][0.646133,0.0745241,0][-0.686101,3.60428,1.93504][-0.487624,5.81739,0.999539][0.479828,0.145586,0][-1.09346,3.31855,2.56792][-0.245791,0.859383,0.448383][0.466458,0.135492,0][-0.725614,3.44611,2.85714][-0.329408,0.859445,0.390954][0.472478,0.127043,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-0.974342,3.74957,1.79206][0.0596052,0.965994,0.251601][0.475417,0.150217,0][-0.686101,3.60428,1.93504][-0.487624,5.81739,0.999539][0.479828,0.145586,0][2.96751,-2.80598,1.1901][-0.735732,0.637422,-0.228893][0.255892,0.816298,0][3.0121,-2.83447,0.105468][-0.718231,0.68185,0.138651][0.238368,0.831833,0][2.51617,-3.28834,0.629083][-0.588497,0.807948,-0.0298625][0.239329,0.815233,0][3.72705,-1.63605,-0.0422719][-0.930447,0.338477,0.140361][0.341093,0.739277,0][3.76441,-1.62733,0.637584][-0.941776,0.332829,-0.047778][0.355723,0.738204,0][3.9354,-0.934287,0.632395][-0.988391,0.144977,-0.0454397][0.356692,0.752289,0][-2.09166,-2.74751,-1.15552][1.82615,1.46338,0.232478][0.306528,0.889589,0][-2.66174,-2.72939,0.166405][0.759337,0.640485,0.114829][0.312214,0.917648,0][-2.03563,-3.24585,-0.195025][0.603677,0.771501,0.200899][0.298151,0.911408,0][-2.66174,-2.72939,0.166405][0.759337,0.640485,0.114829][0.312214,0.917648,0][-2.6031,-2.71923,1.24957][0.742552,0.633671,-0.216973][0.314874,0.940868,0][-2.16711,-3.23663,0.68439][0.625832,0.778878,-0.0410318][0.300979,0.930183,0][1.87234,2.91578,1.7505][-0.449569,-0.841283,-0.300217][0.0790105,0.897408,0][2.24959,2.89901,0.665141][-0.585027,-0.810617,-0.0253699][0.0569379,0.88611,0][2.74364,2.43525,1.17619][-0.699392,-0.705399,-0.115161][0.0707168,0.874047,0][2.24959,2.89901,0.665141][-0.585027,-0.810617,-0.0253699][0.220958,0.86843,0][1.87234,2.91578,1.7505][-0.449569,-0.841283,-0.300217][0.242423,0.880723,0][1.5749,3.24568,0.887598][-0.367293,-0.923281,-0.11246][0.223168,0.882194,0][2.99572,-3.41811,2.56613][0.671606,-0.65917,0.338291][0.203847,0.064703,0][3.41129,-2.70486,2.85229][0.760428,-0.490457,0.425678][0.20494,0.0835229,0][2.91173,-2.67045,3.43102][0.520666,-0.48129,0.705171][0.188435,0.0840493,0][3.30265,-0.995356,3.80491][0.629015,-0.132955,0.76594][0.187416,0.120369,0][3.1625,-1.85682,3.67085][0.590365,-0.303897,0.747741][0.187875,0.102727,0][3.70671,-1.89813,3.03386][0.82365,-0.309621,0.475116][0.205961,0.102034,0][-1.08994,-3.99322,-1.89673][-0.120841,-0.815176,-0.566467][0.322841,0.396318,0][-0.750014,-4.30983,-1.23544][0.0686136,-0.960862,-0.268397][0.326666,0.381288,0][-1.0894,-4.31196,-1.0222][-0.276178,-0.959161,-0.0611195][0.335201,0.382014,0][-1.32807,-4.17015,-0.700683][-0.194427,-0.966535,-0.167355][0.343035,0.379265,0][-1.85669,-3.84898,-1.17271][-0.43527,-0.813977,-0.384682][0.344865,0.393474,0][-1.5413,-3.9954,-1.61003][-0.463672,-0.816969,-0.342885][0.334231,0.397229,0][2.87035,-4.06066,-0.377171][0.525795,-0.850197,-0.0265585][0.275968,0.319304,0][2.17084,-4.31435,-0.148377][0.217874,-0.970676,0.101582][0.291524,0.324965,0][2.01576,-4.3066,-0.509825][0.0550213,-0.959484,-0.276339][0.289392,0.333149,0][2.17084,-4.31435,-0.148377][0.217874,-0.970676,0.101582][0.291524,0.324965,0][2.87035,-4.06066,-0.377171][0.525795,-0.850197,-0.0265585][0.275968,0.319304,0][2.88013,-3.91809,0.16277][0.525213,-0.849575,-0.0487331][0.282458,0.309601,0][3.83113,2.19402,1.47514][0.778631,0.557459,0.288052][0.451509,0.462786,0][3.28124,2.87351,1.37363][0.65869,0.69853,0.279613][0.435065,0.460525,0][2.97428,2.78679,1.88236][0.663937,0.696139,0.273091][0.438684,0.450136,0][1.86471,3.75883,1.00724][0.110267,0.96421,0.241123][0.538127,0.148145,0][2.61736,3.44712,1.2147][0.455285,0.84833,0.270279][0.550959,0.139392,0][2.68356,3.43351,0.750224][0.526575,0.837599,-0.145417][0.555276,0.148538,0][-0.248266,-2.31187,-2.85213][-0.353244,-1.53993,-0.0523712][0.615995,0.0747497,0][-0.853751,-2.17507,-2.80473][-0.418262,-1.82898,-0.0643849][0.628944,0.0783228,0][-1.05505,-2.11064,-3.32747][-0.341627,-1.48973,-0.0508353][0.629397,0.0904809,0][-0.750863,-1.72513,-2.79209][0.450586,0.386018,1.26189][0.192252,0.618289,0][-0.145379,-1.86192,-2.83949][0.341491,0.597549,3.27831][0.205139,0.614641,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.204379,0.641625,0][-2.21051,1.3079,3.06581][0.576985,-0.439786,-0.688242][0.0341254,0.960199,0][-2.62832,1.34685,2.58991][0.720454,-0.435106,-0.540026][0.0455006,0.953451,0][-2.32728,1.95397,2.36014][0.628183,-0.614963,-0.476662][0.05332,0.966718,0][-1.61224,2.46406,2.42678][0.450556,-0.733493,-0.508907][0.242263,0.95787,0][-0.788621,2.44064,2.95297][0.238729,-0.724246,-0.646897][0.25674,0.94293,0][-1.49874,1.90236,3.13856][0.435579,-0.587397,-0.682082][0.257409,0.960443,0][2.92041,2.87128,-0.962832][0.55372,0.711165,-0.433172][0.0827398,0.325723,0][3.419,2.20004,-1.2776][0.651161,0.596628,-0.469067][0.0962486,0.329598,0][2.90342,2.1344,-1.76871][2.08727,1.90135,-2.04943][0.0929295,0.344365,0][3.09708,0.92863,-2.52952][0.451961,0.229621,-0.437329][0.451918,0.552531,0][3.03007,1.42866,-2.32033][-2.04576,-0.252091,-0.0321276][0.44263,0.545289,0][3.8012,1.45136,-1.52738][0.747895,0.434417,-0.501932][0.449416,0.529411,0][2.19641,-0.801022,3.69492][-0.563902,0.14945,-0.812206][0.395661,0.664264,0][2.76041,-0.814889,3.22544][-0.674779,0.194314,-0.71198][0.407824,0.664761,0][3.10014,-1.54366,2.56902][-0.749941,0.321026,-0.578386][0.414898,0.680603,0][2.78074,-0.0936026,3.25937][-0.702064,-0.0393291,-0.711027][0.408516,0.649207,0][2.21013,-0.0797337,3.72923][-0.554138,-0.0455336,-0.831179][0.396211,0.648707,0][2.15011,0.630646,3.64999][-0.532002,-0.233158,-0.814009][0.395165,0.63336,0][3.48187,-3.38089,0.0879229][0.742621,-0.663409,-0.0916595][0.269751,0.301935,0][3.96181,-2.71903,0.00317119][0.855837,-0.502724,-0.121704][0.258612,0.295736,0][4.14934,-2.80689,0.746314][0.856744,-0.511958,-0.062363][0.265423,0.280763,0][4.51616,-2.02011,0.730016][0.941031,-0.333696,-0.0557432][0.536045,0.502764,0][4.14934,-2.80689,0.746314][0.856744,-0.511958,-0.062363][0.550983,0.506516,0][3.96181,-2.71903,0.00317119][0.855837,-0.502724,-0.121704][0.544263,0.521297,0][3.36549,2.84763,0.779405][0.71105,0.6942,-0.111778][0.432485,0.473114,0][3.93159,2.15761,0.77274][0.82262,0.561343,-0.0904996][0.44858,0.4777,0][3.75442,2.06118,0.0754813][0.819003,0.560148,-0.124371][0.445938,0.492577,0][4.39625,0.599303,-0.929008][0.947212,0.243669,-0.208362][0.472404,0.522355,0][4.12951,1.41399,-0.806189][0.890754,0.41756,-0.179447][0.455469,0.514938,0][4.16628,1.3205,-0.0135957][0.904442,0.405821,-0.131503][0.462059,0.499014,0][1.45779,-3.39323,3.80102][0.425958,-0.64871,0.630662][0.421603,0.299439,0][1.64695,-2.67292,4.28744][0.450117,-0.494804,0.743346][0.437235,0.295715,0][0.923484,-2.7075,4.50763][0.0716129,-0.500669,0.862671][0.436131,0.311304,0][0.99668,-1.91665,4.85933][0.0901463,-0.321888,0.942477][0.453227,0.310117,0][0.923484,-2.7075,4.50763][0.0716129,-0.500669,0.862671][0.436131,0.311304,0][1.64695,-2.67292,4.28744][0.450117,-0.494804,0.743346][0.437235,0.295715,0][2.56257,1.79565,-1.51661][-0.988608,-1.34602,0.598864][0.315282,0.818708,0][2.85973,1.86547,-1.00414][-0.731269,-0.531724,0.427219][0.326338,0.818265,0][2.15796,2.45631,-1.15655][-0.561349,-0.710182,0.424886][0.324216,0.833592,0][2.89875,1.71422,-2.02303][-0.694191,-2.46917,-0.0638092][0.215141,0.271674,0][2.77883,1.71746,-1.11874][-2.05047,-0.419825,1.03203][0.22559,0.288347,0][2.56257,1.79565,-1.51661][-0.988608,-1.34602,0.598864][0.2168,0.284466,0][0.709982,-4.01676,3.38111][-0.0106999,-0.831539,0.555363][0.361564,0.282615,0][0.566538,-4.31307,2.66733][-0.111996,-0.967117,0.228344][0.355502,0.297363,0][0.948468,-4.3068,2.53634][0.26785,-0.956106,0.11882][0.347312,0.294668,0][-0.363655,-4.03182,3.40935][0.0637306,-0.826655,0.559089][0.380129,0.296016,0][-0.229198,-4.31934,2.69343][0.145581,-0.961185,0.234369][0.369316,0.307196,0][0.167832,-4.17773,2.64077][0.00791325,-0.970825,0.239657][0.361505,0.302664,0][1.7968,2.47581,-1.50261][-0.408672,-0.716942,0.564784][0.104384,0.688392,0][0.426702,2.48335,-2.07552][-0.0978229,-0.723807,0.683034][0.0727972,0.693492,0][1.06212,1.92463,-2.42191][-0.247661,-0.571548,0.782302][0.0796983,0.675094,0][0.36766,2.9257,-1.51669][-0.0687725,-0.841218,0.536304][0.167115,0.898621,0][1.44461,2.92601,-1.06033][-0.317606,-0.830702,0.457231][0.18116,0.87802,0][0.577173,3.25148,-0.827196][-0.0969187,-0.923796,0.370414][0.182796,0.895928,0][-1.08994,-3.99322,-1.89673][-0.120841,-0.815176,-0.566467][0.197961,0.157483,0][-1.44321,-3.19153,-2.58688][-0.0880624,-0.714982,-0.785464][0.193152,0.181061,0][-0.951185,-3.28601,-2.55604][0.0688564,0.348973,0.0120743][0.185468,0.174114,0][-1.44321,-3.19153,-2.58688][-0.0880624,-0.714982,-0.785464][0.736103,0.117604,0][-1.25213,-3.27081,-1.2791][0.539164,2.02488,0.565707][0.729093,0.145197,0][-0.951185,-3.28601,-2.55604][0.0688564,0.348973,0.0120743][0.725974,0.117096,0][-2.86635,1.9564,0.155313][0.832273,-0.543524,0.109097][0.41194,0.905994,0][-2.80659,1.97132,1.32072][0.780963,-0.597983,-0.180314][0.414898,0.930966,0][-3.16155,1.3548,1.42155][0.889496,-0.428076,-0.159835][0.403401,0.934472,0][-2.9503,1.36129,2.03498][0.814075,-0.442387,-0.376267][0.40428,0.947694,0][-3.16155,1.3548,1.42155][0.889496,-0.428076,-0.159835][0.403401,0.934472,0][-2.80659,1.97132,1.32072][0.780963,-0.597983,-0.180314][0.414898,0.930966,0][1.29743,-0.839366,-3.04752][-0.280574,0.132973,0.950577][0.237409,0.635004,0][1.95381,-0.862782,-2.79005][-0.44962,0.121652,0.884897][0.251525,0.63374,0][1.93653,0.158308,-2.77738][-1.05221,-0.0361623,1.47949][0.252334,0.655761,0][1.49505,0.0329956,-2.97652][1.16828,1.07221,-0.0592884][0.242677,0.653572,0][0.406652,0.776108,-3.07764][-0.420602,-1.59046,-0.0709133][0.220085,0.670842,0][0.930866,-0.47532,-3.13645][-0.182819,1.5385,0.0123073][0.229932,0.643272,0][-0.692312,2.83477,-2.36706][-0.217421,0.717773,-0.661461][0.505025,0.234977,0][-0.508997,3.33345,-1.7387][-0.173712,0.864519,-0.471625][0.506383,0.220327,0][-0.077658,3.4817,-1.91708][-0.217187,0.864554,-0.453184][0.516805,0.221068,0][0.461226,2.94823,-2.58655][0.224428,0.714279,-0.6629][0.342681,0.112747,0][0.535956,2.28938,-3.14861][0.223804,0.574524,-0.787295][0.343502,0.12703,0][-0.174677,2.31657,-3.15577][-0.180753,0.573948,-0.798694][0.328225,0.125594,0][-1.9679,3.35066,1.56066][-0.426344,0.874901,0.229737][0.455391,0.161788,0][-2.57208,2.86112,1.86046][-0.602108,0.740528,0.298472][0.439491,0.160032,0][-2.38206,2.96719,2.42079][-0.600964,0.745669,0.287784][0.440066,0.147169,0][-1.81947,3.47912,2.00529][-0.468559,0.871995,0.141692][0.455954,0.151547,0][-1.18442,3.75366,1.55033][-0.241286,0.96696,-0.0822831][0.472744,0.156533,0][-1.28682,3.61432,1.24405][-0.15901,0.982817,0.0937342][0.472177,0.163644,0][-2.8067,-3.36567,-1.11952][-0.583633,-0.648457,-0.488748][0.236053,0.176522,0][-3.25324,-2.65384,-1.37277][-0.681983,-0.497126,-0.536437][0.23883,0.194886,0][-2.691,-2.55963,-1.892][-0.652126,-0.486328,-0.581564][0.222246,0.196154,0][-2.94257,-1.79459,-2.12102][-0.707556,-0.313274,-0.633422][0.221967,0.213019,0][-3.08584,-0.979226,-2.24755][-0.736417,-0.135198,-0.662881][0.221144,0.228387,0][-2.56982,-1.01975,-2.95775][-0.686049,-0.136793,-0.71458][0.203036,0.230186,0][-0.363655,-4.03182,3.40935][0.0637306,-0.826655,0.559089][0.0984045,0.171892,0][-0.487277,-3.43991,4.01386][-0.00916173,-0.643692,0.76523][0.113987,0.181583,0][-1.12014,-3.43233,3.82736][-0.406031,-0.642828,0.649547][0.107124,0.192398,0][-1.30721,-2.72212,4.27749][-0.42738,-0.48721,0.761559][0.434711,0.359417,0][-1.12014,-3.43233,3.82736][-0.406031,-0.642828,0.649547][0.419484,0.35503,0][-0.487277,-3.43991,4.01386][-0.00916173,-0.643692,0.76523][0.419633,0.341374,0][-0.422068,2.89058,3.66571][-0.00211382,0.71614,0.697953][0.556225,0.3431,0][-0.557526,2.22432,4.23551][-0.0407399,0.581031,0.812861][0.541785,0.345693,0][0.149272,2.13714,4.16801][-0.00937697,0.573501,0.819151][0.540254,0.330403,0][0.144168,1.40401,4.59598][-0.00582079,0.414096,0.910215][0.524437,0.33015,0][0.161693,0.606734,4.87659][-0.00517929,0.235814,0.971784][0.507247,0.329377,0][1.00702,0.664798,4.96915][0.0709843,0.237928,0.968685][0.508918,0.311171,0][-1.49969,0.659321,4.73083][-0.437003,0.233095,0.868732][0.507559,0.365242,0][-1.40867,1.48009,4.4588][-0.421478,0.422198,0.802561][0.52531,0.363685,0][-2.02535,1.42857,3.9796][-0.455426,0.421972,0.783917][0.523893,0.376962,0][-1.51307,3.4668,2.35925][-0.193078,0.862307,0.468132][0.459821,0.142314,0][-1.99316,2.93521,2.86495][-0.333576,0.731702,0.594424][0.444951,0.135572,0][-1.46258,2.79436,3.13052][-0.34478,0.72148,0.600495][0.453494,0.12686,0][-2.4204,-0.801418,3.28779][0.684821,0.149501,-0.713211][0.296056,0.662651,0][-1.86249,-0.8407,3.7149][0.526634,0.150007,-0.836752][0.308079,0.663694,0][-1.76763,-1.54109,3.56666][0.468293,0.353368,-0.809835][0.309879,0.678838,0][-2.09039,-2.16718,2.93798][0.650628,0.507466,-0.564944][0.0851296,0.617766,0][-1.60393,-2.19513,3.30987][0.408159,0.511229,-0.756341][0.098141,0.616439,0][-1.80096,-2.76189,2.63424][0.554734,0.642667,-0.52844][0.0879863,0.633083,0][3.6305,-2.75449,-1.43999][0.676482,-0.505883,-0.535215][0.535554,0.551197,0][3.95104,-1.94887,-1.6518][0.755481,-0.342252,-0.55867][0.518945,0.55136,0][4.27782,-1.98841,-0.899545][0.917923,-0.333481,-0.214962][0.525216,0.536252,0][4.5146,-0.258058,-1.0083][0.972229,0.0543466,-0.227635][0.489944,0.528964,0][4.47588,-1.13164,-0.997502][0.962406,-0.145375,-0.229437][0.507782,0.533639,0][4.13313,-1.08872,-1.78044][0.803616,-0.145138,-0.577179][0.50121,0.549351,0][-4.06481,0.672269,0.0170299][-0.962345,0.237321,-0.132551][0.351127,0.516018,0][-4.18486,-0.163511,-0.0243253][-0.988995,0.0506223,-0.139016][0.333788,0.516911,0][-4.39203,-0.165153,0.812912][-0.997558,0.0474116,-0.0512766][0.334507,0.498845,0][-4.03293,0.709426,-0.828614][-0.944858,0.239131,-0.223742][0.351801,0.534265,0][-3.76023,1.53944,-0.708238][-0.890741,0.412086,-0.191746][0.368462,0.531668,0][-3.42923,1.54574,-1.43168][-0.729422,0.40159,-0.553777][0.367392,0.547278,0][-2.09039,-2.16718,2.93798][0.650628,0.507466,-0.564944][0.328828,0.97594,0][-3.00362,-2.11972,1.34785][0.830099,0.494218,-0.258234][0.329231,0.941359,0][-3.29319,-1.45958,1.41805][0.899681,0.343005,-0.270039][0.344399,0.941148,0][-3.39508,-1.47591,0.742921][0.93901,0.339055,-0.0574659][0.342766,0.926672,0][-3.29319,-1.45958,1.41805][0.899681,0.343005,-0.270039][0.344399,0.941148,0][-3.00362,-2.11972,1.34785][0.830099,0.494218,-0.258234][0.329231,0.941359,0][-1.93574,-4.28385,0.713688][-0.230956,-0.958925,-0.16469][0.372152,0.363096,0][-2.6663,-3.95848,0.74162][-0.563163,-0.81689,-0.124653][0.383929,0.371324,0][-2.52618,-3.82578,0.221759][-0.57246,-0.814139,-0.0973023][0.374371,0.378141,0][-3.12779,-3.24081,0.139856][-0.754633,-0.645243,-0.119124][0.264493,0.513368,0][-2.52618,-3.82578,0.221759][-0.57246,-0.814139,-0.0973023][0.249863,0.511601,0][-2.6663,-3.95848,0.74162][-0.563163,-0.81689,-0.124653][0.24755,0.500384,0][-1.8373,-1.01309,-3.4404][-0.375856,-0.136048,-0.916637][0.288421,0.195339,0][-1.85938,-0.143039,-3.47366][-0.372931,0.0623176,-0.925764][0.288986,0.176568,0][-1.02285,0.0898155,-3.61537][-1.2826,1.14497,-0.0710672][0.307287,0.172553,0][-1.02285,0.0898155,-3.61537][-1.2826,1.14497,-0.0710672][0.462982,0.0709809,0][-1.82516,0.337181,-3.38655][0.80369,2.68925,0.00912821][0.444887,0.0759883,0][-1.49551,0.236594,-2.77638][0.683375,-0.0283528,0.980157][0.444556,0.0608711,0][-0.134386,-3.36433,-2.83859][-0.00733349,-0.754838,-0.741609][0.168096,0.167462,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.160544,0.163782,0][0.473982,-3.97981,-2.21814][0.186512,-0.819565,-0.54178][0.167329,0.144825,0][0.295969,-3.35103,-1.60632][-0.712714,-0.046139,0.00453053][0.697494,0.134414,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.700783,0.107358,0][-0.134386,-3.36433,-2.83859][-0.00733349,-0.754838,-0.741609][0.709705,0.109066,0][-1.2565,1.811,-2.27281][-0.429929,-1.57199,0.0422832][0.185448,0.695064,0][-0.456672,1.58106,-2.68909][-0.17271,-0.631496,0.0169859][0.202415,0.689185,0][-0.678527,1.94538,-2.43292][0.273162,-0.559145,0.782776][0.198057,0.697291,0][0.426702,2.48335,-2.07552][-0.0978229,-0.723807,0.683034][0.222493,0.707604,0][-0.559164,2.4737,-1.98854][0.226091,-0.725995,0.649473][0.20124,0.708536,0][-0.101236,1.94785,-2.54439][0.037979,-0.577907,0.815219][0.210498,0.696676,0][-3.26115,-0.0222704,2.16016][0.912018,-0.0417297,-0.408023][0.376475,0.953595,0][-2.90982,-0.0342677,2.78241][0.815726,-0.04263,-0.576866][0.376478,0.967108,0][-2.88007,-0.755652,2.75482][0.812817,0.146874,-0.563699][0.36106,0.968274,0][-3.39322,0.675315,1.46838][0.946579,-0.23346,-0.222449][0.389996,0.937023,0][-3.16771,0.688332,2.12935][0.885874,-0.235157,-0.399911][0.391077,0.951255,0][-3.26115,-0.0222704,2.16016][0.912018,-0.0417297,-0.408023][0.376475,0.953595,0][1.47741,-1.04911,-3.60215][0.255411,-0.128559,-0.958247][0.35979,0.200082,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.361563,0.177712,0][2.34178,-0.238315,-3.49488][0.338448,0.0747115,-0.938015][0.379382,0.183649,0][1.93653,0.158308,-2.77738][-1.05221,-0.0361623,1.47949][0.0744275,0.469021,0][2.28358,0.240962,-3.40082][-0.607071,1.99774,-0.0730785][0.0776502,0.453869,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.0937059,0.462212,0][2.20215,-4.3051,1.03471][0.134311,-0.963935,0.22976][0.306454,0.304247,0][2.91882,-4.03849,1.22181][0.4449,-0.844231,0.298895][0.296015,0.291202,0][2.64856,-3.87306,1.68133][0.479244,-0.838024,0.260846][0.306121,0.286441,0][3.21226,-3.3116,1.94394][0.670579,-0.65579,0.346789][0.298404,0.273424,0][2.64856,-3.87306,1.68133][0.479244,-0.838024,0.260846][0.306121,0.286441,0][2.91882,-4.03849,1.22181][0.4449,-0.844231,0.298895][0.296015,0.291202,0][1.91074,3.47055,2.40236][0.196239,0.85613,0.478049][0.521524,0.0705346,0][2.37738,2.92615,2.90187][0.372632,0.710654,0.596755][0.521072,0.0516856,0][2.77696,2.91447,2.45423][0.64539,0.704082,0.296211][0.534013,0.0521338,0][3.57225,1.50201,2.98323][0.804973,0.396627,0.441255][0.473436,0.435076,0][3.2316,2.24785,2.75946][0.73828,0.557441,0.37974][0.455666,0.435186,0][2.75197,2.27641,3.29716][0.48192,0.564307,0.670306][0.456481,0.423376,0][-1.89971,-2.6157,3.81793][-0.481679,-0.489164,0.727121][0.436714,0.372251,0][-2.08692,-1.85171,4.1121][-0.510651,-0.324031,0.796391][0.453102,0.376667,0][-2.82305,-1.87208,3.75069][-0.582752,-0.328325,0.743372][0.452298,0.392537,0][-2.57349,-2.66639,3.48892][-0.52877,-0.4954,0.689188][0.274693,0.441104,0][-2.82305,-1.87208,3.75069][-0.582752,-0.328325,0.743372][0.292495,0.435456,0][-3.3586,-1.81648,3.12777][-0.836483,-0.322076,0.443354][0.295626,0.448897,0][-0.930182,-4.17191,2.33283][-0.153474,-0.968637,0.195417][0.376022,0.322101,0][-1.30708,-3.87313,2.91744][-0.33752,-0.821541,0.459511][0.389182,0.316276,0][-1.78964,-3.99815,2.67011][-0.286329,-0.822926,0.490723][0.394465,0.327021,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-0.614393,-4.31685,2.5851][-0.242732,-0.962977,0.117284][0.374404,0.314019,0][-0.930182,-4.17191,2.33283][-0.153474,-0.968637,0.195417][0.376022,0.322101,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][-0.70643,-3.92635,1.20403][0.215761,0.962682,-0.163371][0.203841,0.752658,0][0.163038,-3.92573,1.64146][0.00507077,0.959264,-0.282465][0.222886,0.760928,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][-0.884603,-3.92758,0.4321][0.285523,0.957267,0.0460048][0.188574,0.760322,0][-0.70643,-3.92635,1.20403][0.215761,0.962682,-0.163371][0.203841,0.752658,0][1.96562,-3.99502,-1.68145][0.433894,-0.832352,-0.344857][0.274002,0.353205,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.259016,0.357462,0][2.72529,-3.31348,-1.6317][0.555446,-0.647177,-0.522151][0.259838,0.341045,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.259016,0.357462,0][1.50964,-3.98886,-1.95733][0.0775338,-0.831089,-0.550708][0.278082,0.363807,0][1.80702,-3.37518,-2.53946][-0.0192064,1.01496,-0.00856407][0.263659,0.368601,0][-0.477227,-3.66421,2.18926][0.167401,0.885306,-0.433832][0.223954,0.743637,0][-1.2478,-3.65286,1.5834][0.384748,0.875395,-0.292665][0.203469,0.739334,0][-1.73421,-3.25369,1.92801][0.54751,0.760938,-0.348147][0.203552,0.727742,0][-1.80096,-2.76189,2.63424][0.554734,0.642667,-0.52844][0.0879863,0.633083,0][-0.373056,-2.79647,3.36787][0.211134,0.630418,-0.746991][0.122633,0.633035,0][-1.09488,-3.27314,2.53589][0.338401,0.775031,-0.533678][0.100822,0.646986,0][0.85129,0.594256,4.16822][-0.169624,-0.23952,-0.955959][0.367131,0.633689,0][0.153911,0.572962,4.2292][0.0270094,-0.285025,-0.95814][0.352078,0.633903,0][0.801441,1.27617,3.93194][-0.107939,-0.431471,-0.895646][0.366295,0.618959,0][1.56961,-0.0903031,4.06929][-0.375406,-0.0504885,-0.925484][0.382388,0.64871,0][0.879796,-0.11972,4.27129][-0.183765,-0.0513598,-0.981627][0.367495,0.649103,0][0.85129,0.594256,4.16822][-0.169624,-0.23952,-0.955959][0.367131,0.633689,0][-3.00877,0.646454,-1.24674][0.836601,-0.24421,0.490367][0.381335,0.879047,0][-3.30088,0.645393,-0.606071][0.915149,-0.24502,0.320105][0.38394,0.892663,0][-3.39786,-0.0691873,-0.653317][0.943082,-0.0517203,0.328513][0.369076,0.893338,0][-3.39786,-0.0691873,-0.653317][0.943082,-0.0517203,0.328513][0.369076,0.893338,0][-3.56626,-0.0688231,0.0442792][0.988932,-0.0506049,0.139474][0.371403,0.908222,0][-3.53367,-0.788237,0.0399884][0.980653,0.139426,0.137405][0.356074,0.909883,0][-3.83269,-0.0878661,2.44893][-0.915197,0.0405994,0.400958][0.334116,0.463544,0][-3.79399,-0.926811,2.42413][-0.905635,-0.141692,0.399685][0.316132,0.46408,0][-3.52898,-0.968311,3.24738][-0.867029,-0.145175,0.47664][0.314285,0.446316,0][-3.52898,-0.968311,3.24738][-0.867029,-0.145175,0.47664][0.314285,0.446316,0][-3.3586,-1.81648,3.12777][-0.836483,-0.322076,0.443354][0.295626,0.448897,0][-2.82305,-1.87208,3.75069][-0.582752,-0.328325,0.743372][0.292495,0.435456,0][-2.09209,0.411748,-2.35537][0.55078,0.627368,-0.00558207][0.15282,0.704619,0][-2.54689,0.832546,-1.78661][2.76184,0.064189,0.664701][0.156685,0.686887,0][-2.66253,-0.0653504,-1.89899][0.727519,-0.045467,0.684579][0.171134,0.700254,0][-2.68988,0.996823,-2.46917][1.36861,-0.00977817,-0.28906][0.0969177,0.273924,0][-2.54689,0.832546,-1.78661][2.76184,0.064189,0.664701][0.103186,0.287842,0][-2.09209,0.411748,-2.35537][0.55078,0.627368,-0.00558207][0.0871974,0.285115,0][0.810369,-0.152942,-3.88974][0.476304,0.1788,-1.25868][0.346492,0.179976,0][0.419449,0.824439,-3.8234][-0.328992,-1.41758,-0.0975165][0.339239,0.158452,0][0.785706,0.775299,-3.76721][1.15964,-0.0646017,-0.032417][0.347071,0.159949,0][0.598203,1.53697,-3.57598][0.226671,0.397234,-0.889284][0.343943,0.143315,0][0.785706,0.775299,-3.76721][1.15964,-0.0646017,-0.032417][0.347071,0.159949,0][0.419449,0.824439,-3.8234][-0.328992,-1.41758,-0.0975165][0.339239,0.158452,0][2.12552,2.9159,-1.88309][0.559864,0.690978,-0.457276][0.0560708,0.525573,0][2.65747,1.79374,-2.55097][0.303706,0.236699,-0.155802][0.0429702,0.498116,0][1.89535,2.22965,-2.73014][0.299795,0.556717,-0.774719][0.061809,0.502246,0][2.01312,1.80464,-2.91842][0.282276,-2.59671,0.106814][0.188572,0.268533,0][2.65747,1.79374,-2.55097][0.303706,0.236699,-0.155802][0.20416,0.265962,0][2.56257,1.79565,-1.51661][-0.988608,-1.34602,0.598864][0.2168,0.284466,0][3.06317,-0.145346,-1.97581][-0.740237,-0.0874267,0.666637][0.302105,0.77649,0][3.46688,-0.168114,-1.41009][-0.859492,-0.0915512,0.502883][0.314127,0.773608,0][3.08028,0.919101,-1.51875][-2.23314,-0.497773,0.352073][0.313666,0.798246,0][3.66469,0.513725,-0.705833][-0.90707,-0.249739,0.338901][0.330332,0.786187,0][3.08028,0.919101,-1.51875][-2.23314,-0.497773,0.352073][0.313666,0.798246,0][3.46688,-0.168114,-1.41009][-0.859492,-0.0915512,0.502883][0.314127,0.773608,0][-2.68988,0.996823,-2.46917][1.36861,-0.00977817,-0.28906][0.184356,0.500049,0][-3.12205,-0.140557,-2.26451][-0.738942,0.0482543,-0.672039][0.197728,0.481146,0][-3.7755,-0.146231,-1.67514][-0.802406,0.0487193,-0.594787][0.216024,0.485644,0][-3.7755,-0.146231,-1.67514][-0.802406,0.0487193,-0.594787][0.332666,0.552531,0][-3.73485,-1.01717,-1.663][-0.790429,-0.139544,-0.596448][0.313995,0.552269,0][-4.10954,-1.02724,-0.886387][-0.960195,-0.141901,-0.240603][0.315144,0.535512,0][-1.40867,1.48009,4.4588][-0.421478,0.422198,0.802561][0.52531,0.363685,0][-1.49969,0.659321,4.73083][-0.437003,0.233095,0.868732][0.507559,0.365242,0][-0.68113,0.645088,4.96101][-0.0794947,0.236255,0.968434][0.507657,0.347578,0][-1.53099,-0.202149,4.84664][-0.444701,0.0420573,0.894691][0.488961,0.365491,0][-1.51168,-1.07427,4.80373][-0.445865,-0.144927,0.88329][0.470157,0.364643,0][-0.678955,-1.08898,5.0408][-0.0900977,-0.14335,0.985562][0.470252,0.346673,0][0.161693,0.606734,4.87659][-0.00517929,0.235814,0.971784][0.507247,0.329377,0][0.176537,-0.226114,4.99901][-0.00570034,0.0487583,0.998794][0.489289,0.328645,0][1.04617,-0.200223,5.09345][0.0910755,0.0494113,0.994617][0.490277,0.309899,0][1.04617,-0.200223,5.09345][0.0910755,0.0494113,0.994617][0.490277,0.309899,0][1.04049,-1.07111,5.05524][0.0978432,-0.137997,0.985588][0.471488,0.30959,0][1.86484,-1.02159,4.80364][0.480271,-0.137546,0.866268][0.472964,0.291832,0][4.12951,1.41399,-0.806189][0.890754,0.41756,-0.179447][0.455469,0.514938,0][4.39625,0.599303,-0.929008][0.947212,0.243669,-0.208362][0.472404,0.522355,0][4.04945,0.640775,-1.69642][0.796514,0.253055,-0.549116][0.465937,0.537748,0][4.13313,-1.08872,-1.78044][0.803616,-0.145138,-0.577179][0.50121,0.549351,0][4.1644,-0.214344,-1.79529][0.813008,0.0679194,-0.578278][0.483307,0.544749,0][4.5146,-0.258058,-1.0083][0.972229,0.0543466,-0.227635][0.489944,0.528964,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.306715,0.21035,0][-0.147464,-1.83723,-3.72766][-0.539444,-0.402461,-2.07419][0.32384,0.215117,0][-0.291526,-2.27687,-3.60482][-0.290085,-1.26226,-0.0420157][0.32021,0.224416,0][-0.248266,-2.31187,-2.85213][-0.353244,-1.53993,-0.0523712][0.736489,0.106425,0][-0.291526,-2.27687,-3.60482][-0.290085,-1.26226,-0.0420157][0.720225,0.106131,0][-0.147464,-1.83723,-3.72766][-0.539444,-0.402461,-2.07419][0.717247,0.0974094,0][2.34178,-0.238315,-3.49488][0.338448,0.0747115,-0.938015][0.379382,0.183649,0][2.32581,-1.10987,-3.46431][0.333904,-0.154059,-0.929932][0.377995,0.202406,0][1.47741,-1.04911,-3.60215][0.255411,-0.128559,-0.958247][0.35979,0.200082,0][1.40922,-1.59528,-3.48035][0.0594714,-2.74806,0.0522794][0.708463,0.0545958,0][2.34385,-1.80534,-3.24544][-0.799068,-0.526853,-0.00359727][0.688697,0.0540129,0][1.84086,-1.67744,-2.58338][-0.574905,-2.5798,0.0615733][0.695407,0.0377725,0][-2.32132,-3.25174,-1.57255][-0.575183,-0.63885,-0.510916][0.221611,0.178168,0][-2.691,-2.55963,-1.892][-0.652126,-0.486328,-0.581564][0.222246,0.196154,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.206623,0.19695,0][-2.45516,-1.86283,-2.80051][-0.665891,-0.316244,-0.675706][0.274092,0.212906,0][-1.76025,-1.83993,-3.26482][1.28219,-2.20229,0.202326][0.289091,0.213245,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.277616,0.230178,0][-0.389174,-3.42716,-1.43441][0.0846336,2.65283,0.900071][0.165351,0.79547,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][1.71445e-005,-3.38313,-1.5642][-0.0627875,3.73129,0.961664][0.168555,0.803763,0][-0.389174,-3.42716,-1.43441][0.0846336,2.65283,0.900071][0.711815,0.139814,0][1.71445e-005,-3.38313,-1.5642][-0.0627875,3.73129,0.961664][0.703757,0.136057,0][-0.134386,-3.36433,-2.83859][-0.00733349,-0.754838,-0.741609][0.709705,0.109066,0][4.76574,-0.301386,0.708504][0.997404,0.045231,-0.056029][0.501557,0.493739,0][4.72354,-1.17294,0.706007][0.987783,-0.145985,-0.0545306][0.519264,0.498676,0][4.50978,-1.14541,-0.134556][0.978944,-0.146002,-0.142658][0.513131,0.515799,0][4.72354,-1.17294,0.706007][0.987783,-0.145985,-0.0545306][0.519264,0.498676,0][4.76574,-0.301386,0.708504][0.997404,0.045231,-0.056029][0.501557,0.493739,0][4.64246,-0.250313,1.57108][0.944528,0.0417294,0.32577][0.505023,0.475388,0][0.149272,2.13714,4.16801][-0.00937697,0.573501,0.819151][0.540254,0.330403,0][0.175522,2.7799,3.61073][-0.0104632,0.711319,0.702791][0.554133,0.330154,0][-0.422068,2.89058,3.66571][-0.00211382,0.71614,0.697953][0.556225,0.3431,0][-0.1241,3.74176,2.22428][0.167998,0.967631,0.188329][0.489819,0.135881,0][-0.273785,3.44232,2.98762][0.0642918,0.855873,0.513175][0.480779,0.121465,0][0.195019,3.30896,2.94482][-0.00199119,0.855021,0.518589][0.490101,0.119485,0][3.53715,0.573195,2.03459][-0.890278,-0.219395,-0.399087][0.389422,0.783387,0][3.76997,0.537164,1.36569][-0.949763,-0.222856,-0.21974][0.374908,0.782883,0][3.8693,-0.178949,1.36068][-0.971923,-0.0410872,-0.231684][0.373608,0.767345,0][3.32556,1.25848,1.95807][-0.829496,-0.398842,-0.390976][0.38895,0.798813,0][3.54332,1.22602,1.33433][-0.897961,-0.411747,-0.155337][0.375417,0.798365,0][3.76997,0.537164,1.36569][-0.949763,-0.222856,-0.21974][0.374908,0.782883,0][0.776539,2.91056,3.6821][-0.0398005,0.717402,0.695522][0.495714,0.101025,0][0.665155,3.45231,3.00009][-0.102101,0.856178,0.506493][0.499772,0.115176,0][0.195019,3.30896,2.94482][-0.00199119,0.855021,0.518589][0.490101,0.119485,0][1.83391,2.81538,3.16399][0.379124,0.710786,0.592494][0.555719,0.294398,0][2.10726,2.1927,3.6191][0.448108,0.565613,0.692301][0.542422,0.288193,0][2.75197,2.27641,3.29716][0.48192,0.564307,0.670306][0.544546,0.274327,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.68208,-4.15279,1.46065][-0.252856,-0.963234,0.0907978][0.377262,0.346721,0][-1.88423,-4.28503,1.11074][-0.187565,-0.956344,0.224111][0.376482,0.355623,0][-2.59441,-3.9551,1.27612][-0.510404,-0.812213,0.282485][0.3897,0.361221,0][-1.88423,-4.28503,1.11074][-0.187565,-0.956344,0.224111][0.376482,0.355623,0][-1.68208,-4.15279,1.46065][-0.252856,-0.963234,0.0907978][0.377262,0.346721,0][-0.105054,4.28898,0.759847][0.0557934,-0.892554,0.827024][0.500684,0.615009,0][-0.798101,4.35106,0.853967][0.0472788,-1.04725,1.03886][0.485575,0.61613,0][-0.823515,4.06733,0.569099][0.0548669,-1.04619,1.00904][0.485757,0.607439,0][-0.105054,4.28898,0.378351][0.301507,1.42618,-1.53025][0.485575,0.597949,0][-0.798101,4.35106,0.284231][0.232641,1.02218,-1.03886][0.500684,0.596828,0][-0.772687,4.63479,0.569099][0.22758,1.02375,-1.05941][0.500503,0.605519,0][1.05631,3.25278,-0.569244][-0.250275,-0.928686,0.273688][0.190209,0.886985,0][1.59595,3.24462,0.355543][-0.377019,-0.92272,0.0802779][0.211984,0.879563,0][0.879983,3.4492,0.296067][-0.18541,-0.97955,0.0781329][0.207955,0.893534,0][1.5749,3.24568,0.887598][-0.367293,-0.923281,-0.11246][0.223168,0.882194,0][0.965479,3.24116,1.72099][-0.174533,-0.927163,-0.331521][0.238337,0.89837,0][0.859001,3.44698,0.828179][-0.171269,-0.980183,-0.0995447][0.219138,0.896175,0][3.32556,1.25848,1.95807][-0.829496,-0.398842,-0.390976][0.38895,0.798813,0][2.55058,1.29331,3.03918][-0.64835,-0.416328,-0.637427][0.412482,0.800579,0][2.70547,1.90716,2.33444][-0.669778,-0.553362,-0.495165][0.398275,0.814198,0][1.84154,1.92291,3.1479][-0.451887,-0.581471,-0.676528][0.113585,0.892154,0][2.70547,1.90716,2.33444][-0.669778,-0.553362,-0.495165][0.0977212,0.873322,0][2.55058,1.29331,3.03918][-0.64835,-0.416328,-0.637427][0.115628,0.871842,0][-4.26641,0.705189,0.833051][-0.970234,0.235025,-0.0583957][0.352561,0.498411,0][-4.39203,-0.165153,0.812912][-0.997558,0.0474116,-0.0512766][0.334507,0.498845,0][-4.26728,-0.131205,1.68077][-0.946835,0.0397163,0.319258][0.334775,0.480119,0][-4.39203,-0.165153,0.812912][-0.997558,0.0474116,-0.0512766][0.334507,0.498845,0][-4.26641,0.705189,0.833051][-0.970234,0.235025,-0.0583957][0.352561,0.498411,0][-4.06481,0.672269,0.0170299][-0.962345,0.237321,-0.132551][0.351127,0.516018,0][-0.477227,-3.66421,2.18926][0.167401,0.885306,-0.433832][0.223954,0.743637,0][0.814502,-3.65529,2.16774][-0.209966,0.883874,-0.417948][0.241087,0.765159,0][0.163038,-3.92573,1.64146][0.00507077,0.959264,-0.282465][0.222886,0.760928,0][0.814502,-3.65529,2.16774][-0.209966,0.883874,-0.417948][0.241087,0.765159,0][1.74868,-3.646,1.24592][-0.395549,0.89302,-0.214606][0.238393,0.793168,0][0.740658,-3.9188,1.45363][-0.18429,0.958614,-0.217017][0.227587,0.773006,0][4.24822,1.43333,1.54378][0.865694,0.398415,0.303051][0.468962,0.46606,0][4.52194,0.61098,1.58081][0.921612,0.221322,0.318821][0.486996,0.470202,0][4.64326,0.561965,0.741793][0.971123,0.23107,-0.0593929][0.483616,0.488049,0][4.52194,0.61098,1.58081][0.921612,0.221322,0.318821][0.486996,0.470202,0][4.24822,1.43333,1.54378][0.865694,0.398415,0.303051][0.468962,0.46606,0][3.84164,1.40827,2.22838][0.840937,0.392694,0.372313][0.471975,0.451568,0][-0.823515,4.06733,0.569099][0.0548669,-1.04619,1.00904][0.472247,0.600606,0][-0.251803,4.11062,0.569099][0.12126,-1.60153,1.40429][0.460254,0.603411,0][-0.105054,4.28898,0.759847][0.0557934,-0.892554,0.827024][0.455645,0.600262,0][0.0897131,3.6198,0.671592][-0.271165,-0.12141,0.322146][0.457209,0.605334,0][-0.105054,4.28898,0.759847][0.0557934,-0.892554,0.827024][0.472247,0.605332,0][-0.251803,4.11062,0.569099][0.12126,-1.60153,1.40429][0.469437,0.609448,0][-0.772687,4.63479,0.569099][0.22758,1.02375,-1.05941][0.462886,0.632627,0][0.0416948,4.46735,0.569099][0.165301,0.803969,-0.878957][0.480824,0.632435,0][-0.105054,4.28898,0.378351][0.301507,1.42618,-1.53025][0.478545,0.636867,0][0.0897131,3.6198,0.466605][0.243201,0.0410466,-0.225485][0.500684,0.624378,0][-0.105054,4.28898,0.378351][0.301507,1.42618,-1.53025][0.485744,0.626282,0][0.0416948,4.46735,0.569099][0.165301,0.803969,-0.878957][0.482484,0.622166,0][1.64585,-3.85862,2.85826][0.311211,-0.822192,0.476601][0.338439,0.279159,0][1.97368,-3.26948,3.37904][0.417722,-0.644175,0.64074][0.338009,0.264696,0][1.45779,-3.39323,3.80102][0.425958,-0.64871,0.630662][0.352613,0.264387,0][1.25875,-4.16088,2.27327][0.147505,-0.967632,0.204771][0.3382,0.294855,0][1.64585,-3.85862,2.85826][0.311211,-0.822192,0.476601][0.338439,0.279159,0][1.22648,-4.00443,3.20755][0.37749,-0.819887,0.430448][0.350523,0.2789,0][0.169458,-2.21154,3.83911][0.0550603,0.496625,-0.866217][0.351435,0.693983,0][0.791056,-2.1951,3.78828][-0.195101,0.504719,-0.840949][0.364852,0.693847,0][0.169089,-2.79261,3.42631][-0.0294075,0.659388,-0.751227][0.351223,0.706519,0][0.170102,-3.28236,2.90927][0.000401124,0.799937,-0.600083][0.245582,0.745454,0][-1.09488,-3.27314,2.53589][0.338401,0.775031,-0.533678][0.222277,0.729841,0][-0.373056,-2.79647,3.36787][0.211134,0.630418,-0.746991][0.246997,0.731611,0][2.85925,-2.19422,2.41601][-0.705737,0.512532,-0.489129][0.0564519,0.814428,0][1.94732,-2.16952,3.31387][-0.491964,0.489053,-0.720276][0.031992,0.822138,0][3.10014,-1.54366,2.56902][-0.749941,0.321026,-0.578386][0.0539878,0.799483,0][3.10014,-1.54366,2.56902][-0.749941,0.321026,-0.578386][0.397597,0.739201,0][3.44921,-1.55979,1.96483][-0.849938,0.363944,-0.380985][0.384475,0.738589,0][2.85925,-2.19422,2.41601][-0.705737,0.512532,-0.489129][0.393314,0.726531,0][-0.750863,-1.72513,-2.79209][0.450586,0.386018,1.26189][0.667423,0.107158,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.652438,0.107147,0][-1.05505,-2.11064,-3.32747][-0.341627,-1.48973,-0.0508353][0.655296,0.0972259,0][-0.291526,-2.27687,-3.60482][-0.290085,-1.26226,-0.0420157][0.32021,0.224416,0][-1.05505,-2.11064,-3.32747][-0.341627,-1.48973,-0.0508353][0.30396,0.219921,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.306715,0.21035,0][1.23557,-2.76906,3.22395][-0.295844,0.650883,-0.699162][0.37424,0.706386,0][0.169089,-2.79261,3.42631][-0.0294075,0.659388,-0.751227][0.351223,0.706519,0][0.791056,-2.1951,3.78828][-0.195101,0.504719,-0.840949][0.364852,0.693847,0][2.10747,-1.50672,3.55423][-0.564745,0.311802,-0.764096][0.0271869,0.807673,0][3.10014,-1.54366,2.56902][-0.749941,0.321026,-0.578386][0.0539878,0.799483,0][1.94732,-2.16952,3.31387][-0.491964,0.489053,-0.720276][0.031992,0.822138,0][3.52382,-1.04789,-2.35402][0.749314,-0.140576,-0.647122][0.156596,0.368412,0][3.36779,-1.87193,-2.20868][0.708703,-0.344914,-0.615447][0.173805,0.37347,0][2.90648,-1.9416,-2.86358][0.64307,-0.362476,-0.674591][0.169768,0.390344,0][2.72584,-2.37706,-2.72442][-1.73755,-1.1758,-0.0163178][0.385097,0.230186,0][2.34385,-1.80534,-3.24544][-0.799068,-0.526853,-0.00359727][0.377551,0.217411,0][2.90648,-1.9416,-2.86358][0.64307,-0.362476,-0.674591][0.38951,0.22102,0][-3.72339,0.743229,2.42073][-0.892227,0.226861,0.390468][0.351394,0.464153,0][-3.83269,-0.0878661,2.44893][-0.915197,0.0405994,0.400958][0.334116,0.463544,0][-3.56647,-0.0970874,3.28102][-0.872093,0.0389061,0.487791][0.332951,0.44559,0][-4.14642,0.737681,1.67722][-0.924245,0.224724,0.308658][0.352815,0.480196,0][-3.8654,1.57146,1.64032][-0.860404,0.412102,0.299796][0.369526,0.480992,0][-3.97754,1.54337,0.853113][-0.908841,0.411532,-0.0681944][0.369336,0.497978,0][-3.25324,-2.65384,-1.37277][-0.681983,-0.497126,-0.536437][0.277433,0.546006,0][-2.8067,-3.36567,-1.11952][-0.583633,-0.648457,-0.488748][0.260669,0.540542,0][-3.09123,-3.36411,-0.520171][-0.745948,-0.654232,-0.124668][0.261737,0.52761,0][-1.80283,-4.29184,-0.0712322][-0.278599,-0.954793,0.103693][0.359654,0.374862,0][-2.49079,-3.97106,-0.319614][-0.572417,-0.819221,-0.0348809][0.367106,0.387291,0][-2.25448,-3.97795,-0.807595][-0.404322,-0.820071,-0.404979][0.356743,0.392628,0][-1.31905,-3.65936,-0.293752][0.408347,0.88702,0.215519][0.171232,0.763904,0][-1.51969,-3.64757,0.98444][0.481217,0.87208,-0.0889189][0.18983,0.743105,0][-0.884603,-3.92758,0.4321][0.285523,0.957267,0.0460048][0.188574,0.760322,0][-0.472522,-3.92835,-0.256418][0.177471,0.960941,0.21236][0.18268,0.776531,0][0.0918773,-3.91902,-0.488193][0.0266728,0.954268,0.297761][0.186476,0.789002,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][3.41129,-2.70486,2.85229][0.760428,-0.490457,0.425678][0.20494,0.0835229,0][2.99572,-3.41811,2.56613][0.671606,-0.65917,0.338291][0.203847,0.064703,0][3.21226,-3.3116,1.94394][0.670579,-0.65579,0.346789][0.216943,0.0636638,0][3.66553,-2.63516,2.13343][0.779162,-0.48794,0.393474][0.553718,0.476224,0][3.98433,-1.8716,2.24853][0.853779,-0.307567,0.420075][0.539841,0.469823,0][3.70671,-1.89813,3.03386][0.82365,-0.309621,0.475116][0.543913,0.453368,0][-0.580851,-2.733,4.4917][-0.0553055,-0.489242,0.870393][0.434836,0.343743,0][-0.487277,-3.43991,4.01386][-0.00916173,-0.643692,0.76523][0.419633,0.341374,0][0.168648,-3.31485,3.9437][0.00765018,-0.643206,0.765655][0.422656,0.327287,0][-0.487277,-3.43991,4.01386][-0.00916173,-0.643692,0.76523][0.419633,0.341374,0][-0.580851,-2.733,4.4917][-0.0553055,-0.489242,0.870393][0.434836,0.343743,0][-1.30721,-2.72212,4.27749][-0.42738,-0.48721,0.761559][0.434711,0.359417,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.382431,0.110789,0][0.249599,-2.75547,-3.28065][-0.9396,-0.0580783,0.00340585][0.395028,0.110679,0][0.576251,-2.74454,-3.29737][-0.0126256,0.804171,-0.0135452][0.394872,0.117729,0][0.254266,-2.77128,-2.26251][-2.42751,-0.154908,0.0133374][0.697915,0.120209,0][0.576251,-2.74454,-3.29737][-0.0126256,0.804171,-0.0135452][0.693596,0.0972259,0][0.249599,-2.75547,-3.28065][-0.9396,-0.0580783,0.00340585][0.700495,0.0983915,0][-2.19437,-1.03607,4.28352][-0.525174,-0.147466,0.83812][0.470643,0.379389,0][-2.22164,-0.19734,4.32153][-0.52166,0.0380939,0.852303][0.488723,0.380392,0][-3.00119,-0.155528,3.94217][-0.610908,0.0333892,0.790997][0.489239,0.397229,0][-1.51168,-1.07427,4.80373][-0.445865,-0.144927,0.88329][0.470157,0.364643,0][-1.43829,-1.92518,4.60844][-0.440067,-0.322189,0.838174][0.451838,0.362639,0][-0.644883,-1.93863,4.83862][-0.0811128,-0.322498,0.943088][0.45194,0.345517,0][1.64202,1.78421,-2.26318][-0.252313,-2.71606,1.25731][0.0919029,0.669753,0][2.12379,1.83604,-1.91229][-0.585437,-1.84457,1.07627][0.104763,0.670566,0][1.7968,2.47581,-1.50261][-0.408672,-0.716942,0.564784][0.104384,0.688392,0][2.01312,1.80464,-2.91842][0.282276,-2.59671,0.106814][0.188572,0.268533,0][2.12379,1.83604,-1.91229][-0.585437,-1.84457,1.07627][0.204283,0.283718,0][1.64202,1.78421,-2.26318][-0.252313,-2.71606,1.25731][0.191414,0.284511,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][1.10603,-3.91103,0.00693724][-0.237453,0.961531,0.138111][0.208456,0.798876,0][0.680224,-3.9106,-0.391648][-0.138622,0.957354,0.253491][0.19606,0.797357,0][0.680224,-3.9106,-0.391648][-0.138622,0.957354,0.253491][0.19606,0.797357,0][1.10603,-3.91103,0.00693724][-0.237453,0.961531,0.138111][0.208456,0.798876,0][1.69086,-3.64785,-0.342411][-0.373796,0.895959,0.239863][0.211157,0.814008,0][0.879983,3.4492,0.296067][-0.18541,-0.97955,0.0781329][0.207955,0.893534,0][0.26209,3.44469,-0.198071][0.00202326,-0.982522,0.186135][0.194974,0.904411,0][1.05631,3.25278,-0.569244][-0.250275,-0.928686,0.273688][0.190209,0.886985,0][-0.217024,3.23634,-0.838384][0.104555,-0.926756,0.36082][0.17932,0.912515,0][0.577173,3.25148,-0.827196][-0.0969187,-0.923796,0.370414][0.182796,0.895928,0][0.26209,3.44469,-0.198071][0.00202326,-0.982522,0.186135][0.194974,0.904411,0][-2.66298,-2.14718,-1.07076][0.751173,0.51215,0.416463][0.321486,0.889718,0][-2.14648,-2.42854,-1.4593][2.18026,-0.903557,-0.0169461][0.312721,0.882283,0][-2.50521,-1.48869,-1.77708][0.695942,0.328204,0.638708][0.333097,0.873049,0][-2.50521,-1.48869,-1.77708][0.695942,0.328204,0.638708][0.154725,0.625413,0][-1.93961,-1.91437,-2.05969][1.32067,-1.21719,0.121371][0.166419,0.615587,0][-2.09818,-0.78767,-2.38582][0.607961,0.134504,0.782491][0.164306,0.640046,0][1.37894,3.76031,1.81937][-0.0774477,0.956712,0.280542][0.522997,0.134551,0][1.91074,3.47055,2.40236][0.196239,0.85613,0.478049][0.528983,0.119464,0][2.22208,3.47022,2.05539][0.49495,0.853928,0.160726][0.537553,0.124606,0][1.48917,3.32943,2.60169][0.272547,0.859196,0.433012][0.518648,0.118222,0][1.08932,3.61511,1.95704][0.547695,5.82811,0.925456][0.515725,0.133735,0][0.832961,3.75148,2.14828][0.228235,0.971365,0.0660189][0.509755,0.131296,0][4.1615,-1.05383,2.30643][0.894356,-0.131955,0.427452][0.524027,0.464168,0][4.1955,-0.214441,2.32897][0.906042,0.0384041,0.421441][0.507065,0.458988,0][3.90165,-0.165251,3.1624][0.867897,0.0392079,0.495194][0.509804,0.441089,0][4.60402,-1.12255,1.55964][0.93369,-0.133801,0.332144][0.522706,0.480519,0][4.40488,-1.97317,1.54339][0.887388,-0.314394,0.337194][0.539355,0.485471,0][4.51616,-2.02011,0.730016][0.941031,-0.333696,-0.0557432][0.536045,0.502764,0][-1.78952,2.94609,-1.92064][-0.536472,0.699311,-0.4724][0.167508,0.544109,0][-2.26892,1.87686,-2.52528][-0.187848,0.244696,-0.283773][0.173409,0.516276,0][-2.53601,2.20917,-1.74475][-0.624672,0.551455,-0.552885][0.185409,0.530517,0][-2.26892,1.87686,-2.52528][-0.187848,0.244696,-0.283773][0.0974354,0.120369,0][-2.19081,1.84529,-1.49616][0.113063,-2.89537,-0.0458979][0.109677,0.101778,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.10991,0.115381,0][3.03007,1.42866,-2.32033][-2.04576,-0.252091,-0.0321276][0.104485,0.35685,0][2.90342,2.1344,-1.76871][2.08727,1.90135,-2.04943][0.0929295,0.344365,0][3.419,2.20004,-1.2776][0.651161,0.596628,-0.469067][0.0962486,0.329598,0][2.65747,1.79374,-2.55097][0.303706,0.236699,-0.155802][0.0429702,0.498116,0][2.90342,2.1344,-1.76871][2.08727,1.90135,-2.04943][0.035159,0.515038,0][2.89875,1.71422,-2.02303][-0.694191,-2.46917,-0.0638092][0.0342644,0.504664,0][0.638794,3.6286,-1.01309][0.030598,0.986881,-0.158526][0.525961,0.197714,0][0.429492,3.5862,-0.244703][-0.00360265,0.999269,-0.0380684][0.51657,0.183295,0][0.959084,3.77235,-0.945444][-0.118313,0.971251,-0.206577][0.532515,0.194111,0][0.836832,3.35303,-1.72024][0.142994,0.855164,-0.498244][0.533622,0.211295,0][0.638794,3.6286,-1.01309][0.030598,0.986881,-0.158526][0.525961,0.197714,0][0.959084,3.77235,-0.945444][-0.118313,0.971251,-0.206577][0.532515,0.194111,0][1.89535,2.22965,-2.73014][0.299795,0.556717,-0.774719][0.061809,0.502246,0][1.61527,2.92267,-2.21875][0.227064,0.704316,-0.672593][0.0682999,0.520665,0][2.12552,2.9159,-1.88309][0.559864,0.690978,-0.457276][0.0560708,0.525573,0][1.23629,3.76992,-0.759967][0.267675,0.963372,0.0162606][0.536921,0.18852,0][1.70239,3.48304,-1.34917][0.45754,0.846627,-0.27181][0.549211,0.197967,0][1.30053,3.48965,-1.6189][0.104081,0.855344,-0.507498][0.54284,0.206086,0][-2.8584,2.33297,2.79256][-0.696709,0.60886,0.379324][0.425788,0.143272,0][-2.38206,2.96719,2.42079][-0.600964,0.745669,0.287784][0.440066,0.147169,0][-2.57208,2.86112,1.86046][-0.602108,0.740528,0.298472][0.439491,0.160032,0][-3.07929,2.2496,2.1317][-0.728013,0.597079,0.336888][0.381088,0.470389,0][-3.46935,1.53368,2.3248][-0.830309,0.418236,0.368327][0.367281,0.466223,0][-3.22857,1.58884,3.07258][-0.786742,0.429279,0.443573][0.367578,0.450088,0][3.54332,1.22602,1.33433][-0.897961,-0.411747,-0.155337][0.375417,0.798365,0][3.32556,1.25848,1.95807][-0.829496,-0.398842,-0.390976][0.38895,0.798813,0][3.00337,1.8922,1.82207][-0.770083,-0.558477,-0.308344][0.387145,0.813645,0][2.74364,2.43525,1.17619][-0.699392,-0.705399,-0.115161][0.374205,0.82717,0][2.66183,2.41752,-0.296985][-0.703195,-0.680491,0.206031][0.342505,0.829522,0][3.28043,1.84181,0.682856][-0.844063,-0.536095,0.0126173][0.362477,0.813452,0][-0.828389,2.22094,-2.88521][-0.258917,0.550924,-0.793375][0.141644,0.523607,0][-0.692312,2.83477,-2.36706][-0.217421,0.717773,-0.661461][0.142608,0.541122,0][-0.140797,2.95868,-2.59496][-0.192074,0.721525,-0.665214][0.129558,0.542689,0][-0.077658,3.4817,-1.91708][-0.217187,0.864554,-0.453184][0.516805,0.221068,0][-0.140797,2.95868,-2.59496][-0.192074,0.721525,-0.665214][0.518121,0.235993,0][-0.692312,2.83477,-2.36706][-0.217421,0.717773,-0.661461][0.505025,0.234977,0][0.171194,-2.63759,4.42443][-0.00571564,-0.490364,0.871499][0.437266,0.327567,0][0.175268,-1.87825,4.76669][-0.0101687,-0.319014,0.947695][0.453649,0.327855,0][-0.644883,-1.93863,4.83862][-0.0811128,-0.322498,0.943088][0.45194,0.345517,0][0.923484,-2.7075,4.50763][0.0716129,-0.500669,0.862671][0.436131,0.311304,0][0.825441,-3.41627,4.00231][0.0472193,-0.655335,0.753861][0.420793,0.313069,0][1.45779,-3.39323,3.80102][0.425958,-0.64871,0.630662][0.421603,0.299439,0][-1.18442,3.75366,1.55033][-0.241286,0.96696,-0.0822831][0.472744,0.156533,0][-1.81947,3.47912,2.00529][-0.468559,0.871995,0.141692][0.455954,0.151547,0][-1.51307,3.4668,2.35925][-0.193078,0.862307,0.468132][0.459821,0.142314,0][-1.09346,3.31855,2.56792][-0.245791,0.859383,0.448383][0.466458,0.135492,0][-0.686101,3.60428,1.93504][-0.487624,5.81739,0.999539][0.479828,0.145586,0][-0.974342,3.74957,1.79206][0.0596052,0.965994,0.251601][0.475417,0.150217,0][-3.579,-2.65797,-0.688025][-0.845835,-0.502525,-0.178975][0.278531,0.531232,0][-3.09123,-3.36411,-0.520171][-0.745948,-0.654232,-0.124668][0.261737,0.52761,0][-3.12779,-3.24081,0.139856][-0.754633,-0.645243,-0.119124][0.264493,0.513368,0][-3.6123,-2.56376,0.0666937][-0.859378,-0.495449,-0.12649][0.280656,0.514947,0][-3.95426,-1.81006,0.010581][-0.93674,-0.322544,-0.135954][0.29793,0.516157,0][-3.91876,-1.8708,-0.81312][-0.919533,-0.326351,-0.218983][0.296509,0.533931,0][3.09708,0.92863,-2.52952][0.451961,0.229621,-0.437329][0.113685,0.362943,0][3.54802,-0.206916,-2.37061][0.745345,0.0837381,-0.661399][0.139372,0.362666,0][3.06675,-0.215898,-3.05888][0.685243,0.0851221,-0.723323][0.133827,0.37992,0][3.09708,0.92863,-2.52952][0.451961,0.229621,-0.437329][0.0503568,0.454715,0][2.95176,0.718481,-2.91691][-1.9698,1.80624,-0.141748][0.0587982,0.451044,0][2.9258,0.758565,-1.84139][-0.865221,0.796526,-0.0505669][0.0436527,0.468632,0][-0.750014,-4.30983,-1.23544][0.0686136,-0.960862,-0.268397][0.326666,0.381288,0][-1.08994,-3.99322,-1.89673][-0.120841,-0.815176,-0.566467][0.322841,0.396318,0][-0.561135,-3.84655,-1.99829][-0.148859,-0.816944,-0.557174][0.312146,0.390914,0][-0.35723,-4.16369,-1.31391][-0.0512578,-0.966971,-0.24968][0.318575,0.377243,0][-0.561135,-3.84655,-1.99829][-0.148859,-0.816944,-0.557174][0.312146,0.390914,0][-0.0652976,-3.97818,-2.20371][-0.213146,-0.823856,-0.525195][0.301455,0.38833,0][-2.62832,1.34685,2.58991][0.720454,-0.435106,-0.540026][0.0455006,0.953451,0][-2.21051,1.3079,3.06581][0.576985,-0.439786,-0.688242][0.0341254,0.960199,0][-2.37769,0.631209,3.24428][0.653624,-0.239394,-0.71796][0.0263235,0.947552,0][-2.90982,-0.0342677,2.78241][0.815726,-0.04263,-0.576866][0.376478,0.967108,0][-2.44742,-0.0807074,3.31762][0.682912,-0.0419183,-0.729297][0.375138,0.978885,0][-2.4204,-0.801418,3.28779][0.684821,0.149501,-0.713211][0.359739,0.98,0][-1.5413,-3.9954,-1.61003][-0.463672,-0.816969,-0.342885][0.209394,0.159024,0][-1.93826,-3.37035,-2.11395][-0.556551,-0.65357,-0.512931][0.208146,0.178305,0][-1.44321,-3.19153,-2.58688][-0.0880624,-0.714982,-0.785464][0.193152,0.181061,0][-1.79001,-3.12667,-2.41751][1.68487,3.12243,-0.0250921][0.742773,0.122059,0][-1.80798,-3.15113,-0.843118][2.64493,2.87025,0.996407][0.739317,0.155857,0][-1.44321,-3.19153,-2.58688][-0.0880624,-0.714982,-0.785464][0.736103,0.117604,0][3.0121,-2.83447,0.105468][-0.718231,0.68185,0.138651][0.238368,0.831833,0][2.96751,-2.80598,1.1901][-0.735732,0.637422,-0.228893][0.255892,0.816298,0][3.46264,-2.26663,0.647965][-0.846229,0.5245,-0.0937852][0.254809,0.833378,0][2.85925,-2.19422,2.41601][-0.705737,0.512532,-0.489129][0.256019,0.70466,0][3.46264,-2.26663,0.647965][-0.846229,0.5245,-0.0937852][0.255393,0.666333,0][2.96751,-2.80598,1.1901][-0.735732,0.637422,-0.228893][0.26633,0.676856,0][-3.12205,-0.140557,-2.26451][-0.738942,0.0482543,-0.672039][0.197728,0.481146,0][-2.68988,0.996823,-2.46917][1.36861,-0.00977817,-0.28906][0.184356,0.500049,0][-2.53004,0.791738,-2.86136][0.817295,0.930943,-0.00828316][0.177948,0.492337,0][-2.09209,0.411748,-2.35537][0.55078,0.627368,-0.00558207][0.0871974,0.285115,0][-2.53004,0.791738,-2.86136][0.817295,0.930943,-0.00828316][0.0877213,0.270537,0][-2.68988,0.996823,-2.46917][1.36861,-0.00977817,-0.28906][0.0969177,0.273924,0][3.419,2.20004,-1.2776][0.651161,0.596628,-0.469067][0.434157,0.519615,0][2.92041,2.87128,-0.962832][0.55372,0.711165,-0.433172][0.420449,0.508791,0][3.17935,2.84737,-0.410328][0.710091,0.698554,-0.0882764][0.425016,0.497684,0][1.81114,3.75574,0.0457153][0.233714,0.960742,0.149509][0.543286,0.168273,0][2.5372,3.43103,-0.183896][0.546801,0.837262,0.000575204][0.558377,0.168697,0][2.3319,3.44441,-0.619738][0.383606,0.846135,-0.370002][0.557096,0.178965,0][-0.191856,2.89184,2.53071][0.113463,-0.842432,-0.526721][0.250537,0.927119,0][0.584195,2.89768,2.54146][-0.0882713,-0.853005,-0.514385][0.253925,0.910942,0][0.179274,2.43929,3.14332][0.0126608,-0.71334,-0.700704][0.264706,0.923515,0][-0.788621,2.44064,2.95297][0.238729,-0.724246,-0.646897][0.25674,0.94293,0][-1.61224,2.46406,2.42678][0.450556,-0.733493,-0.508907][0.242263,0.95787,0][-0.910031,2.89919,2.24389][0.256284,-0.858496,-0.444188][0.241548,0.940902,0][-1.83183,2.9214,0.238617][0.511786,-0.854896,0.0850215][0.195344,0.951794,0][-1.78897,2.92285,1.01311][0.474429,-0.870274,-0.132439][0.211923,0.954089,0][-2.41546,2.49836,0.683478][0.680787,-0.73177,-0.0322746][0.202099,0.967324,0][-2.28439,2.4874,-0.303052][0.661034,-0.711713,0.237695][0.18173,0.960557,0][-1.7977,2.46996,-1.17795][0.516645,-0.717392,0.467362][0.165167,0.94685,0][-1.58931,2.90809,-0.498427][0.44504,-0.859261,0.252211][0.180711,0.943738,0][0.577173,3.25148,-0.827196][-0.0969187,-0.923796,0.370414][0.182796,0.895928,0][-0.217024,3.23634,-0.838384][0.104555,-0.926756,0.36082][0.17932,0.912515,0][-0.40414,2.90781,-1.45042][0.162007,-0.841176,0.515923][0.165368,0.91507,0][-1.58931,2.90809,-0.498427][0.44504,-0.859261,0.252211][0.180711,0.943738,0][-1.09023,2.89764,-1.09105][0.341996,-0.828226,0.443938][0.170182,0.930912,0][-0.686264,3.22882,-0.593062][0.247836,-0.9317,0.265542][0.182602,0.92335,0][-0.853751,-2.17507,-2.80473][-0.418262,-1.82898,-0.0643849][0.616572,0.0463053,0][-0.248266,-2.31187,-2.85213][-0.353244,-1.53993,-0.0523712][0.62996,0.0467134,0][-0.145379,-1.86192,-2.83949][0.341491,0.597549,3.27831][0.629683,0.0566688,0][-0.147464,-1.83723,-3.72766][-0.539444,-0.402461,-2.07419][0.717247,0.0974094,0][-0.145379,-1.86192,-2.83949][0.341491,0.597549,3.27831][0.736418,0.0972259,0][-0.248266,-2.31187,-2.85213][-0.353244,-1.53993,-0.0523712][0.736489,0.106425,0][1.58309,-3.37673,-2.54142][-0.0148795,1.78642,-0.0347421][0.551954,0.0217485,0][1.80702,-3.37518,-2.53946][-0.0192064,1.01496,-0.00856407][0.556459,0.02,0][1.50964,-3.98886,-1.95733][0.0775338,-0.831089,-0.550708][0.557101,0.0393358,0][1.80702,-3.37518,-2.53946][-0.0192064,1.01496,-0.00856407][0.667985,0.110711,0][1.58309,-3.37673,-2.54142][-0.0148795,1.78642,-0.0347421][0.672726,0.11122,0][1.86384,-3.3428,-0.917229][-0.34569,5.17696,0.624401][0.662623,0.145327,0][-2.14648,-2.42854,-1.4593][2.18026,-0.903557,-0.0169461][0.312721,0.882283,0][-2.66298,-2.14718,-1.07076][0.751173,0.51215,0.416463][0.321486,0.889718,0][-2.20834,-2.58285,-1.1897][0.353761,0.335966,-0.0282743][0.310345,0.88841,0][-2.66174,-2.72939,0.166405][0.759337,0.640485,0.114829][0.312214,0.917648,0][-2.09166,-2.74751,-1.15552][1.82615,1.46338,0.232478][0.306528,0.889589,0][-2.66298,-2.14718,-1.07076][0.751173,0.51215,0.416463][0.321486,0.889718,0][2.72529,-3.31348,-1.6317][0.555446,-0.647177,-0.522151][0.204613,0.381349,0][3.09199,-2.64027,-1.95525][0.63101,-0.509404,-0.585092][0.190124,0.377776,0][3.6305,-2.75449,-1.43999][0.676482,-0.505883,-0.535215][0.197344,0.36356,0][3.20029,-3.46386,-1.17667][0.565709,-0.653693,-0.502651][0.258198,0.327443,0][2.6586,-4.04188,-0.873202][0.353312,-0.834963,-0.421908][0.273001,0.330503,0][2.27115,-3.87043,-1.24253][0.408612,-0.831649,-0.376027][0.274221,0.341459,0][-1.25213,-3.27081,-1.2791][0.539164,2.02488,0.565707][0.156627,0.779614,0][-1.80798,-3.15113,-0.843118][2.64493,2.87025,0.996407][0.156646,0.764844,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][-1.44321,-3.19153,-2.58688][-0.0880624,-0.714982,-0.785464][0.736103,0.117604,0][-1.80798,-3.15113,-0.843118][2.64493,2.87025,0.996407][0.739317,0.155857,0][-1.25213,-3.27081,-1.2791][0.539164,2.02488,0.565707][0.729093,0.145197,0][-0.370139,-0.100523,-3.87867][1.98679,-0.434652,0.0564347][0.321121,0.177434,0][-0.350159,0.833803,-3.76938][-1.01668,0.92527,-0.0400111][0.32267,0.157329,0][-0.183183,0.756675,-3.85844][1.75497,-0.430725,-0.0305403][0.326175,0.159191,0][-0.350159,0.833803,-3.76938][-1.01668,0.92527,-0.0400111][0.32267,0.157329,0][-0.195357,1.57409,-3.58047][-0.186344,0.391843,-0.900963][0.326891,0.141566,0][-0.183183,0.756675,-3.85844][1.75497,-0.430725,-0.0305403][0.326175,0.159191,0][-1.78395,2.15605,3.60735][-0.403115,0.589598,0.699909][0.374865,0.074288,0][-2.02535,1.42857,3.9796][-0.455426,0.421972,0.783917][0.378613,0.0562925,0][-1.40867,1.48009,4.4588][-0.421478,0.422198,0.802561][0.395028,0.0599516,0][-1.23619,2.23356,4.04009][-0.396547,0.590482,0.702909][0.541649,0.360337,0][-1.40867,1.48009,4.4588][-0.421478,0.422198,0.802561][0.52531,0.363685,0][-0.646217,1.46777,4.67478][-0.0648497,0.419346,0.905507][0.525421,0.347231,0][1.84086,-1.67744,-2.58338][-0.574905,-2.5798,0.0615733][0.248149,0.616318,0][2.32753,-1.77382,-2.23113][-1.99434,-1.25815,0.0070108][0.258523,0.613678,0][2.54269,-0.863903,-2.42718][-0.593186,0.130486,0.79442][0.264212,0.633035,0][3.04245,-0.865246,-1.9635][-0.733794,0.169402,0.657913][0.0465693,0.62522,0][2.54269,-0.863903,-2.42718][-0.593186,0.130486,0.79442][0.0569492,0.635597,0][2.32753,-1.77382,-2.23113][-1.99434,-1.25815,0.0070108][0.0428438,0.650547,0][-1.51969,-3.64757,0.98444][0.481217,0.87208,-0.0889189][0.18983,0.743105,0][-1.31905,-3.65936,-0.293752][0.408347,0.88702,0.215519][0.171232,0.763904,0][-2.03563,-3.24585,-0.195025][0.603677,0.771501,0.200899][0.16414,0.751949,0][-2.16711,-3.23663,0.68439][0.625832,0.778878,-0.0410318][0.300979,0.930183,0][-1.73421,-3.25369,1.92801][0.54751,0.760938,-0.348147][0.302104,0.957064,0][-1.51969,-3.64757,0.98444][0.481217,0.87208,-0.0889189][0.290691,0.937877,0][-0.0646989,3.22973,1.89874][0.093112,-0.923165,-0.372956][0.237905,0.920651,0][0.965479,3.24116,1.72099][-0.174533,-0.927163,-0.331521][0.238337,0.89837,0][1.30694,2.91028,2.27176][-0.266054,-0.843867,-0.465944][0.25116,0.894696,0][1.87234,2.91578,1.7505][-0.449569,-0.841283,-0.300217][0.242423,0.880723,0][1.30694,2.91028,2.27176][-0.266054,-0.843867,-0.465944][0.25116,0.894696,0][0.965479,3.24116,1.72099][-0.174533,-0.927163,-0.331521][0.238337,0.89837,0][3.93159,2.15761,0.77274][0.82262,0.561343,-0.0904996][0.44858,0.4777,0][3.36549,2.84763,0.779405][0.71105,0.6942,-0.111778][0.432485,0.473114,0][3.28124,2.87351,1.37363][0.65869,0.69853,0.279613][0.435065,0.460525,0][2.61736,3.44712,1.2147][0.455285,0.84833,0.270279][0.420064,0.459948,0][3.28124,2.87351,1.37363][0.65869,0.69853,0.279613][0.435065,0.460525,0][3.36549,2.84763,0.779405][0.71105,0.6942,-0.111778][0.432485,0.473114,0][-2.86192,-3.2163,2.00232][-0.715444,-0.625104,0.312067][0.264047,0.473181,0][-3.29498,-2.51488,2.20329][-0.802019,-0.480012,0.355463][0.280541,0.468845,0][-3.67733,-2.62534,1.54761][-0.806883,-0.488957,0.331454][0.279582,0.482993,0][-3.19793,-3.33611,1.43157][-0.701895,-0.63765,0.317405][0.0501371,0.230186,0][-2.59441,-3.9551,1.27612][-0.510404,-0.812213,0.282485][0.0456353,0.211777,0][-2.31976,-3.82385,1.74662][-0.549131,-0.805039,0.224429][0.057246,0.208632,0][2.12975,2.89781,-0.104801][-0.536046,-0.823454,0.185953][0.126768,0.708536,0][1.73059,2.91576,-0.784132][-0.446736,-0.835755,0.319282][0.111899,0.704354,0][2.15796,2.45631,-1.15655][-0.561349,-0.710182,0.424886][0.114848,0.689019,0][0.426702,2.48335,-2.07552][-0.0978229,-0.723807,0.683034][0.155212,0.896663,0][1.7968,2.47581,-1.50261][-0.408672,-0.716942,0.564784][0.172911,0.870451,0][1.44461,2.92601,-1.06033][-0.317606,-0.830702,0.457231][0.18116,0.87802,0][-1.42165,3.61329,0.329941][-0.179555,0.983543,-0.0200869][0.475387,0.183316,0][-2.16391,3.35427,0.231038][-0.490924,0.869468,-0.0549456][0.460081,0.190395,0][-2.27233,3.49831,0.688241][-0.470139,0.868413,-0.157569][0.455407,0.181526,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-1.41157,3.75224,0.00670533][-0.183412,0.972679,0.142319][0.478177,0.189748,0][-1.42165,3.61329,0.329941][-0.179555,0.983543,-0.0200869][0.475387,0.183316,0][3.71793,2.16773,-0.629627][0.807857,0.572577,-0.139723][0.439583,0.506607,0][3.17935,2.84737,-0.410328][0.710091,0.698554,-0.0882764][0.425016,0.497684,0][3.21359,2.72855,0.185956][0.714051,0.689825,-0.119468][0.430991,0.485985,0][3.75442,2.06118,0.0754813][0.819003,0.560148,-0.124371][0.445938,0.492577,0][4.16628,1.3205,-0.0135957][0.904442,0.405821,-0.131503][0.462059,0.499014,0][4.12951,1.41399,-0.806189][0.890754,0.41756,-0.179447][0.455469,0.514938,0][2.51617,-3.28834,0.629083][-0.588497,0.807948,-0.0298625][0.239329,0.815233,0][2.2712,-3.34731,-0.277232][-0.927368,1.23866,0.408662][0.220787,0.823483,0][1.69086,-3.64785,-0.342411][-0.373796,0.895959,0.239863][0.211157,0.814008,0][2.2712,-3.34731,-0.277232][-0.927368,1.23866,0.408662][0.220787,0.823483,0][2.51617,-3.28834,0.629083][-0.588497,0.807948,-0.0298625][0.239329,0.815233,0][3.0121,-2.83447,0.105468][-0.718231,0.68185,0.138651][0.238368,0.831833,0][0.170005,-1.56006,4.13409][0.0051103,0.323238,-0.946304][0.351676,0.679928,0][0.847966,-1.53992,4.0765][-0.186635,0.320062,-0.928832][0.36631,0.679731,0][0.791056,-2.1951,3.78828][-0.195101,0.504719,-0.840949][0.364852,0.693847,0][0.878877,-0.839762,4.23971][-0.189892,0.137164,-0.972176][0.367223,0.664637,0][0.169078,-0.861795,4.30164][0.00525046,0.140113,-0.990122][0.351901,0.664863,0][0.163537,-0.14211,4.33429][0.00654398,-0.0489856,-0.998778][0.352035,0.649334,0][-1.05281,3.60223,-0.516893][-0.149626,0.981626,-0.118414][0.488339,0.198384,0][-1.62843,3.32934,-0.99942][-0.386189,0.864228,-0.322442][0.478859,0.212302,0][-1.96488,3.48006,-0.673054][-0.315806,0.862914,-0.39452][0.470436,0.20758,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-0.871845,3.74308,-0.784192][-0.248987,0.968299,0.020043][0.494236,0.202568,0][-1.05281,3.60223,-0.516893][-0.149626,0.981626,-0.118414][0.488339,0.198384,0][2.50939,-2.7941,-1.1244][-2.86467,1.5081,0.177633][0.211182,0.840571,0][3.0121,-2.83447,0.105468][-0.718231,0.68185,0.138651][0.238368,0.831833,0][3.42719,-2.27589,0.024868][-0.828421,0.531102,0.177899][0.243932,0.841321,0][3.46264,-2.26663,0.647965][-0.846229,0.5245,-0.0937852][0.254809,0.833378,0][3.42719,-2.27589,0.024868][-0.828421,0.531102,0.177899][0.243932,0.841321,0][3.0121,-2.83447,0.105468][-0.718231,0.68185,0.138651][0.238368,0.831833,0][3.23541,-0.843326,2.66005][-0.808655,0.140107,-0.571355][0.400658,0.753411,0][3.60128,-0.861384,2.02499][-0.899516,0.138752,-0.41427][0.386864,0.752749,0][3.44921,-1.55979,1.96483][-0.849938,0.363944,-0.380985][0.384475,0.738589,0][3.8693,-0.178949,1.36068][-0.971923,-0.0410872,-0.231684][0.373608,0.767345,0][3.63038,-0.141548,2.05026][-0.909944,-0.038581,-0.412932][0.388571,0.767866,0][3.53715,0.573195,2.03459][-0.890278,-0.219395,-0.399087][0.389422,0.783387,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.82995,-4.14999,0.328579][-0.261161,-0.964273,-0.0444044][0.364935,0.368041,0][-1.80283,-4.29184,-0.0712322][-0.278599,-0.954793,0.103693][0.359654,0.374862,0][-2.49079,-3.97106,-0.319614][-0.572417,-0.819221,-0.0348809][0.367106,0.387291,0][-1.80283,-4.29184,-0.0712322][-0.278599,-0.954793,0.103693][0.359654,0.374862,0][-1.82995,-4.14999,0.328579][-0.261161,-0.964273,-0.0444044][0.364935,0.368041,0][-1.19433,3.23477,0.319714][0.361158,-0.930428,0.0621959][0.199872,0.937701,0][-0.942847,3.23515,1.33495][0.30441,-0.928782,-0.211418][0.222397,0.936638,0][-1.46794,2.91275,1.71473][0.417673,-0.855521,-0.305995][0.228081,0.950318,0][-0.910031,2.89919,2.24389][0.256284,-0.858496,-0.444188][0.241548,0.940902,0][-1.46794,2.91275,1.71473][0.417673,-0.855521,-0.305995][0.228081,0.950318,0][-0.942847,3.23515,1.33495][0.30441,-0.928782,-0.211418][0.222397,0.936638,0][-3.43444,2.33256,1.52594][-0.753699,0.590344,0.288847][0.422346,0.173024,0][-2.87363,2.98384,1.34596][-0.612996,0.738926,0.279686][0.437149,0.172416,0][-2.96073,2.97538,0.752638][-0.683371,0.720775,-0.116134][0.439214,0.18519,0][-1.49616,3.75864,0.646457][-0.148468,0.966071,-0.211339][0.472321,0.177122,0][-2.27233,3.49831,0.688241][-0.470139,0.868413,-0.157569][0.455407,0.181526,0][-2.20428,3.49818,1.15447][-0.401348,0.876083,0.267205][0.453753,0.171498,0][-1.93961,-1.91437,-2.05969][1.32067,-1.21719,0.121371][0.166419,0.615587,0][-1.21636,-1.62891,-2.6553][0.40547,0.347367,1.13554][0.182333,0.620901,0][-1.48636,-0.78319,-2.78771][0.468451,0.142575,0.871909][0.177494,0.639435,0][-0.817697,-0.769827,-3.06045][0.260708,0.148547,0.953921][0.191917,0.638949,0][-1.48636,-0.78319,-2.78771][0.468451,0.142575,0.871909][0.177494,0.639435,0][-1.21636,-1.62891,-2.6553][0.40547,0.347367,1.13554][0.182333,0.620901,0][2.70547,1.90716,2.33444][-0.669778,-0.553362,-0.495165][0.0977212,0.873322,0][1.84154,1.92291,3.1479][-0.451887,-0.581471,-0.676528][0.113585,0.892154,0][1.99969,2.46521,2.45039][-0.484135,-0.707505,-0.51483][0.0962302,0.892779,0][0.179274,2.43929,3.14332][0.0126608,-0.71334,-0.700704][0.353281,0.593647,0][1.15669,2.45727,2.97286][-0.229695,-0.719264,-0.655667][0.374374,0.593603,0][1.31129,1.91685,3.41331][-0.256656,-0.585099,-0.769277][0.37752,0.605316,0][-2.65439,-3.3448,2.62626][-0.707393,-0.631786,0.316926][0.260559,0.459718,0][-3.06345,-2.61598,2.92032][-0.782504,-0.486244,0.388914][0.277548,0.453373,0][-3.29498,-2.51488,2.20329][-0.802019,-0.480012,0.355463][0.280541,0.468845,0][-3.61092,-1.74423,2.34405][-0.866637,-0.317869,0.384577][0.298081,0.465807,0][-3.79399,-0.926811,2.42413][-0.905635,-0.141692,0.399685][0.316132,0.46408,0][-4.22501,-1.00074,1.66678][-0.932984,-0.144244,0.329749][0.316128,0.480421,0][-3.22785,-0.743402,2.1369][0.900485,0.163009,-0.40318][0.36106,0.954853,0][-2.88007,-0.755652,2.75482][0.812817,0.146874,-0.563699][0.36106,0.968274,0][-2.73842,-1.46301,2.65118][0.787778,0.388949,-0.477625][0.345347,0.967821,0][-1.76763,-1.54109,3.56666][0.468293,0.353368,-0.809835][0.309879,0.678838,0][-2.29978,-1.50516,3.15932][0.660944,0.330513,-0.673731][0.298411,0.677876,0][-2.4204,-0.801418,3.28779][0.684821,0.149501,-0.713211][0.296056,0.662651,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.306715,0.21035,0][-0.466777,-0.46098,-3.82047][-1.19207,-0.230949,-3.20323][0.318608,0.185084,0][-0.181903,-0.615974,-3.95567][-0.234973,1.60383,-0.0216988][0.32456,0.188765,0][-0.181903,-0.615974,-3.95567][-0.234973,1.60383,-0.0216988][0.0257793,0.397229,0][-0.466777,-0.46098,-3.82047][-1.19207,-0.230949,-3.20323][0.0202845,0.394312,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.0243848,0.380393,0][0.171503,-3.88541,3.34285][0.0112224,-0.825254,0.56465][0.0510349,0.0480286,0][0.168648,-3.31485,3.9437][0.00765018,-0.643206,0.765655][0.051012,0.0659073,0][-0.487277,-3.43991,4.01386][-0.00916173,-0.643692,0.76523][0.0365431,0.0651771,0][0.566538,-4.31307,2.66733][-0.111996,-0.967117,0.228344][0.355502,0.297363,0][0.709982,-4.01676,3.38111][-0.0106999,-0.831539,0.555363][0.361564,0.282615,0][0.171503,-3.88541,3.34285][0.0112224,-0.825254,0.56465][0.369787,0.289929,0][-1.09346,3.31855,2.56792][-0.245791,0.859383,0.448383][0.466458,0.135492,0][-1.46258,2.79436,3.13052][-0.34478,0.72148,0.600495][0.453494,0.12686,0][-0.996556,2.89668,3.49901][-0.368292,0.72521,0.581749][0.460902,0.116179,0][-1.40867,1.48009,4.4588][-0.421478,0.422198,0.802561][0.395028,0.0599516,0][-1.23619,2.23356,4.04009][-0.396547,0.590482,0.702909][0.389512,0.0780708,0][-1.78395,2.15605,3.60735][-0.403115,0.589598,0.699909][0.374865,0.074288,0][-2.82305,-1.87208,3.75069][-0.582752,-0.328325,0.743372][0.452298,0.392537,0][-2.57349,-2.66639,3.48892][-0.52877,-0.4954,0.689188][0.435287,0.38676,0][-1.89971,-2.6157,3.81793][-0.481679,-0.489164,0.727121][0.436714,0.372251,0][-1.30708,-3.87313,2.91744][-0.33752,-0.821541,0.459511][0.0850651,0.19018,0][-1.63652,-3.29831,3.41567][-0.437814,-0.641059,0.630367][0.0973767,0.203155,0][-2.22428,-3.38493,3.12353][-0.446887,-0.646054,0.618795][0.08798,0.21201,0][-2.6031,-2.71923,1.24957][0.742552,0.633671,-0.216973][0.314874,0.940868,0][-1.80096,-2.76189,2.63424][0.554734,0.642667,-0.52844][0.31447,0.970987,0][-1.73421,-3.25369,1.92801][0.54751,0.760938,-0.348147][0.302104,0.957064,0][-1.09488,-3.27314,2.53589][0.338401,0.775031,-0.533678][0.100822,0.646986,0][-1.73421,-3.25369,1.92801][0.54751,0.760938,-0.348147][0.0825574,0.650547,0][-1.80096,-2.76189,2.63424][0.554734,0.642667,-0.52844][0.0879863,0.633083,0][1.00702,0.664798,4.96915][0.0709843,0.237928,0.968685][0.508918,0.311171,0][0.933889,1.49189,4.68244][0.0414344,0.416417,0.908229][0.526724,0.313158,0][0.144168,1.40401,4.59598][-0.00582079,0.414096,0.910215][0.524437,0.33015,0][0.175522,2.7799,3.61073][-0.0104632,0.711319,0.702791][0.554133,0.330154,0][0.149272,2.13714,4.16801][-0.00937697,0.573501,0.819151][0.540254,0.330403,0][0.857409,2.24979,4.24886][0.00411687,0.57663,0.816995][0.543035,0.315183,0][2.23727,-2.57166,3.79839][0.488518,-0.482612,0.726936][0.172806,0.0823857,0][2.42732,-1.79351,4.07795][0.538705,-0.307515,0.784367][0.170747,0.100181,0][1.78532,-1.8727,4.61842][0.472744,-0.317372,0.822063][0.152857,0.0970517,0][1.64695,-2.67292,4.28744][0.450117,-0.494804,0.743346][0.437235,0.295715,0][1.78532,-1.8727,4.61842][0.472744,-0.317372,0.822063][0.454565,0.293126,0][0.99668,-1.91665,4.85933][0.0901463,-0.321888,0.942477][0.453227,0.310117,0][1.04236,-3.2689,2.7318][-0.255377,0.790547,-0.556613][0.254456,0.762245,0][1.79227,-3.25764,2.23357][-0.399718,0.811628,-0.426011][0.256328,0.781422,0][1.74868,-3.646,1.24592][-0.395549,0.89302,-0.214606][0.238393,0.793168,0][1.90735,-3.65197,0.601951][-0.450609,0.892696,-0.00679868][0.229802,0.804592,0][1.74868,-3.646,1.24592][-0.395549,0.89302,-0.214606][0.238393,0.793168,0][2.30758,-3.26488,1.49562][-0.559097,0.779625,-0.282127][0.250992,0.799985,0][2.64856,-3.87306,1.68133][0.479244,-0.838024,0.260846][0.306121,0.286441,0][3.21226,-3.3116,1.94394][0.670579,-0.65579,0.346789][0.298404,0.273424,0][2.99572,-3.41811,2.56613][0.671606,-0.65917,0.338291][0.310518,0.265781,0][2.00082,-4.15771,1.38397][0.208483,-0.970592,0.120359][0.314004,0.300528,0][2.64856,-3.87306,1.68133][0.479244,-0.838024,0.260846][0.306121,0.286441,0][2.47539,-4.00486,2.18847][0.517905,-0.83581,0.182199][0.316069,0.280268,0][-0.286394,3.61015,-1.02452][-0.0754289,0.985598,-0.15135][0.50721,0.203903,0][-0.508997,3.33345,-1.7387][-0.173712,0.864519,-0.471625][0.506383,0.220327,0][-0.972939,3.46368,-1.64847][-0.0748411,0.866051,-0.494322][0.49684,0.221304,0][-0.286394,3.61015,-1.02452][-0.0754289,0.985598,-0.15135][0.50721,0.203903,0][-0.041615,3.5789,-0.250632][-0.0347771,0.998736,-0.036277][0.50703,0.186447,0][0.0112227,3.75921,-1.14692][-0.237527,0.965884,-0.103197][0.514559,0.204349,0][2.37739,3.32686,1.61133][0.494271,0.848141,0.190663][0.540888,0.0724659,0][2.97428,2.78679,1.88236][0.663937,0.696139,0.273091][0.545933,0.0548536,0][3.28124,2.87351,1.37363][0.65869,0.69853,0.279613][0.558377,0.0584597,0][1.59349,3.77417,1.5831][0.231098,0.969121,-0.0860089][0.528934,0.138021,0][2.22208,3.47022,2.05539][0.49495,0.853928,0.160726][0.537553,0.124606,0][2.37739,3.32686,1.61133][0.494271,0.848141,0.190663][0.543094,0.132903,0][-3.16155,1.3548,1.42155][0.889496,-0.428076,-0.159835][0.403401,0.934472,0][-2.9503,1.36129,2.03498][0.814075,-0.442387,-0.376267][0.40428,0.947694,0][-3.16771,0.688332,2.12935][0.885874,-0.235157,-0.399911][0.391077,0.951255,0][-2.37769,0.631209,3.24428][0.653624,-0.239394,-0.71796][0.0263235,0.947552,0][-2.82511,0.67558,2.72958][0.785621,-0.239275,-0.570567][0.0386252,0.940352,0][-2.62832,1.34685,2.58991][0.720454,-0.435106,-0.540026][0.0455006,0.953451,0][-2.691,-2.55963,-1.892][-0.652126,-0.486328,-0.581564][0.222246,0.196154,0][-2.32132,-3.25174,-1.57255][-0.575183,-0.63885,-0.510916][0.221611,0.178168,0][-2.8067,-3.36567,-1.11952][-0.583633,-0.648457,-0.488748][0.236053,0.176522,0][-1.62579,-4.29998,-0.430933][-0.107191,-0.963158,-0.246652][0.351975,0.378766,0][-2.25448,-3.97795,-0.807595][-0.404322,-0.820071,-0.404979][0.356743,0.392628,0][-1.85669,-3.84898,-1.17271][-0.43527,-0.813977,-0.384682][0.344865,0.393474,0][3.9328,-0.223113,-0.0737488][-0.988074,-0.0479523,0.146326][0.342658,0.768546,0][3.97042,-0.215487,0.644529][-0.99818,-0.0432251,-0.0420464][0.358113,0.767385,0][3.8693,0.502402,0.669655][-0.96081,-0.276557,-0.0190098][0.359849,0.782934,0][3.9354,-0.934287,0.632395][-0.988391,0.144977,-0.0454397][0.356692,0.752289,0][3.89748,-0.942139,-0.0794516][-0.978348,0.146177,0.146514][0.341375,0.753436,0][3.72705,-1.63605,-0.0422719][-0.930447,0.338477,0.140361][0.341093,0.739277,0][2.15796,2.45631,-1.15655][-0.561349,-0.710182,0.424886][0.114848,0.689019,0][2.66183,2.41752,-0.296985][-0.703195,-0.680491,0.206031][0.133614,0.694061,0][2.12975,2.89781,-0.104801][-0.536046,-0.823454,0.185953][0.126768,0.708536,0][2.66183,2.41752,-0.296985][-0.703195,-0.680491,0.206031][0.342505,0.829522,0][2.74364,2.43525,1.17619][-0.699392,-0.705399,-0.115161][0.374205,0.82717,0][2.24959,2.89901,0.665141][-0.585027,-0.810617,-0.0253699][0.364103,0.83964,0][1.02552,2.81962,-2.34517][0.2203,0.70182,-0.677434][0.0800029,0.517088,0][1.19935,2.16448,-2.86939][0.270064,0.550162,-0.790182][0.0759129,0.499062,0][0.535956,2.28938,-3.14861][0.223804,0.574524,-0.787295][0.0915105,0.496825,0][1.28523,1.65751,-3.1143][0.751314,-3.40226,0.0410111][0.173524,0.275456,0][0.853031,1.55239,-2.6827][0.191995,-1.67898,1.16755][0.172057,0.288732,0][0.840329,1.58378,-3.42435][1.92671,-0.102693,-0.0446861][0.16176,0.276481,0][-1.09488,-3.27314,2.53589][0.338401,0.775031,-0.533678][0.222277,0.729841,0][0.170102,-3.28236,2.90927][0.000401124,0.799937,-0.600083][0.245582,0.745454,0][-0.477227,-3.66421,2.18926][0.167401,0.885306,-0.433832][0.223954,0.743637,0][-1.73421,-3.25369,1.92801][0.54751,0.760938,-0.348147][0.203552,0.727742,0][-1.09488,-3.27314,2.53589][0.338401,0.775031,-0.533678][0.222277,0.729841,0][-0.477227,-3.66421,2.18926][0.167401,0.885306,-0.433832][0.223954,0.743637,0][0.153911,0.572962,4.2292][0.0270094,-0.285025,-0.95814][0.352078,0.633903,0][0.85129,0.594256,4.16822][-0.169624,-0.23952,-0.955959][0.367131,0.633689,0][0.879796,-0.11972,4.27129][-0.183765,-0.0513598,-0.981627][0.367495,0.649103,0][-1.21543,0.577814,3.96819][0.360536,-0.245999,-0.899721][0.322537,0.633318,0][-0.543674,0.568962,4.1608][0.162696,-0.283294,-0.945132][0.337027,0.633745,0][-0.554005,-0.145485,4.26249][0.188599,-0.0451371,-0.981016][0.336553,0.649155,0][2.15011,0.630646,3.64999][-0.532002,-0.233158,-0.814009][0.395165,0.63336,0][2.70885,0.616881,3.20075][-0.681763,-0.223482,-0.696603][0.407215,0.633853,0][2.78074,-0.0936026,3.25937][-0.702064,-0.0393291,-0.711027][0.408516,0.649207,0][2.55058,1.29331,3.03918][-0.64835,-0.416328,-0.637427][0.115628,0.871842,0][2.02386,1.30568,3.45264][-0.491657,-0.412814,-0.766719][0.123568,0.88302,0][1.84154,1.92291,3.1479][-0.451887,-0.581471,-0.676528][0.113585,0.892154,0][1.19935,2.16448,-2.86939][0.270064,0.550162,-0.790182][0.357645,0.130515,0][1.02552,2.81962,-2.34517][0.2203,0.70182,-0.677434][0.354684,0.116193,0][1.61527,2.92267,-2.21875][0.227064,0.704316,-0.672593][0.367513,0.114678,0][0.959084,3.77235,-0.945444][-0.118313,0.971251,-0.206577][0.532515,0.194111,0][1.30053,3.48965,-1.6189][0.104081,0.855344,-0.507498][0.54284,0.206086,0][0.836832,3.35303,-1.72024][0.142994,0.855164,-0.498244][0.533622,0.211295,0][-1.62843,3.32934,-0.99942][-0.386189,0.864228,-0.322442][0.478859,0.212302,0][-2.12906,2.83087,-1.41806][-0.543475,0.711128,-0.446018][0.469702,0.224673,0][-2.56447,2.95676,-0.994387][-0.52662,0.713136,-0.462718][0.458552,0.218611,0][-2.12906,2.83087,-1.41806][-0.543475,0.711128,-0.446018][0.179308,0.546911,0][-2.53601,2.20917,-1.74475][-0.624672,0.551455,-0.552885][0.185409,0.530517,0][-3.05569,2.3026,-1.2369][-0.656161,0.562445,-0.503098][0.200083,0.536269,0][0.965479,3.24116,1.72099][-0.174533,-0.927163,-0.331521][0.238337,0.89837,0][-0.0646989,3.22973,1.89874][0.093112,-0.923165,-0.372956][0.237905,0.920651,0][0.206244,3.4388,1.23312][0.0101347,-0.978192,-0.207455][0.225055,0.911502,0][-0.0646989,3.22973,1.89874][0.093112,-0.923165,-0.372956][0.237905,0.920651,0][-0.942847,3.23515,1.33495][0.30441,-0.928782,-0.211418][0.222397,0.936638,0][0.206244,3.4388,1.23312][0.0101347,-0.978192,-0.207455][0.225055,0.911502,0][1.64695,-2.67292,4.28744][0.450117,-0.494804,0.743346][0.156494,0.0789413,0][1.45779,-3.39323,3.80102][0.425958,-0.64871,0.630662][0.161879,0.0605285,0][1.97368,-3.26948,3.37904][0.417722,-0.644175,0.64074][0.176034,0.0642062,0][1.78532,-1.8727,4.61842][0.472744,-0.317372,0.822063][0.152857,0.0970517,0][1.64695,-2.67292,4.28744][0.450117,-0.494804,0.743346][0.156494,0.0789413,0][2.23727,-2.57166,3.79839][0.488518,-0.482612,0.726936][0.172806,0.0823857,0][-2.49068,1.83236,-1.07872][0.0258396,-0.726455,-0.00394824][0.164008,0.964003,0][-2.19081,1.84529,-1.49616][0.113063,-2.89537,-0.0458979][0.156395,0.955975,0][-1.7977,2.46996,-1.17795][0.516645,-0.717392,0.467362][0.165167,0.94685,0][-0.559164,2.4737,-1.98854][0.226091,-0.725995,0.649473][0.153038,0.917637,0][-1.7977,2.46996,-1.17795][0.516645,-0.717392,0.467362][0.165167,0.94685,0][-1.7459,1.86529,-1.91454][0.825358,-1.49009,1.32505][0.149357,0.944889,0][1.49505,0.0329956,-2.97652][1.16828,1.07221,-0.0592884][0.242677,0.653572,0][0.806938,0.780468,-3.01797][1.10892,-0.0617761,-0.0309991][0.228715,0.670473,0][0.406652,0.776108,-3.07764][-0.420602,-1.59046,-0.0709133][0.220085,0.670842,0][0.806938,0.780468,-3.01797][1.10892,-0.0617761,-0.0309991][0.228715,0.670473,0][-0.125585,1.33401,-2.89632][0.0783222,-0.414184,0.906817][0.209263,0.683479,0][0.406652,0.776108,-3.07764][-0.420602,-1.59046,-0.0709133][0.220085,0.670842,0][-1.28682,3.61432,1.24405][-0.15901,0.982817,0.0937342][0.472177,0.163644,0][-1.9679,3.35066,1.56066][-0.426344,0.874901,0.229737][0.455391,0.161788,0][-1.81947,3.47912,2.00529][-0.468559,0.871995,0.141692][0.455954,0.151547,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-1.44938,3.75878,0.966917][-0.0723592,0.970154,0.231443][0.471185,0.170229,0][-1.28682,3.61432,1.24405][-0.15901,0.982817,0.0937342][0.472177,0.163644,0][2.88013,-3.91809,0.16277][0.525213,-0.849575,-0.0487331][0.282458,0.309601,0][3.48187,-3.38089,0.0879229][0.742621,-0.663409,-0.0916595][0.269751,0.301935,0][3.6373,-3.49639,0.73701][0.734101,-0.674794,-0.0758161][0.275953,0.289051,0][3.6373,-3.49639,0.73701][0.734101,-0.674794,-0.0758161][0.275953,0.289051,0][3.00043,-4.05834,0.690829][0.50981,-0.852837,-0.11297][0.287742,0.299301,0][2.88013,-3.91809,0.16277][0.525213,-0.849575,-0.0487331][0.282458,0.309601,0][1.61213,-4.29529,2.07445][0.0264614,-0.964925,0.261188][0.330012,0.294003,0][2.12527,-4.00084,2.59687][0.267121,-0.831412,0.487238][0.327323,0.277771,0][1.64585,-3.85862,2.85826][0.311211,-0.822192,0.476601][0.338439,0.279159,0][1.97368,-3.26948,3.37904][0.417722,-0.644175,0.64074][0.338009,0.264696,0][1.64585,-3.85862,2.85826][0.311211,-0.822192,0.476601][0.338439,0.279159,0][2.12527,-4.00084,2.59687][0.267121,-0.831412,0.487238][0.327323,0.277771,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][1.82885,3.61471,0.370655][0.21468,0.975658,-0.0447644][0.541042,0.16163,0][1.81114,3.75574,0.0457153][0.233714,0.960742,0.149509][0.543286,0.168273,0][2.5372,3.43103,-0.183896][0.546801,0.837262,0.000575204][0.558377,0.168697,0][1.81114,3.75574,0.0457153][0.233714,0.960742,0.149509][0.543286,0.168273,0][1.82885,3.61471,0.370655][0.21468,0.975658,-0.0447644][0.541042,0.16163,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.32807,-4.17015,-0.700683][-0.194427,-0.966535,-0.167355][0.343035,0.379265,0][-1.0894,-4.31196,-1.0222][-0.276178,-0.959161,-0.0611195][0.335201,0.382014,0][-1.5413,-3.9954,-1.61003][-0.463672,-0.816969,-0.342885][0.334231,0.397229,0][-1.0894,-4.31196,-1.0222][-0.276178,-0.959161,-0.0611195][0.335201,0.382014,0][-1.32807,-4.17015,-0.700683][-0.194427,-0.966535,-0.167355][0.343035,0.379265,0][-3.09428,-0.0669764,-1.30749][0.858005,-0.0548872,0.510701][0.36642,0.879434,0][-2.66253,-0.0653504,-1.89899][0.727519,-0.045467,0.684579][0.363443,0.866929,0][-2.54689,0.832546,-1.78661][2.76184,0.064189,0.664701][0.382273,0.867214,0][-2.63139,-0.785837,-1.883][0.736011,0.126337,0.665076][0.348145,0.869027,0][-3.0618,-0.787179,-1.29888][0.851145,0.138341,0.506373][0.351106,0.881374,0][-2.91591,-1.48846,-1.21831][0.814745,0.31808,0.484785][0.335957,0.884857,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][2.17763,-4.17347,0.252644][0.217626,-0.975962,-0.0117393][0.296251,0.317687,0][2.26442,-4.31269,0.639033][0.190132,-0.968009,-0.163732][0.300244,0.310247,0][3.00043,-4.05834,0.690829][0.50981,-0.852837,-0.11297][0.287742,0.299301,0][2.26442,-4.31269,0.639033][0.190132,-0.968009,-0.163732][0.300244,0.310247,0][2.17763,-4.17347,0.252644][0.217626,-0.975962,-0.0117393][0.296251,0.317687,0][-0.384063,0.820988,-3.0241][-1.21832,1.12158,-0.0361383][0.2031,0.672724,0][-0.125585,1.33401,-2.89632][0.0783222,-0.414184,0.906817][0.209263,0.683479,0][-0.456672,1.58106,-2.68909][-0.17271,-0.631496,0.0169859][0.202415,0.689185,0][-0.384063,0.820988,-3.0241][-1.21832,1.12158,-0.0361383][0.2031,0.672724,0][-1.04128,0.108405,-2.98323][-1.13479,1.02581,-0.0510726][0.188115,0.658131,0][-0.110019,0.923042,-3.03619][1.24367,-0.319431,-0.0460311][0.209123,0.674606,0][-2.22164,-0.19734,4.32153][-0.52166,0.0380939,0.852303][0.488723,0.380392,0][-2.16771,0.634531,4.22029][-0.498006,0.229999,0.836116][0.506694,0.37964,0][-2.92282,0.709659,3.86188][-0.579542,0.226814,0.782743][0.507941,0.395966,0][-2.92282,0.709659,3.86188][-0.579542,0.226814,0.782743][0.365121,0.0354309,0][-2.72618,1.53538,3.65282][-0.512999,0.426331,0.745033][0.363239,0.0537268,0][-3.22857,1.58884,3.07258][-0.786742,0.429279,0.443573][0.346638,0.0537279,0][0.195019,3.30896,2.94482][-0.00199119,0.855021,0.518589][0.490101,0.119485,0][0.199544,3.60248,2.19534][0.000663,0.978903,0.204325][0.496088,0.134553,0][-0.1241,3.74176,2.22428][0.167998,0.967631,0.188329][0.489819,0.135881,0][0.199544,3.60248,2.19534][0.000663,0.978903,0.204325][0.496088,0.134553,0][0.195019,3.30896,2.94482][-0.00199119,0.855021,0.518589][0.490101,0.119485,0][0.665155,3.45231,3.00009][-0.102101,0.856178,0.506493][0.499772,0.115176,0][1.69086,-3.64785,-0.342411][-0.373796,0.895959,0.239863][0.211157,0.814008,0][1.86384,-3.3428,-0.917229][-0.34569,5.17696,0.624401][0.204631,0.825591,0][1.00023,-3.36245,-1.43206][-0.0262323,2.10866,-0.0364691][0.184332,0.818425,0][1.69086,-3.64785,-0.342411][-0.373796,0.895959,0.239863][0.211157,0.814008,0][2.2712,-3.34731,-0.277232][-0.927368,1.23866,0.408662][0.220787,0.823483,0][1.86384,-3.3428,-0.917229][-0.34569,5.17696,0.624401][0.204631,0.825591,0][-0.725614,3.44611,2.85714][-0.329408,0.859445,0.390954][0.472478,0.127043,0][-0.434566,3.74269,2.13409][-0.258329,0.964002,0.0629826][0.484114,0.139726,0][-0.686101,3.60428,1.93504][-0.487624,5.81739,0.999539][0.479828,0.145586,0][-0.245408,3.57466,1.25446][-0.121962,0.357619,-0.0945384][0.49309,0.156794,0][-0.686101,3.60428,1.93504][-0.487624,5.81739,0.999539][0.479828,0.145586,0][-0.434566,3.74269,2.13409][-0.258329,0.964002,0.0629826][0.484114,0.139726,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-0.35723,-4.16369,-1.31391][-0.0512578,-0.966971,-0.24968][0.318575,0.377243,0][0.014432,-4.29238,-1.46845][-0.187044,-0.961522,-0.201224][0.31064,0.375383,0][-0.0652976,-3.97818,-2.20371][-0.213146,-0.823856,-0.525195][0.301455,0.38833,0][0.014432,-4.29238,-1.46845][-0.187044,-0.961522,-0.201224][0.31064,0.375383,0][-0.35723,-4.16369,-1.31391][-0.0512578,-0.966971,-0.24968][0.318575,0.377243,0][3.96181,-2.71903,0.00317119][0.855837,-0.502724,-0.121704][0.544263,0.521297,0][4.31056,-1.96161,-0.0776094][0.933301,-0.331651,-0.137686][0.529493,0.519034,0][4.51616,-2.02011,0.730016][0.941031,-0.333696,-0.0557432][0.536045,0.502764,0][3.93245,-2.78953,-0.74838][0.845635,-0.500843,-0.184549][0.203212,0.348688,0][3.46354,-3.49239,-0.569407][0.740056,-0.660409,-0.127185][0.2171,0.356088,0][3.20029,-3.46386,-1.17667][0.565709,-0.653693,-0.502651][0.212,0.369139,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-0.229198,-4.31934,2.69343][0.145581,-0.961185,0.234369][0.369316,0.307196,0][-0.614393,-4.31685,2.5851][-0.242732,-0.962977,0.117284][0.374404,0.314019,0][-0.882024,-4.02694,3.25931][-0.348474,-0.827304,0.440607][0.386916,0.305267,0][-0.614393,-4.31685,2.5851][-0.242732,-0.962977,0.117284][0.374404,0.314019,0][-0.229198,-4.31934,2.69343][0.145581,-0.961185,0.234369][0.369316,0.307196,0][-3.53625,2.31291,0.824704][-0.814336,0.573878,-0.0867229][0.424776,0.188126,0][-2.96073,2.97538,0.752638][-0.683371,0.720775,-0.116134][0.439214,0.18519,0][-2.82172,2.84906,0.168625][-0.692426,0.716163,-0.0875027][0.445395,0.196452,0][-3.97754,1.54337,0.853113][-0.908841,0.411532,-0.0681944][0.369336,0.497978,0][-3.53625,2.31291,0.824704][-0.814336,0.573878,-0.0867229][0.384098,0.498591,0][-3.36973,2.21232,0.133912][-0.81524,0.568639,-0.109701][0.381352,0.513496,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][1.73179,-4.15502,-0.773755][0.165374,-0.971922,-0.167388][0.2903,0.341005,0][2.01576,-4.3066,-0.509825][0.0550213,-0.959484,-0.276339][0.289392,0.333149,0][2.6586,-4.04188,-0.873202][0.353312,-0.834963,-0.421908][0.273001,0.330503,0][2.01576,-4.3066,-0.509825][0.0550213,-0.959484,-0.276339][0.289392,0.333149,0][1.73179,-4.15502,-0.773755][0.165374,-0.971922,-0.167388][0.2903,0.341005,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][1.25875,-4.16088,2.27327][0.147505,-0.967632,0.204771][0.3382,0.294855,0][0.948468,-4.3068,2.53634][0.26785,-0.956106,0.11882][0.347312,0.294668,0][1.22648,-4.00443,3.20755][0.37749,-0.819887,0.430448][0.350523,0.2789,0][0.948468,-4.3068,2.53634][0.26785,-0.956106,0.11882][0.347312,0.294668,0][1.25875,-4.16088,2.27327][0.147505,-0.967632,0.204771][0.3382,0.294855,0][3.42719,-2.27589,0.024868][-0.828421,0.531102,0.177899][0.109319,0.815201,0][2.69633,-2.36163,-1.40872][-3.01648,1.68249,0.601469][0.133987,0.828436,0][2.50939,-2.7941,-1.1244][-2.86467,1.5081,0.177633][0.127537,0.837754,0][2.56795,-2.73612,-2.62005][-1.28826,0.54193,-0.0239802][0.719542,0.0854703,0][2.50939,-2.7941,-1.1244][-2.86467,1.5081,0.177633][0.693268,0.0667031,0][2.69633,-2.36163,-1.40872][-3.01648,1.68249,0.601469][0.703312,0.0636537,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][0.783444,-4.13997,-1.34785][0.0705212,-0.968754,-0.237785][0.298776,0.363056,0][1.17675,-4.27752,-1.2934][-0.0822306,-0.957543,-0.276313][0.293237,0.357351,0][1.50964,-3.98886,-1.95733][0.0775338,-0.831089,-0.550708][0.278082,0.363807,0][1.17675,-4.27752,-1.2934][-0.0822306,-0.957543,-0.276313][0.293237,0.357351,0][0.783444,-4.13997,-1.34785][0.0705212,-0.968754,-0.237785][0.298776,0.363056,0][-3.46315,0.646924,0.0748179][0.95039,-0.288661,0.115908][0.38623,0.907188,0][-3.49332,0.656963,0.7745][0.957683,-0.286723,-0.0251743][0.388267,0.922151,0][-3.59717,-0.0588381,0.763015][0.997662,-0.0469706,-0.049642][0.373489,0.923593,0][-3.56626,-0.0688231,0.0442792][0.988932,-0.0506049,0.139474][0.371403,0.908222,0][-3.39786,-0.0691873,-0.653317][0.943082,-0.0517203,0.328513][0.369076,0.893338,0][-3.30088,0.645393,-0.606071][0.915149,-0.24502,0.320105][0.38394,0.892663,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][2.00082,-4.15771,1.38397][0.208483,-0.970592,0.120359][0.314004,0.300528,0][1.87108,-4.29421,1.76349][0.272319,-0.961737,-0.0300763][0.32156,0.295993,0][2.47539,-4.00486,2.18847][0.517905,-0.83581,0.182199][0.316069,0.280268,0][1.87108,-4.29421,1.76349][0.272319,-0.961737,-0.0300763][0.32156,0.295993,0][2.00082,-4.15771,1.38397][0.208483,-0.970592,0.120359][0.314004,0.300528,0][3.4677,2.13901,2.08156][0.765817,0.552743,0.328633][0.454839,0.450131,0][3.84164,1.40827,2.22838][0.840937,0.392694,0.372313][0.471975,0.451568,0][4.24822,1.43333,1.54378][0.865694,0.398415,0.303051][0.468962,0.46606,0][3.2316,2.24785,2.75946][0.73828,0.557441,0.37974][0.536479,0.0340631,0][2.77696,2.91447,2.45423][0.64539,0.704082,0.296211][0.534013,0.0521338,0][2.37738,2.92615,2.90187][0.372632,0.710654,0.596755][0.521072,0.0516856,0][2.42732,-1.79351,4.07795][0.538705,-0.307515,0.784367][0.456591,0.279316,0][2.53399,-0.967802,4.23822][0.564685,-0.135171,0.814162][0.474456,0.277424,0][1.86484,-1.02159,4.80364][0.480271,-0.137546,0.866268][0.472964,0.291832,0][3.1625,-1.85682,3.67085][0.590365,-0.303897,0.747741][0.187875,0.102727,0][2.91173,-2.67045,3.43102][0.520666,-0.48129,0.705171][0.188435,0.0840493,0][3.41129,-2.70486,2.85229][0.760428,-0.490457,0.425678][0.20494,0.0835229,0][1.56235,-0.811139,4.03683][-0.38121,0.136249,-0.914393][0.381978,0.664259,0][2.19641,-0.801022,3.69492][-0.563902,0.14945,-0.812206][0.395661,0.664264,0][2.10747,-1.50672,3.55423][-0.564745,0.311802,-0.764096][0.393495,0.679457,0][2.21013,-0.0797337,3.72923][-0.554138,-0.0455336,-0.831179][0.396211,0.648707,0][1.56961,-0.0903031,4.06929][-0.375406,-0.0504885,-0.925484][0.382388,0.64871,0][1.52408,0.621329,3.97483][-0.354456,-0.239155,-0.903972][0.381656,0.633341,0][4.16628,1.3205,-0.0135957][0.904442,0.405821,-0.131503][0.462059,0.499014,0][4.43449,0.524566,-0.0830664][0.962318,0.233715,-0.139001][0.478921,0.505217,0][4.39625,0.599303,-0.929008][0.947212,0.243669,-0.208362][0.472404,0.522355,0][4.36195,1.38917,0.759107][0.911346,0.405162,-0.0727422][0.465768,0.482742,0][3.93159,2.15761,0.77274][0.82262,0.561343,-0.0904996][0.44858,0.4777,0][3.83113,2.19402,1.47514][0.778631,0.557459,0.288052][0.451509,0.462786,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][1.70034,3.62017,1.28138][0.178607,0.982118,0.0595343][0.532529,0.143712,0][1.86471,3.75883,1.00724][0.110267,0.96421,0.241123][0.538127,0.148145,0][2.61736,3.44712,1.2147][0.455285,0.84833,0.270279][0.550959,0.139392,0][1.86471,3.75883,1.00724][0.110267,0.96421,0.241123][0.538127,0.148145,0][1.70034,3.62017,1.28138][0.178607,0.982118,0.0595343][0.532529,0.143712,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.200331,0.397229,0][2.72584,-2.37706,-2.72442][-1.73755,-1.1758,-0.0163178][0.178909,0.393148,0][3.09199,-2.64027,-1.95525][0.63101,-0.509404,-0.585092][0.190124,0.377776,0][2.72584,-2.37706,-2.72442][-1.73755,-1.1758,-0.0163178][0.178909,0.393148,0][2.90648,-1.9416,-2.86358][0.64307,-0.362476,-0.674591][0.169768,0.390344,0][3.36779,-1.87193,-2.20868][0.708703,-0.344914,-0.615447][0.173805,0.37347,0][3.21359,2.72855,0.185956][0.714051,0.689825,-0.119468][0.337009,0.0355265,0][2.56444,3.29639,0.285115][0.542365,0.83402,-0.101245][0.320478,0.0443377,0][2.68356,3.43351,0.750224][0.526575,0.837599,-0.145417][0.314417,0.0354309,0][1.91022,3.75602,0.688119][0.178717,0.963441,-0.199605][0.541117,0.154421,0][2.68356,3.43351,0.750224][0.526575,0.837599,-0.145417][0.555276,0.148538,0][2.56444,3.29639,0.285115][0.542365,0.83402,-0.101245][0.555411,0.159021,0][-3.46935,1.53368,2.3248][-0.830309,0.418236,0.368327][0.367281,0.466223,0][-3.72339,0.743229,2.42073][-0.892227,0.226861,0.390468][0.351394,0.464153,0][-3.46655,0.766727,3.22766][-0.847633,0.230624,0.47784][0.350959,0.446742,0][-3.8654,1.57146,1.64032][-0.860404,0.412102,0.299796][0.369526,0.480992,0][-3.43444,2.33256,1.52594][-0.753699,0.590344,0.288847][0.384145,0.48346,0][-3.53625,2.31291,0.824704][-0.814336,0.573878,-0.0867229][0.384098,0.498591,0][-1.19433,3.23477,0.319714][0.361158,-0.930428,0.0621959][0.199872,0.937701,0][-0.686264,3.22882,-0.593062][0.247836,-0.9317,0.265542][0.182602,0.92335,0][-0.507111,3.43526,0.410756][0.19976,-0.978752,0.0462558][0.204734,0.923014,0][-0.942847,3.23515,1.33495][0.30441,-0.928782,-0.211418][0.222397,0.936638,0][-1.19433,3.23477,0.319714][0.361158,-0.930428,0.0621959][0.199872,0.937701,0][-0.507111,3.43526,0.410756][0.19976,-0.978752,0.0462558][0.204734,0.923014,0][3.98433,-1.8716,2.24853][0.853779,-0.307567,0.420075][0.539841,0.469823,0][4.1615,-1.05383,2.30643][0.894356,-0.131955,0.427452][0.524027,0.464168,0][3.87149,-1.03918,3.13069][0.85896,-0.133667,0.494288][0.527435,0.446659,0][4.40488,-1.97317,1.54339][0.887388,-0.314394,0.337194][0.539355,0.485471,0][4.04725,-2.76624,1.49104][0.800019,-0.496722,0.336508][0.554062,0.490697,0][4.14934,-2.80689,0.746314][0.856744,-0.511958,-0.062363][0.550983,0.506516,0][-3.78921,1.47518,0.0839259][-0.903586,0.410033,-0.12412][0.367201,0.514575,0][-4.06481,0.672269,0.0170299][-0.962345,0.237321,-0.132551][0.351127,0.516018,0][-4.26641,0.705189,0.833051][-0.970234,0.235025,-0.0583957][0.352561,0.498411,0][-3.76023,1.53944,-0.708238][-0.890741,0.412086,-0.191746][0.220828,0.526715,0][-3.34718,2.30114,-0.580576][-0.807244,0.570668,-0.150646][0.212214,0.543115,0][-3.05569,2.3026,-1.2369][-0.656161,0.562445,-0.503098][0.200083,0.536269,0][3.00043,-4.05834,0.690829][0.50981,-0.852837,-0.11297][0.287742,0.299301,0][3.6373,-3.49639,0.73701][0.734101,-0.674794,-0.0758161][0.275953,0.289051,0][3.54282,-3.46493,1.38588][0.669831,-0.664784,0.33074][0.285953,0.27907,0][2.26442,-4.31269,0.639033][0.190132,-0.968009,-0.163732][0.300244,0.310247,0][3.00043,-4.05834,0.690829][0.50981,-0.852837,-0.11297][0.287742,0.299301,0][2.91882,-4.03849,1.22181][0.4449,-0.844231,0.298895][0.296015,0.291202,0][-3.08584,-0.979226,-2.24755][-0.736417,-0.135198,-0.662881][0.199541,0.466992,0][-3.12205,-0.140557,-2.26451][-0.738942,0.0482543,-0.672039][0.197728,0.481146,0][-2.60057,-0.149514,-2.98327][-0.686569,0.0528615,-0.725141][0.180656,0.474278,0][-3.73485,-1.01717,-1.663][-0.790429,-0.139544,-0.596448][0.313995,0.552269,0][-3.56059,-1.86281,-1.55822][-0.751678,-0.322602,-0.575246][0.295376,0.550008,0][-3.91876,-1.8708,-0.81312][-0.919533,-0.326351,-0.218983][0.296509,0.533931,0][2.01576,-4.3066,-0.509825][0.0550213,-0.959484,-0.276339][0.289392,0.333149,0][2.6586,-4.04188,-0.873202][0.353312,-0.834963,-0.421908][0.273001,0.330503,0][2.87035,-4.06066,-0.377171][0.525795,-0.850197,-0.0265585][0.275968,0.319304,0][3.46354,-3.49239,-0.569407][0.740056,-0.660409,-0.127185][0.261779,0.313693,0][2.87035,-4.06066,-0.377171][0.525795,-0.850197,-0.0265585][0.275968,0.319304,0][2.6586,-4.04188,-0.873202][0.353312,-0.834963,-0.421908][0.273001,0.330503,0][1.94732,-2.16952,3.31387][-0.491964,0.489053,-0.720276][0.389807,0.693701,0][0.791056,-2.1951,3.78828][-0.195101,0.504719,-0.840949][0.364852,0.693847,0][1.50126,-1.51508,3.88228][-0.367141,0.331537,-0.869074][0.380413,0.679425,0][0.847966,-1.53992,4.0765][-0.186635,0.320062,-0.928832][0.36631,0.679731,0][1.50126,-1.51508,3.88228][-0.367141,0.331537,-0.869074][0.380413,0.679425,0][0.791056,-2.1951,3.78828][-0.195101,0.504719,-0.840949][0.364852,0.693847,0][-0.541939,-0.8654,4.22779][0.190536,0.144066,-0.971051][0.33656,0.664691,0][-1.22793,-0.856115,4.0283][0.360541,0.166226,-0.917812][0.321764,0.664249,0][-1.24617,-0.135976,4.06348][0.361269,-0.0425498,-0.93149][0.321623,0.648706,0][-2.44742,-0.0807074,3.31762][0.682912,-0.0419183,-0.729297][0.295726,0.647092,0][-1.88586,-0.120548,3.74659][0.525948,-0.0420562,-0.849476][0.307827,0.648149,0][-1.86249,-0.8407,3.7149][0.526634,0.150007,-0.836752][0.308079,0.663694,0][3.76441,-1.62733,0.637584][-0.941776,0.332829,-0.047778][0.355723,0.738204,0][3.67237,-1.59435,1.31421][-0.893886,0.373003,-0.24867][0.370359,0.738121,0][3.83692,-0.898341,1.34186][-0.961376,0.141128,-0.236305][0.372041,0.752238,0][3.60128,-0.861384,2.02499][-0.899516,0.138752,-0.41427][0.386864,0.752749,0][3.83692,-0.898341,1.34186][-0.961376,0.141128,-0.236305][0.372041,0.752238,0][3.67237,-1.59435,1.31421][-0.893886,0.373003,-0.24867][0.370359,0.738121,0][-1.22793,-0.856115,4.0283][0.360541,0.166226,-0.917812][0.321764,0.664249,0][-0.541939,-0.8654,4.22779][0.190536,0.144066,-0.971051][0.33656,0.664691,0][-0.508513,-1.56449,4.06046][0.233049,0.399734,-0.88651][0.337036,0.679785,0][0.847966,-1.53992,4.0765][-0.186635,0.320062,-0.928832][0.36631,0.679731,0][0.170005,-1.56006,4.13409][0.0051103,0.323238,-0.946304][0.351676,0.679928,0][0.169078,-0.861795,4.30164][0.00525046,0.140113,-0.990122][0.351901,0.664863,0][2.53399,-0.967802,4.23822][0.564685,-0.135171,0.814162][0.474456,0.277424,0][2.54992,-0.126848,4.27998][0.566532,0.0444978,0.822837][0.492604,0.277496,0][1.87639,-0.149578,4.84482][0.471453,0.0499335,0.880476][0.491781,0.292014,0][1.87639,-0.149578,4.84482][0.471453,0.0499335,0.880476][0.491781,0.292014,0][1.81539,0.712061,4.73316][0.447484,0.242156,0.860883][0.510337,0.293757,0][1.00702,0.664798,4.96915][0.0709843,0.237928,0.968685][0.508918,0.311171,0][3.72913,-0.921031,-0.767367][-0.933124,0.143902,0.329502][0.326656,0.75563,0][3.43994,-0.888327,-1.40395][-0.854929,0.140059,0.49948][0.313094,0.758423,0][3.29143,-1.58804,-1.30986][-0.784718,0.379729,0.489922][0.314021,0.743968,0][2.32753,-1.77382,-2.23113][-1.99434,-1.25815,0.0070108][0.0428438,0.650547,0][3.29143,-1.58804,-1.30986][-0.784718,0.379729,0.489922][0.0250074,0.627619,0][3.04245,-0.865246,-1.9635][-0.733794,0.169402,0.657913][0.0465693,0.62522,0][-3.29319,-1.45958,1.41805][0.899681,0.343005,-0.270039][0.344399,0.941148,0][-3.39508,-1.47591,0.742921][0.93901,0.339055,-0.0574659][0.342766,0.926672,0][-3.56366,-0.778215,0.752258][0.988424,0.141605,-0.0544635][0.358141,0.925116,0][-3.36552,-0.789006,-0.651306][0.934239,0.138341,0.328723][0.353754,0.895135,0][-3.53367,-0.788237,0.0399884][0.980653,0.139426,0.137405][0.356074,0.909883,0][-3.3676,-1.48584,0.0626416][0.937549,0.323129,0.128797][0.340788,0.912124,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.204379,0.641625,0][-0.817697,-0.769827,-3.06045][0.260708,0.148547,0.953921][0.191917,0.638949,0][-0.750863,-1.72513,-2.79209][0.450586,0.386018,1.26189][0.192252,0.618289,0][-0.466777,-0.46098,-3.82047][-1.19207,-0.230949,-3.20323][0.0202845,0.394312,0][-0.473817,-0.478471,-3.13957][1.12327,-0.267376,-0.00527127][0.0200711,0.37962,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.0243848,0.380393,0][4.50978,-1.14541,-0.134556][0.978944,-0.146002,-0.142658][0.513131,0.515799,0][4.55106,-0.306155,-0.137167][0.988715,0.0473355,-0.142133][0.496053,0.51115,0][4.76574,-0.301386,0.708504][0.997404,0.045231,-0.056029][0.501557,0.493739,0][4.47588,-1.13164,-0.997502][0.962406,-0.145375,-0.229437][0.507782,0.533639,0][4.27782,-1.98841,-0.899545][0.917923,-0.333481,-0.214962][0.525216,0.536252,0][3.95104,-1.94887,-1.6518][0.755481,-0.342252,-0.55867][0.518945,0.55136,0][2.78074,-0.0936026,3.25937][-0.702064,-0.0393291,-0.711027][0.414898,0.76997,0][3.26155,-0.122976,2.69071][-0.818074,-0.0352837,-0.574029][0.402482,0.768541,0][3.23541,-0.843326,2.66005][-0.808655,0.140107,-0.571355][0.400658,0.753411,0][3.26155,-0.122976,2.69071][-0.818074,-0.0352837,-0.574029][0.402482,0.768541,0][2.78074,-0.0936026,3.25937][-0.702064,-0.0393291,-0.711027][0.414898,0.76997,0][2.70885,0.616881,3.20075][-0.681763,-0.223482,-0.696603][0.414813,0.785394,0][0.204731,3.50982,0.514692][0.011764,-0.999926,0.00307499][0.209882,0.908316,0][0.26209,3.44469,-0.198071][0.00202326,-0.982522,0.186135][0.194974,0.904411,0][0.879983,3.4492,0.296067][-0.18541,-0.97955,0.0781329][0.207955,0.893534,0][0.204731,3.50982,0.514692][0.011764,-0.999926,0.00307499][0.209882,0.908316,0][-0.507111,3.43526,0.410756][0.19976,-0.978752,0.0462558][0.204734,0.923014,0][0.26209,3.44469,-0.198071][0.00202326,-0.982522,0.186135][0.194974,0.904411,0][2.47903,2.78838,-1.38771][0.544221,0.698038,-0.465367][0.0450828,0.530901,0][1.98177,3.3293,-0.955269][0.413692,0.844863,-0.339212][0.0553731,0.545724,0][2.3319,3.44441,-0.619738][0.383606,0.846135,-0.370002][0.0470466,0.552531,0][1.67063,3.7596,-0.254768][0.0489948,0.969461,-0.240302][0.542406,0.175352,0][2.3319,3.44441,-0.619738][0.383606,0.846135,-0.370002][0.557096,0.178965,0][1.98177,3.3293,-0.955269][0.413692,0.844863,-0.339212][0.55178,0.18824,0][0.179378,-1.06456,4.96103][-0.00806924,-0.138033,0.990395][0.471203,0.328169,0][0.176537,-0.226114,4.99901][-0.00570034,0.0487583,0.998794][0.489289,0.328645,0][-0.688994,-0.217079,5.08371][-0.0882229,0.0454196,0.995065][0.489055,0.347321,0][1.04049,-1.07111,5.05524][0.0978432,-0.137997,0.985588][0.471488,0.30959,0][0.99668,-1.91665,4.85933][0.0901463,-0.321888,0.942477][0.453227,0.310117,0][1.78532,-1.8727,4.61842][0.472744,-0.317372,0.822063][0.454565,0.293126,0][-3.95426,-1.81006,0.010581][-0.93674,-0.322544,-0.135954][0.29793,0.516157,0][-4.14703,-1.00095,-0.0238417][-0.980255,-0.138737,-0.140901][0.31584,0.5169,0][-4.10954,-1.02724,-0.886387][-0.960195,-0.141901,-0.240603][0.315144,0.535512,0][-4.14766,-1.87124,0.807614][-0.943711,-0.327543,-0.0461021][0.297332,0.49896,0][-3.79029,-2.64973,0.798397][-0.865203,-0.498238,-0.0564101][0.279475,0.499159,0][-3.67733,-2.62534,1.54761][-0.806883,-0.488957,0.331454][0.279582,0.482993,0][-1.78964,-3.99815,2.67011][-0.286329,-0.822926,0.490723][0.0768061,0.196721,0][-2.22428,-3.38493,3.12353][-0.446887,-0.646054,0.618795][0.08798,0.21201,0][-2.65439,-3.3448,2.62626][-0.707393,-0.631786,0.316926][0.0763063,0.220109,0][-1.28956,-4.30386,2.14969][-0.0340184,-0.961283,0.273456][0.380082,0.33017,0][-1.78964,-3.99815,2.67011][-0.286329,-0.822926,0.490723][0.394465,0.327021,0][-2.14583,-3.97598,2.25792][-0.55717,-0.809882,0.18345][0.395028,0.338638,0][3.54802,-0.206916,-2.37061][0.745345,0.0837381,-0.661399][0.139372,0.362666,0][3.52382,-1.04789,-2.35402][0.749314,-0.140576,-0.647122][0.156596,0.368412,0][3.04616,-1.08875,-3.03626][0.67629,-0.142624,-0.722696][0.151751,0.38574,0][4.1644,-0.214344,-1.79529][0.813008,0.0679194,-0.578278][0.483307,0.544749,0][4.04945,0.640775,-1.69642][0.796514,0.253055,-0.549116][0.465937,0.537748,0][4.39625,0.599303,-0.929008][0.947212,0.243669,-0.208362][0.472404,0.522355,0][-0.428708,1.62697,-3.44352][-1.8941,-0.148376,-0.0835104][0.321927,0.140147,0][-0.828389,2.22094,-2.88521][-0.258917,0.550924,-0.793375][0.314027,0.126872,0][-0.174677,2.31657,-3.15577][-0.180753,0.573948,-0.798694][0.328225,0.125594,0][-0.886134,1.73043,-3.12374][-0.869274,-3.35365,-0.293602][0.0666456,0.113116,0][-0.428708,1.62697,-3.44352][-1.8941,-0.148376,-0.0835104][0.055025,0.112928,0][-0.456672,1.58106,-2.68909][-0.17271,-0.631496,0.0169859][0.0655061,0.100449,0][1.54244,2.27872,4.05964][0.383563,0.576161,0.721746][0.543998,0.30042,0][1.35732,2.9279,3.52835][0.351267,0.720372,0.598059][0.55791,0.304734,0][0.776539,2.91056,3.6821][-0.0398005,0.717402,0.695522][0.557249,0.317254,0][0.665155,3.45231,3.00009][-0.102101,0.856178,0.506493][0.499772,0.115176,0][0.776539,2.91056,3.6821][-0.0398005,0.717402,0.695522][0.495714,0.101025,0][1.35732,2.9279,3.52835][0.351267,0.720372,0.598059][0.508552,0.100444,0][-0.678527,1.94538,-2.43292][0.273162,-0.559145,0.782776][0.198057,0.697291,0][-0.101236,1.94785,-2.54439][0.037979,-0.577907,0.815219][0.210498,0.696676,0][-0.559164,2.4737,-1.98854][0.226091,-0.725995,0.649473][0.20124,0.708536,0][-1.7459,1.86529,-1.91454][0.825358,-1.49009,1.32505][0.0335201,0.703774,0][-0.678527,1.94538,-2.43292][0.273162,-0.559145,0.782776][0.0475538,0.690039,0][-0.559164,2.4737,-1.98854][0.226091,-0.725995,0.649473][0.0555907,0.702688,0][4.1955,-0.214441,2.32897][0.906042,0.0384041,0.421441][0.507065,0.458988,0][4.08735,0.615685,2.31492][0.889166,0.216173,0.403302][0.489584,0.454484,0][3.79925,0.690992,3.12511][0.848972,0.219859,0.480529][0.491675,0.436927,0][3.79925,0.690992,3.12511][0.848972,0.219859,0.480529][0.491675,0.436927,0][3.57225,1.50201,2.98323][0.804973,0.396627,0.441255][0.473436,0.435076,0][3.0353,1.54058,3.59154][0.558242,0.404362,0.724471][0.474249,0.421685,0][2.31994,1.47991,3.96593][0.501267,0.40918,0.762432][0.527151,0.283253,0][2.47462,0.698566,4.19304][0.542575,0.232493,0.807192][0.510373,0.279529,0][3.23259,0.733937,3.78253][0.610629,0.225018,0.759275][0.511511,0.263196,0][1.69427,1.53157,4.46423][0.415912,0.419118,0.807067][0.527956,0.296775,0][1.54244,2.27872,4.05964][0.383563,0.576161,0.721746][0.543998,0.30042,0][0.857409,2.24979,4.24886][0.00411687,0.57663,0.816995][0.543035,0.315183,0][2.89875,1.71422,-2.02303][-0.694191,-2.46917,-0.0638092][0.215885,0.144825,0][2.90342,2.1344,-1.76871][2.08727,1.90135,-2.04943][0.226297,0.146802,0][3.03007,1.42866,-2.32033][-2.04576,-0.252091,-0.0321276][0.206777,0.146874,0][2.89875,1.71422,-2.02303][-0.694191,-2.46917,-0.0638092][0.087217,0.37597,0][3.03007,1.42866,-2.32033][-2.04576,-0.252091,-0.0321276][0.0937682,0.369555,0][3.00327,1.54321,-1.12481][-2.12368,-0.671841,0.649243][0.0912345,0.395351,0][2.69633,-2.36163,-1.40872][-3.01648,1.68249,0.601469][0.133987,0.828436,0][3.42719,-2.27589,0.024868][-0.828421,0.531102,0.177899][0.109319,0.815201,0][3.56644,-1.61861,-0.700205][-0.863719,0.38356,0.326911][0.124167,0.803375,0][3.76441,-1.62733,0.637584][-0.941776,0.332829,-0.047778][0.355723,0.738204,0][3.72705,-1.63605,-0.0422719][-0.930447,0.338477,0.140361][0.341093,0.739277,0][3.42719,-2.27589,0.024868][-0.828421,0.531102,0.177899][0.34158,0.726686,0][-0.798101,4.35106,0.284231][0.232641,1.02218,-1.03886][0.169495,0.476834,0][-0.105054,4.28898,0.378351][0.301507,1.42618,-1.53025][0.168463,0.49195,0][-0.251803,4.11062,0.569099][0.12126,-1.60153,1.40429][0.162564,0.489309,0][0.0897131,3.6198,0.466605][0.243201,0.0410466,-0.225485][0.457209,0.6161,0][-0.251803,4.11062,0.569099][0.12126,-1.60153,1.40429][0.469445,0.612009,0][-0.105054,4.28898,0.378351][0.301507,1.42618,-1.53025][0.472247,0.61613,0][-3.07582,1.32783,-0.522489][0.860825,-0.433468,0.266619][0.397752,0.892897,0][-3.16155,1.3548,1.42155][0.889496,-0.428076,-0.159835][0.403401,0.934472,0][-3.49332,0.656963,0.7745][0.957683,-0.286723,-0.0251743][0.388267,0.922151,0][-3.16771,0.688332,2.12935][0.885874,-0.235157,-0.399911][0.391077,0.951255,0][-3.39322,0.675315,1.46838][0.946579,-0.23346,-0.222449][0.389996,0.937023,0][-3.16155,1.3548,1.42155][0.889496,-0.428076,-0.159835][0.403401,0.934472,0][-1.05505,-2.11064,-3.32747][-0.341627,-1.48973,-0.0508353][0.655296,0.0972259,0][-0.853751,-2.17507,-2.80473][-0.418262,-1.82898,-0.0643849][0.667428,0.097237,0][-0.750863,-1.72513,-2.79209][0.450586,0.386018,1.26189][0.667423,0.107158,0][-0.145379,-1.86192,-2.83949][0.341491,0.597549,3.27831][0.629683,0.0566688,0][-0.750863,-1.72513,-2.79209][0.450586,0.386018,1.26189][0.616295,0.0562607,0][-0.853751,-2.17507,-2.80473][-0.418262,-1.82898,-0.0643849][0.616572,0.0463053,0][-1.13029,1.26037,3.74473][0.313984,-0.418885,-0.852026][0.324614,0.618622,0][-2.21051,1.3079,3.06581][0.576985,-0.439786,-0.688242][0.301325,0.617217,0][-1.49874,1.90236,3.13856][0.435579,-0.587397,-0.682082][0.31689,0.604642,0][-2.32728,1.95397,2.36014][0.628183,-0.614963,-0.476662][0.05332,0.966718,0][-1.49874,1.90236,3.13856][0.435579,-0.587397,-0.682082][0.034251,0.98,0][-2.21051,1.3079,3.06581][0.576985,-0.439786,-0.688242][0.0341254,0.960199,0][-2.08692,-1.85171,4.1121][-0.510651,-0.324031,0.796391][0.453102,0.376667,0][-2.19437,-1.03607,4.28352][-0.525174,-0.147466,0.83812][0.470643,0.379389,0][-2.96685,-1.0263,3.90326][-0.610675,-0.151054,0.77734][0.470472,0.396057,0][-1.43829,-1.92518,4.60844][-0.440067,-0.322189,0.838174][0.451838,0.362639,0][-1.30721,-2.72212,4.27749][-0.42738,-0.48721,0.761559][0.434711,0.359417,0][-0.580851,-2.733,4.4917][-0.0553055,-0.489242,0.870393][0.434836,0.343743,0][-0.543674,0.568962,4.1608][0.162696,-0.283294,-0.945132][0.337027,0.633745,0][-1.21543,0.577814,3.96819][0.360536,-0.245999,-0.899721][0.322537,0.633318,0][-1.13029,1.26037,3.74473][0.313984,-0.418885,-0.852026][0.324614,0.618622,0][-2.21051,1.3079,3.06581][0.576985,-0.439786,-0.688242][0.301325,0.617217,0][-1.13029,1.26037,3.74473][0.313984,-0.418885,-0.852026][0.324614,0.618622,0][-1.21543,0.577814,3.96819][0.360536,-0.245999,-0.899721][0.322537,0.633318,0][-3.07582,1.32783,-0.522489][0.860825,-0.433468,0.266619][0.109265,0.937221,0][-2.67477,1.32563,-1.31492][1.50608,-0.0471571,0.309556][0.123568,0.940408,0][-2.49068,1.83236,-1.07872][0.0258396,-0.726455,-0.00394824][0.121795,0.951852,0][-2.49068,1.83236,-1.07872][0.0258396,-0.726455,-0.00394824][0.129152,0.286238,0][-2.67477,1.32563,-1.31492][1.50608,-0.0471571,0.309556][0.11811,0.288732,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.116929,0.270809,0][0.801441,1.27617,3.93194][-0.107939,-0.431471,-0.895646][0.366295,0.618959,0][-1.13029,1.26037,3.74473][0.313984,-0.418885,-0.852026][0.324614,0.618622,0][0.156778,1.88733,3.62169][0.0298038,-0.549037,-0.835266][0.352602,0.605547,0][0.156778,1.88733,3.62169][0.0298038,-0.549037,-0.835266][0.352602,0.605547,0][1.31129,1.91685,3.41331][-0.256656,-0.585099,-0.769277][0.37752,0.605316,0][0.801441,1.27617,3.93194][-0.107939,-0.431471,-0.895646][0.366295,0.618959,0][-0.972939,3.46368,-1.64847][-0.0748411,0.866051,-0.494322][0.49684,0.221304,0][-1.28687,2.94712,-2.25249][-0.213628,0.714272,-0.666467][0.492612,0.23631,0][-1.78952,2.94609,-1.92064][-0.536472,0.699311,-0.4724][0.480257,0.232708,0][-0.603515,3.74584,-0.963077][0.117025,0.966269,-0.229412][0.500851,0.204524,0][-0.972939,3.46368,-1.64847][-0.0748411,0.866051,-0.494322][0.49684,0.221304,0][-1.36463,3.46104,-1.38824][-0.422113,0.866473,-0.266545][0.487195,0.218465,0][-2.73842,-1.46301,2.65118][0.787778,0.388949,-0.477625][0.345347,0.967821,0][-3.29319,-1.45958,1.41805][0.899681,0.343005,-0.270039][0.344399,0.941148,0][-3.22785,-0.743402,2.1369][0.900485,0.163009,-0.40318][0.36106,0.954853,0][-3.56366,-0.778215,0.752258][0.988424,0.141605,-0.0544635][0.358141,0.925116,0][-3.45902,-0.758504,1.4602][0.961035,0.14386,-0.236044][0.359916,0.940288,0][-3.29319,-1.45958,1.41805][0.899681,0.343005,-0.270039][0.344399,0.941148,0][-1.96488,3.48006,-0.673054][-0.315806,0.862914,-0.39452][0.470436,0.20758,0][-2.56447,2.95676,-0.994387][-0.52662,0.713136,-0.462718][0.458552,0.218611,0][-2.80571,2.96131,-0.438946][-0.686669,0.720547,-0.0964196][0.450062,0.208726,0][-1.28269,3.7475,-0.290009][-0.0135615,0.963574,-0.267097][0.482705,0.195031,0][-1.96488,3.48006,-0.673054][-0.315806,0.862914,-0.39452][0.470436,0.20758,0][-2.15145,3.48818,-0.242362][-0.490064,0.871668,-0.00556167][0.463878,0.199907,0][-2.50521,-1.48869,-1.77708][0.695942,0.328204,0.638708][0.333097,0.873049,0][-2.14648,-2.42854,-1.4593][2.18026,-0.903557,-0.0169461][0.312721,0.882283,0][-1.93961,-1.91437,-2.05969][1.32067,-1.21719,0.121371][0.321364,0.868254,0][-1.93961,-1.91437,-2.05969][1.32067,-1.21719,0.121371][0.625275,0.139771,0][-2.14648,-2.42854,-1.4593][2.18026,-0.903557,-0.0169461][0.639506,0.150178,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.617469,0.158045,0][-0.798101,4.35106,0.853967][0.0472788,-1.04725,1.03886][0.480563,0.623012,0][-0.105054,4.28898,0.759847][0.0557934,-0.892554,0.827024][0.46591,0.626282,0][0.0416948,4.46735,0.569099][0.165301,0.803969,-0.878957][0.462271,0.622877,0][0.0897131,3.6198,0.671592][-0.271165,-0.12141,0.322146][0.500684,0.619955,0][0.0416948,4.46735,0.569099][0.165301,0.803969,-0.878957][0.482484,0.622166,0][-0.105054,4.28898,0.759847][0.0557934,-0.892554,0.827024][0.485744,0.61805,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.361563,0.177712,0][2.28358,0.240962,-3.40082][-0.607071,1.99774,-0.0730785][0.378702,0.173253,0][2.34178,-0.238315,-3.49488][0.338448,0.0747115,-0.938015][0.379382,0.183649,0][2.59968,0.315043,-3.22939][-0.75527,0.709562,-0.0651227][0.385601,0.172036,0][3.06675,-0.215898,-3.05888][0.685243,0.0851221,-0.723323][0.395028,0.184033,0][2.34178,-0.238315,-3.49488][0.338448,0.0747115,-0.938015][0.379382,0.183649,0][3.54332,1.22602,1.33433][-0.897961,-0.411747,-0.155337][0.375417,0.798365,0][3.44407,1.20118,-0.605626][-0.86168,-0.435844,0.259898][0.333668,0.8014,0][3.83279,0.494151,-0.0293971][-0.952072,-0.280608,0.121727][0.344807,0.784046,0][3.08028,0.919101,-1.51875][-2.23314,-0.497773,0.352073][0.313666,0.798246,0][3.66469,0.513725,-0.705833][-0.90707,-0.249739,0.338901][0.330332,0.786187,0][3.44407,1.20118,-0.605626][-0.86168,-0.435844,0.259898][0.333668,0.8014,0][2.1547,-2.76591,2.61494][-0.536795,0.652194,-0.535252][0.0485286,0.832333,0][1.23557,-2.76906,3.22395][-0.295844,0.650883,-0.699162][0.0299795,0.841321,0][1.94732,-2.16952,3.31387][-0.491964,0.489053,-0.720276][0.031992,0.822138,0][0.791056,-2.1951,3.78828][-0.195101,0.504719,-0.840949][0.364852,0.693847,0][1.94732,-2.16952,3.31387][-0.491964,0.489053,-0.720276][0.389807,0.693701,0][1.23557,-2.76906,3.22395][-0.295844,0.650883,-0.699162][0.37424,0.706386,0][-2.59441,-3.9551,1.27612][-0.510404,-0.812213,0.282485][0.24736,0.488851,0][-3.19793,-3.33611,1.43157][-0.701895,-0.63765,0.317405][0.262721,0.485496,0][-3.29111,-3.35027,0.778714][-0.758234,-0.646823,-0.0818598][0.262759,0.499583,0][-1.88423,-4.28503,1.11074][-0.187565,-0.956344,0.224111][0.376482,0.355623,0][-2.59441,-3.9551,1.27612][-0.510404,-0.812213,0.282485][0.3897,0.361221,0][-2.6663,-3.95848,0.74162][-0.563163,-0.81689,-0.124653][0.383929,0.371324,0][0.169458,-2.21154,3.83911][0.0550603,0.496625,-0.866217][0.351435,0.693983,0][-1.60393,-2.19513,3.30987][0.408159,0.511229,-0.756341][0.313181,0.693006,0][-1.76763,-1.54109,3.56666][0.468293,0.353368,-0.809835][0.309879,0.678838,0][-2.29978,-1.50516,3.15932][0.660944,0.330513,-0.673731][0.0829657,0.602922,0][-1.76763,-1.54109,3.56666][0.468293,0.353368,-0.809835][0.0972071,0.601549,0][-1.60393,-2.19513,3.30987][0.408159,0.511229,-0.756341][0.098141,0.616439,0][-3.29319,-1.45958,1.41805][0.899681,0.343005,-0.270039][0.344399,0.941148,0][-2.73842,-1.46301,2.65118][0.787778,0.388949,-0.477625][0.345347,0.967821,0][-2.09039,-2.16718,2.93798][0.650628,0.507466,-0.564944][0.328828,0.97594,0][-1.60393,-2.19513,3.30987][0.408159,0.511229,-0.756341][0.133614,0.601549,0][-2.09039,-2.16718,2.93798][0.650628,0.507466,-0.564944][0.126056,0.608858,0][-2.29978,-1.50516,3.15932][0.660944,0.330513,-0.673731][0.112491,0.602499,0][-2.6031,-2.71923,1.24957][0.742552,0.633671,-0.216973][0.314874,0.940868,0][-2.66174,-2.72939,0.166405][0.759337,0.640485,0.114829][0.312214,0.917648,0][-3.07455,-2.13914,0.106199][0.851621,0.511393,0.114973][0.326031,0.914759,0][-2.66298,-2.14718,-1.07076][0.751173,0.51215,0.416463][0.321486,0.889718,0][-3.07455,-2.13914,0.106199][0.851621,0.511393,0.114973][0.326031,0.914759,0][-2.66174,-2.72939,0.166405][0.759337,0.640485,0.114829][0.312214,0.917648,0][2.96751,-2.80598,1.1901][-0.735732,0.637422,-0.228893][0.255892,0.816298,0][2.1547,-2.76591,2.61494][-0.536795,0.652194,-0.535252][0.268718,0.783518,0][2.85925,-2.19422,2.41601][-0.705737,0.512532,-0.489129][0.276257,0.799417,0][1.94732,-2.16952,3.31387][-0.491964,0.489053,-0.720276][0.031992,0.822138,0][2.85925,-2.19422,2.41601][-0.705737,0.512532,-0.489129][0.0564519,0.814428,0][2.1547,-2.76591,2.61494][-0.536795,0.652194,-0.535252][0.0485286,0.832333,0][-0.725614,3.44611,2.85714][-0.329408,0.859445,0.390954][0.472478,0.127043,0][-0.996556,2.89668,3.49901][-0.368292,0.72521,0.581749][0.460902,0.116179,0][-0.422068,2.89058,3.66571][-0.00211382,0.71614,0.697953][0.471445,0.109071,0][-0.434566,3.74269,2.13409][-0.258329,0.964002,0.0629826][0.484114,0.139726,0][-0.725614,3.44611,2.85714][-0.329408,0.859445,0.390954][0.472478,0.127043,0][-0.273785,3.44232,2.98762][0.0642918,0.855873,0.513175][0.480779,0.121465,0][1.35732,2.9279,3.52835][0.351267,0.720372,0.598059][0.508552,0.100444,0][1.11842,3.46082,2.88133][0.30728,0.86454,0.39768][0.509766,0.114703,0][0.665155,3.45231,3.00009][-0.102101,0.856178,0.506493][0.499772,0.115176,0][0.52122,3.74666,2.23143][-0.196159,0.960628,0.196761][0.502876,0.13159,0][0.665155,3.45231,3.00009][-0.102101,0.856178,0.506493][0.499772,0.115176,0][1.11842,3.46082,2.88133][0.30728,0.86454,0.39768][0.509766,0.114703,0][-0.140797,2.95868,-2.59496][-0.192074,0.721525,-0.665214][0.518121,0.235993,0][-0.077658,3.4817,-1.91708][-0.217187,0.864554,-0.453184][0.516805,0.221068,0][0.393995,3.48701,-1.9108][0.218293,0.859903,-0.461427][0.526347,0.217908,0][0.33546,3.76632,-1.14334][0.22018,0.967629,-0.123346][0.521136,0.202188,0][0.393995,3.48701,-1.9108][0.218293,0.859903,-0.461427][0.526347,0.217908,0][-0.077658,3.4817,-1.91708][-0.217187,0.864554,-0.453184][0.516805,0.221068,0][0.535956,2.28938,-3.14861][0.223804,0.574524,-0.787295][0.343502,0.12703,0][0.598203,1.53697,-3.57598][0.226671,0.397234,-0.889284][0.343943,0.143315,0][-0.195357,1.57409,-3.58047][-0.186344,0.391843,-0.900963][0.326891,0.141566,0][0.840329,1.58378,-3.42435][1.92671,-0.102693,-0.0446861][0.349215,0.142596,0][0.535956,2.28938,-3.14861][0.223804,0.574524,-0.787295][0.343502,0.12703,0][1.19935,2.16448,-2.86939][0.270064,0.550162,-0.790182][0.357645,0.130515,0][2.58006,2.45252,1.64583][-0.630293,-0.722413,-0.284342][0.0802117,0.879057,0][1.99969,2.46521,2.45039][-0.484135,-0.707505,-0.51483][0.0962302,0.892779,0][1.87234,2.91578,1.7505][-0.449569,-0.841283,-0.300217][0.0790105,0.897408,0][2.74364,2.43525,1.17619][-0.699392,-0.705399,-0.115161][0.0335201,0.675736,0][2.58006,2.45252,1.64583][-0.630293,-0.722413,-0.284342][0.0423835,0.669753,0][1.87234,2.91578,1.7505][-0.449569,-0.841283,-0.300217][0.0543794,0.676066,0][-3.16155,1.3548,1.42155][0.889496,-0.428076,-0.159835][0.403401,0.934472,0][-3.07582,1.32783,-0.522489][0.860825,-0.433468,0.266619][0.397752,0.892897,0][-2.86635,1.9564,0.155313][0.832273,-0.543524,0.109097][0.41194,0.905994,0][-2.49068,1.83236,-1.07872][0.0258396,-0.726455,-0.00394824][0.121795,0.951852,0][-2.86635,1.9564,0.155313][0.832273,-0.543524,0.109097][0.099447,0.952338,0][-3.07582,1.32783,-0.522489][0.860825,-0.433468,0.266619][0.109265,0.937221,0][1.15669,2.45727,2.97286][-0.229695,-0.719264,-0.655667][0.106192,0.909785,0][1.99969,2.46521,2.45039][-0.484135,-0.707505,-0.51483][0.0962302,0.892779,0][1.84154,1.92291,3.1479][-0.451887,-0.581471,-0.676528][0.113585,0.892154,0][1.99969,2.46521,2.45039][-0.484135,-0.707505,-0.51483][0.0962302,0.892779,0][1.15669,2.45727,2.97286][-0.229695,-0.719264,-0.655667][0.106192,0.909785,0][1.30694,2.91028,2.27176][-0.266054,-0.843867,-0.465944][0.0892495,0.909504,0][3.44407,1.20118,-0.605626][-0.86168,-0.435844,0.259898][0.333668,0.8014,0][3.54332,1.22602,1.33433][-0.897961,-0.411747,-0.155337][0.375417,0.798365,0][3.28043,1.84181,0.682856][-0.844063,-0.536095,0.0126173][0.362477,0.813452,0][3.00337,1.8922,1.82207][-0.770083,-0.558477,-0.308344][0.387145,0.813645,0][3.28043,1.84181,0.682856][-0.844063,-0.536095,0.0126173][0.362477,0.813452,0][3.54332,1.22602,1.33433][-0.897961,-0.411747,-0.155337][0.375417,0.798365,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][1.23629,3.76992,-0.759967][0.267675,0.963372,0.0162606][0.536921,0.18852,0][0.959084,3.77235,-0.945444][-0.118313,0.971251,-0.206577][0.532515,0.194111,0][1.30053,3.48965,-1.6189][0.104081,0.855344,-0.507498][0.54284,0.206086,0][0.959084,3.77235,-0.945444][-0.118313,0.971251,-0.206577][0.532515,0.194111,0][1.23629,3.76992,-0.759967][0.267675,0.963372,0.0162606][0.536921,0.18852,0][1.37894,3.76031,1.81937][-0.0774477,0.956712,0.280542][0.522997,0.134551,0][0.805785,3.71346,1.19296][-0.220013,0.972248,0.0795534][0.515288,0.151165,0][0.65864,3.58201,1.26584][-0.685217,1.20019,0.505061][0.511374,0.150754,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.805785,3.71346,1.19296][-0.220013,0.972248,0.0795534][0.515288,0.151165,0][1.70034,3.62017,1.28138][0.178607,0.982118,0.0595343][0.532529,0.143712,0][-1.53052,2.30549,-2.74848][-0.317153,0.5652,-0.761553][0.299001,0.12421,0][-1.28687,2.94712,-2.25249][-0.213628,0.714272,-0.666467][0.305019,0.110679,0][-0.692312,2.83477,-2.36706][-0.217421,0.717773,-0.661461][0.317693,0.113811,0][-0.508997,3.33345,-1.7387][-0.173712,0.864519,-0.471625][0.506383,0.220327,0][-0.692312,2.83477,-2.36706][-0.217421,0.717773,-0.661461][0.505025,0.234977,0][-1.28687,2.94712,-2.25249][-0.213628,0.714272,-0.666467][0.492612,0.23631,0][0.167832,-4.17773,2.64077][0.00791325,-0.970825,0.239657][0.361505,0.302664,0][0.171503,-3.88541,3.34285][0.0112224,-0.825254,0.56465][0.369787,0.289929,0][-0.363655,-4.03182,3.40935][0.0637306,-0.826655,0.559089][0.380129,0.296016,0][-0.487277,-3.43991,4.01386][-0.00916173,-0.643692,0.76523][0.0365431,0.0651771,0][-0.363655,-4.03182,3.40935][0.0637306,-0.826655,0.559089][0.0390565,0.0469179,0][0.171503,-3.88541,3.34285][0.0112224,-0.825254,0.56465][0.0510349,0.0480286,0][-2.8584,2.33297,2.79256][-0.696709,0.60886,0.379324][0.346182,0.0726463,0][-3.22857,1.58884,3.07258][-0.786742,0.429279,0.443573][0.346638,0.0537279,0][-2.72618,1.53538,3.65282][-0.512999,0.426331,0.745033][0.363239,0.0537268,0][-3.22857,1.58884,3.07258][-0.786742,0.429279,0.443573][0.367578,0.450088,0][-2.8584,2.33297,2.79256][-0.696709,0.60886,0.379324][0.382058,0.45613,0][-3.07929,2.2496,2.1317][-0.728013,0.597079,0.336888][0.381088,0.470389,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-1.42165,3.61329,0.329941][-0.179555,0.983543,-0.0200869][0.475387,0.183316,0][-1.49616,3.75864,0.646457][-0.148468,0.966071,-0.211339][0.472321,0.177122,0][-2.27233,3.49831,0.688241][-0.470139,0.868413,-0.157569][0.455407,0.181526,0][-1.49616,3.75864,0.646457][-0.148468,0.966071,-0.211339][0.472321,0.177122,0][-1.42165,3.61329,0.329941][-0.179555,0.983543,-0.0200869][0.475387,0.183316,0][-2.52618,-3.82578,0.221759][-0.57246,-0.814139,-0.0973023][0.374371,0.378141,0][-1.82995,-4.14999,0.328579][-0.261161,-0.964273,-0.0444044][0.364935,0.368041,0][-1.93574,-4.28385,0.713688][-0.230956,-0.958925,-0.16469][0.372152,0.363096,0][-1.82995,-4.14999,0.328579][-0.261161,-0.964273,-0.0444044][0.364935,0.368041,0][-2.52618,-3.82578,0.221759][-0.57246,-0.814139,-0.0973023][0.374371,0.378141,0][-2.49079,-3.97106,-0.319614][-0.572417,-0.819221,-0.0348809][0.367106,0.387291,0][0.169089,-2.79261,3.42631][-0.0294075,0.659388,-0.751227][0.351223,0.706519,0][-0.373056,-2.79647,3.36787][0.211134,0.630418,-0.746991][0.339526,0.706412,0][0.169458,-2.21154,3.83911][0.0550603,0.496625,-0.866217][0.351435,0.693983,0][-1.60393,-2.19513,3.30987][0.408159,0.511229,-0.756341][0.313181,0.693006,0][0.169458,-2.21154,3.83911][0.0550603,0.496625,-0.866217][0.351435,0.693983,0][-0.373056,-2.79647,3.36787][0.211134,0.630418,-0.746991][0.339526,0.706412,0][-2.32728,1.95397,2.36014][0.628183,-0.614963,-0.476662][0.237589,0.974344,0][-2.80659,1.97132,1.32072][0.780963,-0.597983,-0.180314][0.213638,0.98,0][-2.18104,2.49341,1.63626][0.605637,-0.740255,-0.291935][0.223228,0.966378,0][-2.41546,2.49836,0.683478][0.680787,-0.73177,-0.0322746][0.202099,0.967324,0][-2.18104,2.49341,1.63626][0.605637,-0.740255,-0.291935][0.223228,0.966378,0][-2.80659,1.97132,1.32072][0.780963,-0.597983,-0.180314][0.213638,0.98,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-1.05281,3.60223,-0.516893][-0.149626,0.981626,-0.118414][0.488339,0.198384,0][-1.28269,3.7475,-0.290009][-0.0135615,0.963574,-0.267097][0.482705,0.195031,0][-1.96488,3.48006,-0.673054][-0.315806,0.862914,-0.39452][0.470436,0.20758,0][-1.28269,3.7475,-0.290009][-0.0135615,0.963574,-0.267097][0.482705,0.195031,0][-1.05281,3.60223,-0.516893][-0.149626,0.981626,-0.118414][0.488339,0.198384,0][2.77883,1.71746,-1.11874][-2.05047,-0.419825,1.03203][0.323654,0.815609,0][2.85973,1.86547,-1.00414][-0.731269,-0.531724,0.427219][0.326338,0.818265,0][2.56257,1.79565,-1.51661][-0.988608,-1.34602,0.598864][0.315282,0.818708,0][3.00327,1.54321,-1.12481][-2.12368,-0.671841,0.649243][0.323178,0.81111,0][3.44407,1.20118,-0.605626][-0.86168,-0.435844,0.259898][0.333668,0.8014,0][2.85973,1.86547,-1.00414][-0.731269,-0.531724,0.427219][0.326338,0.818265,0][-2.56447,2.95676,-0.994387][-0.52662,0.713136,-0.462718][0.458552,0.218611,0][-3.05569,2.3026,-1.2369][-0.656161,0.562445,-0.503098][0.4479,0.227468,0][-3.34718,2.30114,-0.580576][-0.807244,0.570668,-0.150646][0.437713,0.215837,0][-3.05569,2.3026,-1.2369][-0.656161,0.562445,-0.503098][0.200083,0.536269,0][-2.56447,2.95676,-0.994387][-0.52662,0.713136,-0.462718][0.191452,0.552531,0][-2.12906,2.83087,-1.41806][-0.543475,0.711128,-0.446018][0.179308,0.546911,0][-2.691,-2.55963,-1.892][-0.652126,-0.486328,-0.581564][0.222246,0.196154,0][-2.94257,-1.79459,-2.12102][-0.707556,-0.313274,-0.633422][0.221967,0.213019,0][-2.45516,-1.86283,-2.80051][-0.665891,-0.316244,-0.675706][0.204804,0.214355,0][-2.45516,-1.86283,-2.80051][-0.665891,-0.316244,-0.675706][0.204804,0.214355,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.206623,0.19695,0][-2.691,-2.55963,-1.892][-0.652126,-0.486328,-0.581564][0.222246,0.196154,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-0.930182,-4.17191,2.33283][-0.153474,-0.968637,0.195417][0.376022,0.322101,0][-1.28956,-4.30386,2.14969][-0.0340184,-0.961283,0.273456][0.380082,0.33017,0][-1.78964,-3.99815,2.67011][-0.286329,-0.822926,0.490723][0.394465,0.327021,0][-1.28956,-4.30386,2.14969][-0.0340184,-0.961283,0.273456][0.380082,0.33017,0][-0.930182,-4.17191,2.33283][-0.153474,-0.968637,0.195417][0.376022,0.322101,0][1.00023,-3.36245,-1.43206][-0.0262323,2.10866,-0.0364691][0.184332,0.818425,0][0.295969,-3.35103,-1.60632][-0.712714,-0.046139,0.00453053][0.171931,0.809289,0][0.691364,-3.63482,-1.10859][-0.141801,0.88385,0.44576][0.184911,0.808152,0][1.00023,-3.36245,-1.43206][-0.0262323,2.10866,-0.0364691][0.184332,0.818425,0][0.691364,-3.63482,-1.10859][-0.141801,0.88385,0.44576][0.184911,0.808152,0][1.69086,-3.64785,-0.342411][-0.373796,0.895959,0.239863][0.211157,0.814008,0][-3.91876,-1.8708,-0.81312][-0.919533,-0.326351,-0.218983][0.296509,0.533931,0][-3.579,-2.65797,-0.688025][-0.845835,-0.502525,-0.178975][0.278531,0.531232,0][-3.6123,-2.56376,0.0666937][-0.859378,-0.495449,-0.12649][0.280656,0.514947,0][-3.579,-2.65797,-0.688025][-0.845835,-0.502525,-0.178975][0.278531,0.531232,0][-3.91876,-1.8708,-0.81312][-0.919533,-0.326351,-0.218983][0.296509,0.533931,0][-3.56059,-1.86281,-1.55822][-0.751678,-0.322602,-0.575246][0.295376,0.550008,0][0.977662,-3.84141,-2.03254][0.137193,-0.829905,-0.540774][0.545175,0.0403081,0][1.58309,-3.37673,-2.54142][-0.0148795,1.78642,-0.0347421][0.551954,0.0217485,0][1.50964,-3.98886,-1.95733][0.0775338,-0.831089,-0.550708][0.557101,0.0393358,0][0.977662,-3.84141,-2.03254][0.137193,-0.829905,-0.540774][0.285666,0.371635,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.276964,0.379515,0][1.58309,-3.37673,-2.54142][-0.0148795,1.78642,-0.0347421][0.267424,0.371527,0][3.70671,-1.89813,3.03386][0.82365,-0.309621,0.475116][0.543913,0.453368,0][3.41129,-2.70486,2.85229][0.760428,-0.490457,0.425678][0.558377,0.461418,0][3.66553,-2.63516,2.13343][0.779162,-0.48794,0.393474][0.553718,0.476224,0][3.41129,-2.70486,2.85229][0.760428,-0.490457,0.425678][0.20494,0.0835229,0][3.70671,-1.89813,3.03386][0.82365,-0.309621,0.475116][0.205961,0.102034,0][3.1625,-1.85682,3.67085][0.590365,-0.303897,0.747741][0.187875,0.102727,0][1.04236,-3.2689,2.7318][-0.255377,0.790547,-0.556613][0.254456,0.762245,0][0.170102,-3.28236,2.90927][0.000401124,0.799937,-0.600083][0.245582,0.745454,0][0.169089,-2.79261,3.42631][-0.0294075,0.659388,-0.751227][0.255312,0.739718,0][-0.373056,-2.79647,3.36787][0.211134,0.630418,-0.746991][0.122633,0.633035,0][0.169089,-2.79261,3.42631][-0.0294075,0.659388,-0.751227][0.133614,0.635581,0][0.170102,-3.28236,2.90927][0.000401124,0.799937,-0.600083][0.128784,0.650164,0][1.74868,-3.646,1.24592][-0.395549,0.89302,-0.214606][0.238393,0.793168,0][0.814502,-3.65529,2.16774][-0.209966,0.883874,-0.417948][0.241087,0.765159,0][1.04236,-3.2689,2.7318][-0.255377,0.790547,-0.556613][0.254456,0.762245,0][0.170102,-3.28236,2.90927][0.000401124,0.799937,-0.600083][0.245582,0.745454,0][1.04236,-3.2689,2.7318][-0.255377,0.790547,-0.556613][0.254456,0.762245,0][0.814502,-3.65529,2.16774][-0.209966,0.883874,-0.417948][0.241087,0.765159,0][0.93798,-0.468988,-3.82231][0.478129,0.000252229,-1.17083][0.348863,0.186938,0][0.810369,-0.152942,-3.88974][0.476304,0.1788,-1.25868][0.346492,0.179976,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.361563,0.177712,0][0.930866,-0.47532,-3.13645][-0.182819,1.5385,0.0123073][0.02,0.338845,0][0.810369,-0.152942,-3.88974][0.476304,0.1788,-1.25868][0.0274209,0.355096,0][0.93798,-0.468988,-3.82231][0.478129,0.000252229,-1.17083][0.020067,0.353639,0][1.44461,2.92601,-1.06033][-0.317606,-0.830702,0.457231][0.18116,0.87802,0][0.36766,2.9257,-1.51669][-0.0687725,-0.841218,0.536304][0.167115,0.898621,0][0.426702,2.48335,-2.07552][-0.0978229,-0.723807,0.683034][0.155212,0.896663,0][-0.559164,2.4737,-1.98854][0.226091,-0.725995,0.649473][0.153038,0.917637,0][0.426702,2.48335,-2.07552][-0.0978229,-0.723807,0.683034][0.155212,0.896663,0][0.36766,2.9257,-1.51669][-0.0687725,-0.841218,0.536304][0.167115,0.898621,0][2.37738,2.92615,2.90187][0.372632,0.710654,0.596755][0.521072,0.0516856,0][2.75197,2.27641,3.29716][0.48192,0.564307,0.670306][0.520931,0.0337191,0][3.2316,2.24785,2.75946][0.73828,0.557441,0.37974][0.536479,0.0340631,0][2.75197,2.27641,3.29716][0.48192,0.564307,0.670306][0.544546,0.274327,0][2.37738,2.92615,2.90187][0.372632,0.710654,0.596755][0.558377,0.282729,0][1.83391,2.81538,3.16399][0.379124,0.710786,0.592494][0.555719,0.294398,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][-1.31905,-3.65936,-0.293752][0.408347,0.88702,0.215519][0.171232,0.763904,0][-0.884603,-3.92758,0.4321][0.285523,0.957267,0.0460048][0.188574,0.760322,0][-1.31905,-3.65936,-0.293752][0.408347,0.88702,0.215519][0.171232,0.763904,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][-1.80798,-3.15113,-0.843118][2.64493,2.87025,0.996407][0.156646,0.764844,0][-0.798101,4.35106,0.853967][0.0472788,-1.04725,1.03886][0.483655,0.607635,0][-0.772687,4.63479,0.569099][0.22758,1.02375,-1.05941][0.48269,0.61613,0][-0.823515,4.06733,0.569099][0.0548669,-1.04619,1.00904][0.475132,0.606958,0][0.0416948,4.46735,0.569099][0.165301,0.803969,-0.878957][0.500684,0.636867,0][-0.772687,4.63479,0.569099][0.22758,1.02375,-1.05941][0.482745,0.636867,0][-0.798101,4.35106,0.853967][0.0472788,-1.04725,1.03886][0.483441,0.628203,0][-0.772687,4.63479,0.569099][0.22758,1.02375,-1.05941][0.48269,0.61613,0][-0.798101,4.35106,0.284231][0.232641,1.02218,-1.03886][0.474168,0.615453,0][-0.823515,4.06733,0.569099][0.0548669,-1.04619,1.00904][0.475132,0.606958,0][-0.251803,4.11062,0.569099][0.12126,-1.60153,1.40429][0.162564,0.489309,0][-0.823515,4.06733,0.569099][0.0548669,-1.04619,1.00904][0.160814,0.477068,0][-0.798101,4.35106,0.284231][0.232641,1.02218,-1.03886][0.169495,0.476834,0][-0.68113,0.645088,4.96101][-0.0794947,0.236255,0.968434][0.507657,0.347578,0][-0.688994,-0.217079,5.08371][-0.0882229,0.0454196,0.995065][0.489055,0.347321,0][0.176537,-0.226114,4.99901][-0.00570034,0.0487583,0.998794][0.489289,0.328645,0][-0.688994,-0.217079,5.08371][-0.0882229,0.0454196,0.995065][0.489055,0.347321,0][-0.68113,0.645088,4.96101][-0.0794947,0.236255,0.968434][0.507657,0.347578,0][-1.49969,0.659321,4.73083][-0.437003,0.233095,0.868732][0.507559,0.365242,0][-2.20834,-2.58285,-1.1897][0.353761,0.335966,-0.0282743][0.310345,0.88841,0][-2.66298,-2.14718,-1.07076][0.751173,0.51215,0.416463][0.321486,0.889718,0][-2.09166,-2.74751,-1.15552][1.82615,1.46338,0.232478][0.306528,0.889589,0][-2.09166,-2.74751,-1.15552][1.82615,1.46338,0.232478][0.668307,0.0461386,0][-1.79001,-3.12667,-2.41751][1.68487,3.12243,-0.0250921][0.641069,0.0565531,0][-2.20834,-2.58285,-1.1897][0.353761,0.335966,-0.0282743][0.667606,0.0418287,0][3.23259,0.733937,3.78253][0.610629,0.225018,0.759275][0.492576,0.422461,0][3.32562,-0.121064,3.84497][0.636569,0.0400068,0.770181][0.510791,0.426084,0][3.90165,-0.165251,3.1624][0.867897,0.0392079,0.495194][0.509804,0.441089,0][3.32562,-0.121064,3.84497][0.636569,0.0400068,0.770181][0.493113,0.260766,0][3.23259,0.733937,3.78253][0.610629,0.225018,0.759275][0.511511,0.263196,0][2.47462,0.698566,4.19304][0.542575,0.232493,0.807192][0.510373,0.279529,0][3.28043,1.84181,0.682856][-0.844063,-0.536095,0.0126173][0.362477,0.813452,0][3.00337,1.8922,1.82207][-0.770083,-0.558477,-0.308344][0.387145,0.813645,0][2.74364,2.43525,1.17619][-0.699392,-0.705399,-0.115161][0.374205,0.82717,0][2.58006,2.45252,1.64583][-0.630293,-0.722413,-0.284342][0.384383,0.827354,0][2.74364,2.43525,1.17619][-0.699392,-0.705399,-0.115161][0.374205,0.82717,0][3.00337,1.8922,1.82207][-0.770083,-0.558477,-0.308344][0.387145,0.813645,0][-1.80096,-2.76189,2.63424][0.554734,0.642667,-0.52844][0.31447,0.970987,0][-2.6031,-2.71923,1.24957][0.742552,0.633671,-0.216973][0.314874,0.940868,0][-3.00362,-2.11972,1.34785][0.830099,0.494218,-0.258234][0.329231,0.941359,0][-3.07455,-2.13914,0.106199][0.851621,0.511393,0.114973][0.326031,0.914759,0][-3.00362,-2.11972,1.34785][0.830099,0.494218,-0.258234][0.329231,0.941359,0][-2.6031,-2.71923,1.24957][0.742552,0.633671,-0.216973][0.314874,0.940868,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][-0.472522,-3.92835,-0.256418][0.177471,0.960941,0.21236][0.18268,0.776531,0][-0.884603,-3.92758,0.4321][0.285523,0.957267,0.0460048][0.188574,0.760322,0][-0.884603,-3.92758,0.4321][0.285523,0.957267,0.0460048][0.188574,0.760322,0][-0.472522,-3.92835,-0.256418][0.177471,0.960941,0.21236][0.18268,0.776531,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][-3.61092,-1.74423,2.34405][-0.866637,-0.317869,0.384577][0.298081,0.465807,0][-4.22501,-1.00074,1.66678][-0.932984,-0.144244,0.329749][0.316128,0.480421,0][-4.02428,-1.84048,1.62577][-0.884948,-0.323266,0.335211][0.297538,0.481306,0][-4.22501,-1.00074,1.66678][-0.932984,-0.144244,0.329749][0.316128,0.480421,0][-4.35128,-1.03423,0.808379][-0.988647,-0.14299,-0.046154][0.315875,0.498943,0][-4.02428,-1.84048,1.62577][-0.884948,-0.323266,0.335211][0.297538,0.481306,0][-2.28439,2.4874,-0.303052][0.661034,-0.711713,0.237695][0.18173,0.960557,0][-2.41546,2.49836,0.683478][0.680787,-0.73177,-0.0322746][0.202099,0.967324,0][-2.86635,1.9564,0.155313][0.832273,-0.543524,0.109097][0.188702,0.976493,0][-2.41546,2.49836,0.683478][0.680787,-0.73177,-0.0322746][0.202099,0.967324,0][-2.28439,2.4874,-0.303052][0.661034,-0.711713,0.237695][0.18173,0.960557,0][-1.83183,2.9214,0.238617][0.511786,-0.854896,0.0850215][0.195344,0.951794,0][2.37738,2.92615,2.90187][0.372632,0.710654,0.596755][0.521072,0.0516856,0][1.91074,3.47055,2.40236][0.196239,0.85613,0.478049][0.521524,0.0705346,0][1.48917,3.32943,2.60169][0.272547,0.859196,0.433012][0.512211,0.0712063,0][1.08932,3.61511,1.95704][0.547695,5.82811,0.925456][0.515725,0.133735,0][1.48917,3.32943,2.60169][0.272547,0.859196,0.433012][0.518648,0.118222,0][1.91074,3.47055,2.40236][0.196239,0.85613,0.478049][0.528983,0.119464,0][-1.2478,-3.65286,1.5834][0.384748,0.875395,-0.292665][0.203469,0.739334,0][-0.477227,-3.66421,2.18926][0.167401,0.885306,-0.433832][0.223954,0.743637,0][-0.70643,-3.92635,1.20403][0.215761,0.962682,-0.163371][0.203841,0.752658,0][-1.51969,-3.64757,0.98444][0.481217,0.87208,-0.0889189][0.18983,0.743105,0][-1.2478,-3.65286,1.5834][0.384748,0.875395,-0.292665][0.203469,0.739334,0][-0.70643,-3.92635,1.20403][0.215761,0.962682,-0.163371][0.203841,0.752658,0][-1.49874,1.90236,3.13856][0.435579,-0.587397,-0.682082][0.257409,0.960443,0][-2.32728,1.95397,2.36014][0.628183,-0.614963,-0.476662][0.237589,0.974344,0][-1.61224,2.46406,2.42678][0.450556,-0.733493,-0.508907][0.242263,0.95787,0][-2.18104,2.49341,1.63626][0.605637,-0.740255,-0.291935][0.223228,0.966378,0][-1.61224,2.46406,2.42678][0.450556,-0.733493,-0.508907][0.242263,0.95787,0][-2.32728,1.95397,2.36014][0.628183,-0.614963,-0.476662][0.237589,0.974344,0][3.06675,-0.215898,-3.05888][0.685243,0.0851221,-0.723323][0.395028,0.184033,0][2.59968,0.315043,-3.22939][-0.75527,0.709562,-0.0651227][0.385601,0.172036,0][2.95176,0.718481,-2.91691][-1.9698,1.80624,-0.141748][0.393669,0.163765,0][3.06675,-0.215898,-3.05888][0.685243,0.0851221,-0.723323][0.133827,0.37992,0][2.95176,0.718481,-2.91691][-1.9698,1.80624,-0.141748][0.115178,0.372556,0][3.09708,0.92863,-2.52952][0.451961,0.229621,-0.437329][0.113685,0.362943,0][0.574839,-1.50136,-3.01295][-0.0581411,0.319484,0.945806][0.221074,0.621576,0][0.560125,-1.72825,-2.9084][0.41034,-2.38579,-0.0286775][0.220495,0.616705,0][1.40427,-1.58283,-2.79453][0.22149,-1.42568,0.00393598][0.238851,0.618861,0][0.574839,-1.50136,-3.01295][-0.0581411,0.319484,0.945806][0.221074,0.621576,0][1.40427,-1.58283,-2.79453][0.22149,-1.42568,0.00393598][0.238851,0.618861,0][1.29743,-0.839366,-3.04752][-0.280574,0.132973,0.950577][0.237409,0.635004,0][-2.02535,1.42857,3.9796][-0.455426,0.421972,0.783917][0.523893,0.376962,0][-1.78395,2.15605,3.60735][-0.403115,0.589598,0.699909][0.539706,0.372115,0][-2.4073,2.28685,3.30791][-0.424582,0.601063,0.677092][0.542219,0.385626,0][-2.4073,2.28685,3.30791][-0.424582,0.601063,0.677092][0.542219,0.385626,0][-2.72618,1.53538,3.65282][-0.512999,0.426331,0.745033][0.52585,0.392133,0][-2.02535,1.42857,3.9796][-0.455426,0.421972,0.783917][0.523893,0.376962,0][1.17675,-4.27752,-1.2934][-0.0822306,-0.957543,-0.276313][0.293237,0.357351,0][1.50964,-3.98886,-1.95733][0.0775338,-0.831089,-0.550708][0.278082,0.363807,0][1.96562,-3.99502,-1.68145][0.433894,-0.832352,-0.344857][0.274002,0.353205,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.259016,0.357462,0][1.96562,-3.99502,-1.68145][0.433894,-0.832352,-0.344857][0.274002,0.353205,0][1.50964,-3.98886,-1.95733][0.0775338,-0.831089,-0.550708][0.278082,0.363807,0][-0.557526,2.22432,4.23551][-0.0407399,0.581031,0.812861][0.541785,0.345693,0][-0.646217,1.46777,4.67478][-0.0648497,0.419346,0.905507][0.525421,0.347231,0][0.144168,1.40401,4.59598][-0.00582079,0.414096,0.910215][0.524437,0.33015,0][-0.646217,1.46777,4.67478][-0.0648497,0.419346,0.905507][0.525421,0.347231,0][-0.557526,2.22432,4.23551][-0.0407399,0.581031,0.812861][0.541785,0.345693,0][-1.23619,2.23356,4.04009][-0.396547,0.590482,0.702909][0.541649,0.360337,0][3.28124,2.87351,1.37363][0.65869,0.69853,0.279613][0.558377,0.0584597,0][2.61736,3.44712,1.2147][0.455285,0.84833,0.270279][0.550567,0.0759883,0][2.37739,3.32686,1.61133][0.494271,0.848141,0.190663][0.540888,0.0724659,0][1.70034,3.62017,1.28138][0.178607,0.982118,0.0595343][0.532529,0.143712,0][2.37739,3.32686,1.61133][0.494271,0.848141,0.190663][0.543094,0.132903,0][2.61736,3.44712,1.2147][0.455285,0.84833,0.270279][0.550959,0.139392,0][0.96021,-2.73559,-3.12381][0.876416,0.0525242,-0.000967892][0.60919,0.119132,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.621193,0.133026,0][0.993508,-3.30741,-2.67042][0.336426,-0.826164,-1.06669][0.618973,0.131415,0][0.287102,-3.3381,-2.86945][-0.761105,-0.0492717,0.00483813][0.160544,0.163782,0][0.993508,-3.30741,-2.67042][0.336426,-0.826164,-1.06669][0.151267,0.154645,0][0.99957,-3.38209,-2.56752][-0.00599213,0.481671,-0.00833046][0.152684,0.152305,0][0.014432,-4.29238,-1.46845][-0.187044,-0.961522,-0.201224][0.31064,0.375383,0][-0.0652976,-3.97818,-2.20371][-0.213146,-0.823856,-0.525195][0.301455,0.38833,0][0.473982,-3.97981,-2.21814][0.186512,-0.819565,-0.54178][0.292153,0.381623,0][-0.0652976,-3.97818,-2.20371][-0.213146,-0.823856,-0.525195][0.17659,0.150348,0][-0.134386,-3.36433,-2.83859][-0.00733349,-0.754838,-0.741609][0.168096,0.167462,0][0.473982,-3.97981,-2.21814][0.186512,-0.819565,-0.54178][0.167329,0.144825,0][3.06317,-0.145346,-1.97581][-0.740237,-0.0874267,0.666637][0.276257,0.647915,0][2.56032,0.355795,-2.32892][-0.440779,-0.0151487,0.619774][0.266003,0.659294,0][2.54269,-0.863903,-2.42718][-0.593186,0.130486,0.79442][0.264212,0.633035,0][2.9258,0.758565,-1.84139][-0.865221,0.796526,-0.0505669][0.306506,0.795934,0][2.56032,0.355795,-2.32892][-0.440779,-0.0151487,0.619774][0.295464,0.789524,0][3.06317,-0.145346,-1.97581][-0.740237,-0.0874267,0.666637][0.302105,0.77649,0][-3.3586,-1.81648,3.12777][-0.836483,-0.322076,0.443354][0.295626,0.448897,0][-3.06345,-2.61598,2.92032][-0.782504,-0.486244,0.388914][0.277548,0.453373,0][-2.57349,-2.66639,3.48892][-0.52877,-0.4954,0.689188][0.274693,0.441104,0][-3.06345,-2.61598,2.92032][-0.782504,-0.486244,0.388914][0.277548,0.453373,0][-3.3586,-1.81648,3.12777][-0.836483,-0.322076,0.443354][0.295626,0.448897,0][-3.61092,-1.74423,2.34405][-0.866637,-0.317869,0.384577][0.298081,0.465807,0][-4.14703,-1.00095,-0.0238417][-0.980255,-0.138737,-0.140901][0.31584,0.5169,0][-4.18486,-0.163511,-0.0243253][-0.988995,0.0506223,-0.139016][0.333788,0.516911,0][-4.14929,-0.15671,-0.894337][-0.969037,0.0489349,-0.242019][0.333803,0.535683,0][-4.14929,-0.15671,-0.894337][-0.969037,0.0489349,-0.242019][0.333803,0.535683,0][-4.03293,0.709426,-0.828614][-0.944858,0.239131,-0.223742][0.351801,0.534265,0][-3.67534,0.71866,-1.59126][-0.78656,0.246312,-0.566263][0.350697,0.550721,0][-1.0894,-4.31196,-1.0222][-0.276178,-0.959161,-0.0611195][0.335201,0.382014,0][-1.5413,-3.9954,-1.61003][-0.463672,-0.816969,-0.342885][0.334231,0.397229,0][-1.08994,-3.99322,-1.89673][-0.120841,-0.815176,-0.566467][0.322841,0.396318,0][-1.44321,-3.19153,-2.58688][-0.0880624,-0.714982,-0.785464][0.193152,0.181061,0][-1.08994,-3.99322,-1.89673][-0.120841,-0.815176,-0.566467][0.197961,0.157483,0][-1.5413,-3.9954,-1.61003][-0.463672,-0.816969,-0.342885][0.209394,0.159024,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][1.91022,3.75602,0.688119][0.178717,0.963441,-0.199605][0.541117,0.154421,0][1.82885,3.61471,0.370655][0.21468,0.975658,-0.0447644][0.541042,0.16163,0][2.56444,3.29639,0.285115][0.542365,0.83402,-0.101245][0.555411,0.159021,0][1.82885,3.61471,0.370655][0.21468,0.975658,-0.0447644][0.541042,0.16163,0][1.91022,3.75602,0.688119][0.178717,0.963441,-0.199605][0.541117,0.154421,0][2.15796,2.45631,-1.15655][-0.561349,-0.710182,0.424886][0.114848,0.689019,0][1.7968,2.47581,-1.50261][-0.408672,-0.716942,0.564784][0.104384,0.688392,0][2.12379,1.83604,-1.91229][-0.585437,-1.84457,1.07627][0.104763,0.670566,0][1.7968,2.47581,-1.50261][-0.408672,-0.716942,0.564784][0.104384,0.688392,0][2.15796,2.45631,-1.15655][-0.561349,-0.710182,0.424886][0.114848,0.689019,0][1.73059,2.91576,-0.784132][-0.446736,-0.835755,0.319282][0.111899,0.704354,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.55418,-4.29641,1.84231][-0.28888,-0.95701,-0.0260679][0.380511,0.338841,0][-1.68208,-4.15279,1.46065][-0.252856,-0.963234,0.0907978][0.377262,0.346721,0][-2.31976,-3.82385,1.74662][-0.549131,-0.805039,0.224429][0.390836,0.349317,0][-1.68208,-4.15279,1.46065][-0.252856,-0.963234,0.0907978][0.377262,0.346721,0][-1.55418,-4.29641,1.84231][-0.28888,-0.95701,-0.0260679][0.380511,0.338841,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-0.750014,-4.30983,-1.23544][0.0686136,-0.960862,-0.268397][0.326666,0.381288,0][-0.35723,-4.16369,-1.31391][-0.0512578,-0.966971,-0.24968][0.318575,0.377243,0][-0.561135,-3.84655,-1.99829][-0.148859,-0.816944,-0.557174][0.312146,0.390914,0][-0.35723,-4.16369,-1.31391][-0.0512578,-0.966971,-0.24968][0.318575,0.377243,0][-0.750014,-4.30983,-1.23544][0.0686136,-0.960862,-0.268397][0.326666,0.381288,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][2.17084,-4.31435,-0.148377][0.217874,-0.970676,0.101582][0.291524,0.324965,0][2.17763,-4.17347,0.252644][0.217626,-0.975962,-0.0117393][0.296251,0.317687,0][2.88013,-3.91809,0.16277][0.525213,-0.849575,-0.0487331][0.282458,0.309601,0][2.17763,-4.17347,0.252644][0.217626,-0.975962,-0.0117393][0.296251,0.317687,0][2.17084,-4.31435,-0.148377][0.217874,-0.970676,0.101582][0.291524,0.324965,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][1.67063,3.7596,-0.254768][0.0489948,0.969461,-0.240302][0.542406,0.175352,0][1.42902,3.62391,-0.486002][0.155931,0.979269,-0.129295][0.53854,0.181808,0][1.98177,3.3293,-0.955269][0.413692,0.844863,-0.339212][0.55178,0.18824,0][1.42902,3.62391,-0.486002][0.155931,0.979269,-0.129295][0.53854,0.181808,0][1.67063,3.7596,-0.254768][0.0489948,0.969461,-0.240302][0.542406,0.175352,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][0.566538,-4.31307,2.66733][-0.111996,-0.967117,0.228344][0.355502,0.297363,0][0.167832,-4.17773,2.64077][0.00791325,-0.970825,0.239657][0.361505,0.302664,0][0.171503,-3.88541,3.34285][0.0112224,-0.825254,0.56465][0.369787,0.289929,0][0.167832,-4.17773,2.64077][0.00791325,-0.970825,0.239657][0.361505,0.302664,0][0.566538,-4.31307,2.66733][-0.111996,-0.967117,0.228344][0.355502,0.297363,0][-0.614393,-4.31685,2.5851][-0.242732,-0.962977,0.117284][0.374404,0.314019,0][-0.882024,-4.02694,3.25931][-0.348474,-0.827304,0.440607][0.386916,0.305267,0][-1.30708,-3.87313,2.91744][-0.33752,-0.821541,0.459511][0.389182,0.316276,0][-1.30708,-3.87313,2.91744][-0.33752,-0.821541,0.459511][0.389182,0.316276,0][-0.930182,-4.17191,2.33283][-0.153474,-0.968637,0.195417][0.376022,0.322101,0][-0.614393,-4.31685,2.5851][-0.242732,-0.962977,0.117284][0.374404,0.314019,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][2.20215,-4.3051,1.03471][0.134311,-0.963935,0.22976][0.306454,0.304247,0][2.00082,-4.15771,1.38397][0.208483,-0.970592,0.120359][0.314004,0.300528,0][2.64856,-3.87306,1.68133][0.479244,-0.838024,0.260846][0.306121,0.286441,0][2.00082,-4.15771,1.38397][0.208483,-0.970592,0.120359][0.314004,0.300528,0][2.20215,-4.3051,1.03471][0.134311,-0.963935,0.22976][0.306454,0.304247,0][-0.788621,2.44064,2.95297][0.238729,-0.724246,-0.646897][0.332399,0.593278,0][0.179274,2.43929,3.14332][0.0126608,-0.71334,-0.700704][0.353281,0.593647,0][0.156778,1.88733,3.62169][0.0298038,-0.549037,-0.835266][0.352602,0.605547,0][0.179274,2.43929,3.14332][0.0126608,-0.71334,-0.700704][0.264706,0.923515,0][-0.788621,2.44064,2.95297][0.238729,-0.724246,-0.646897][0.25674,0.94293,0][-0.191856,2.89184,2.53071][0.113463,-0.842432,-0.526721][0.250537,0.927119,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.62579,-4.29998,-0.430933][-0.107191,-0.963158,-0.246652][0.351975,0.378766,0][-1.32807,-4.17015,-0.700683][-0.194427,-0.966535,-0.167355][0.343035,0.379265,0][-1.85669,-3.84898,-1.17271][-0.43527,-0.813977,-0.384682][0.344865,0.393474,0][-1.32807,-4.17015,-0.700683][-0.194427,-0.966535,-0.167355][0.343035,0.379265,0][-1.62579,-4.29998,-0.430933][-0.107191,-0.963158,-0.246652][0.351975,0.378766,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][0.414187,-4.28387,-1.48172][0.202435,-0.960992,-0.188454][0.303683,0.370434,0][0.783444,-4.13997,-1.34785][0.0705212,-0.968754,-0.237785][0.298776,0.363056,0][0.977662,-3.84141,-2.03254][0.137193,-0.829905,-0.540774][0.285666,0.371635,0][0.783444,-4.13997,-1.34785][0.0705212,-0.968754,-0.237785][0.298776,0.363056,0][0.414187,-4.28387,-1.48172][0.202435,-0.960992,-0.188454][0.303683,0.370434,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.51512,0.0217504,0][-2.6414,1.50703,-2.2569][1.76824,0.139234,-0.155654][0.524126,0.02,0][-2.68988,0.996823,-2.46917][1.36861,-0.00977817,-0.28906][0.536038,0.0211781,0][-2.67477,1.32563,-1.31492][1.50608,-0.0471571,0.309556][0.11811,0.288732,0][-2.6414,1.50703,-2.2569][1.76824,0.139234,-0.155654][0.108069,0.27067,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.116929,0.270809,0][0.0416948,4.46735,0.569099][0.165301,0.803969,-0.878957][0.482484,0.622166,0][0.0897131,3.6198,0.671592][-0.271165,-0.12141,0.322146][0.500684,0.619955,0][0.0897131,3.6198,0.466605][0.243201,0.0410466,-0.225485][0.500684,0.624378,0][-0.251803,4.11062,0.569099][0.12126,-1.60153,1.40429][0.472247,0.59549,0][0.0897131,3.6198,0.466605][0.243201,0.0410466,-0.225485][0.460566,0.597701,0][0.0897131,3.6198,0.671592][-0.271165,-0.12141,0.322146][0.460566,0.593278,0][-1.46258,2.79436,3.13052][-0.34478,0.72148,0.600495][0.453494,0.12686,0][-1.09346,3.31855,2.56792][-0.245791,0.859383,0.448383][0.466458,0.135492,0][-1.51307,3.4668,2.35925][-0.193078,0.862307,0.468132][0.459821,0.142314,0][-0.974342,3.74957,1.79206][0.0596052,0.965994,0.251601][0.475417,0.150217,0][-1.51307,3.4668,2.35925][-0.193078,0.862307,0.468132][0.459821,0.142314,0][-1.09346,3.31855,2.56792][-0.245791,0.859383,0.448383][0.466458,0.135492,0][2.29986,-3.28414,-0.458669][-3.28522,1.33184,-0.0583885][0.0742461,0.904214,0][2.2712,-3.34731,-0.277232][-0.927368,1.23866,0.408662][0.078205,0.905304,0][2.50939,-2.7941,-1.1244][-2.86467,1.5081,0.177633][0.0569379,0.904504,0][2.29986,-3.28414,-0.458669][-3.28522,1.33184,-0.0583885][0.675988,0.0656681,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.705935,0.0904809,0][2.2712,-3.34731,-0.277232][-0.927368,1.23866,0.408662][0.672124,0.0642782,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][1.61213,-4.29529,2.07445][0.0264614,-0.964925,0.261188][0.330012,0.294003,0][1.25875,-4.16088,2.27327][0.147505,-0.967632,0.204771][0.3382,0.294855,0][1.64585,-3.85862,2.85826][0.311211,-0.822192,0.476601][0.338439,0.279159,0][1.25875,-4.16088,2.27327][0.147505,-0.967632,0.204771][0.3382,0.294855,0][1.61213,-4.29529,2.07445][0.0264614,-0.964925,0.261188][0.330012,0.294003,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][1.50996,-4.28428,-1.09342][0.246646,-0.967179,-0.0610709][0.29024,0.349636,0][1.73179,-4.15502,-0.773755][0.165374,-0.971922,-0.167388][0.2903,0.341005,0][2.27115,-3.87043,-1.24253][0.408612,-0.831649,-0.376027][0.274221,0.341459,0][1.73179,-4.15502,-0.773755][0.165374,-0.971922,-0.167388][0.2903,0.341005,0][1.50996,-4.28428,-1.09342][0.246646,-0.967179,-0.0610709][0.29024,0.349636,0][1.69086,-3.64785,-0.342411][-0.373796,0.895959,0.239863][0.211157,0.814008,0][1.90735,-3.65197,0.601951][-0.450609,0.892696,-0.00679868][0.229802,0.804592,0][2.51617,-3.28834,0.629083][-0.588497,0.807948,-0.0298625][0.239329,0.815233,0][2.30758,-3.26488,1.49562][-0.559097,0.779625,-0.282127][0.250992,0.799985,0][2.51617,-3.28834,0.629083][-0.588497,0.807948,-0.0298625][0.239329,0.815233,0][1.90735,-3.65197,0.601951][-0.450609,0.892696,-0.00679868][0.229802,0.804592,0][3.08028,0.919101,-1.51875][-2.23314,-0.497773,0.352073][0.313666,0.798246,0][2.9258,0.758565,-1.84139][-0.865221,0.796526,-0.0505669][0.306506,0.795934,0][3.06317,-0.145346,-1.97581][-0.740237,-0.0874267,0.666637][0.302105,0.77649,0][2.9258,0.758565,-1.84139][-0.865221,0.796526,-0.0505669][0.0436527,0.468632,0][3.08028,0.919101,-1.51875][-2.23314,-0.497773,0.352073][0.0361306,0.471251,0][3.09708,0.92863,-2.52952][0.451961,0.229621,-0.437329][0.0503568,0.454715,0][-0.125585,1.33401,-2.89632][0.0783222,-0.414184,0.906817][0.209263,0.683479,0][0.853031,1.55239,-2.6827][0.191995,-1.67898,1.16755][0.230601,0.687052,0][1.06212,1.92463,-2.42191][-0.247661,-0.571548,0.782302][0.235537,0.69483,0][1.06212,1.92463,-2.42191][-0.247661,-0.571548,0.782302][0.235537,0.69483,0][0.853031,1.55239,-2.6827][0.191995,-1.67898,1.16755][0.230601,0.687052,0][1.64202,1.78421,-2.26318][-0.252313,-2.71606,1.25731][0.247869,0.691134,0][-2.16391,3.35427,0.231038][-0.490924,0.869468,-0.0549456][0.460081,0.190395,0][-1.42165,3.61329,0.329941][-0.179555,0.983543,-0.0200869][0.475387,0.183316,0][-1.41157,3.75224,0.00670533][-0.183412,0.972679,0.142319][0.478177,0.189748,0][-1.41157,3.75224,0.00670533][-0.183412,0.972679,0.142319][0.478177,0.189748,0][-2.15145,3.48818,-0.242362][-0.490064,0.871668,-0.00556167][0.463878,0.199907,0][-2.16391,3.35427,0.231038][-0.490924,0.869468,-0.0549456][0.460081,0.190395,0][-3.53367,-0.788237,0.0399884][0.980653,0.139426,0.137405][0.356074,0.909883,0][-3.36552,-0.789006,-0.651306][0.934239,0.138341,0.328723][0.353754,0.895135,0][-3.39786,-0.0691873,-0.653317][0.943082,-0.0517203,0.328513][0.369076,0.893338,0][-3.09428,-0.0669764,-1.30749][0.858005,-0.0548872,0.510701][0.36642,0.879434,0][-3.39786,-0.0691873,-0.653317][0.943082,-0.0517203,0.328513][0.369076,0.893338,0][-3.36552,-0.789006,-0.651306][0.934239,0.138341,0.328723][0.353754,0.895135,0][0.560125,-1.72825,-2.9084][0.41034,-2.38579,-0.0286775][0.220495,0.616705,0][0.574839,-1.50136,-3.01295][-0.0581411,0.319484,0.945806][0.221074,0.621576,0][-0.145379,-1.86192,-2.83949][0.341491,0.597549,3.27831][0.205139,0.614641,0][-0.147464,-1.83723,-3.72766][-0.539444,-0.402461,-2.07419][0.742773,0.0520521,0][0.560125,-1.72825,-2.9084][0.41034,-2.38579,-0.0286775][0.723708,0.0383562,0][-0.145379,-1.86192,-2.83949][0.341491,0.597549,3.27831][0.738453,0.0333808,0][-2.90982,-0.0342677,2.78241][0.815726,-0.04263,-0.576866][0.376478,0.967108,0][-3.26115,-0.0222704,2.16016][0.912018,-0.0417297,-0.408023][0.376475,0.953595,0][-3.16771,0.688332,2.12935][0.885874,-0.235157,-0.399911][0.391077,0.951255,0][-2.44742,-0.0807074,3.31762][0.682912,-0.0419183,-0.729297][0.375138,0.978885,0][-2.90982,-0.0342677,2.78241][0.815726,-0.04263,-0.576866][0.376478,0.967108,0][-2.82511,0.67558,2.72958][0.785621,-0.239275,-0.570567][0.391042,0.964294,0][0.163537,-0.14211,4.33429][0.00654398,-0.0489856,-0.998778][0.352035,0.649334,0][0.879796,-0.11972,4.27129][-0.183765,-0.0513598,-0.981627][0.367495,0.649103,0][0.878877,-0.839762,4.23971][-0.189892,0.137164,-0.972176][0.367223,0.664637,0][0.879796,-0.11972,4.27129][-0.183765,-0.0513598,-0.981627][0.367495,0.649103,0][0.163537,-0.14211,4.33429][0.00654398,-0.0489856,-0.998778][0.352035,0.649334,0][0.153911,0.572962,4.2292][0.0270094,-0.285025,-0.95814][0.352078,0.633903,0][-1.62843,3.32934,-0.99942][-0.386189,0.864228,-0.322442][0.478859,0.212302,0][-1.05281,3.60223,-0.516893][-0.149626,0.981626,-0.118414][0.488339,0.198384,0][-0.871845,3.74308,-0.784192][-0.248987,0.968299,0.020043][0.494236,0.202568,0][-0.871845,3.74308,-0.784192][-0.248987,0.968299,0.020043][0.494236,0.202568,0][-1.36463,3.46104,-1.38824][-0.422113,0.866473,-0.266545][0.487195,0.218465,0][-1.62843,3.32934,-0.99942][-0.386189,0.864228,-0.322442][0.478859,0.212302,0][3.9328,-0.223113,-0.0737488][-0.988074,-0.0479523,0.146326][0.342658,0.768546,0][3.76163,-0.201203,-0.767689][-0.94319,-0.0555365,0.327578][0.327811,0.770777,0][3.72913,-0.921031,-0.767367][-0.933124,0.143902,0.329502][0.326656,0.75563,0][3.97042,-0.215487,0.644529][-0.99818,-0.0432251,-0.0420464][0.358113,0.767385,0][3.9328,-0.223113,-0.0737488][-0.988074,-0.0479523,0.146326][0.342658,0.768546,0][3.89748,-0.942139,-0.0794516][-0.978348,0.146177,0.146514][0.341375,0.753436,0][-0.508997,3.33345,-1.7387][-0.173712,0.864519,-0.471625][0.506383,0.220327,0][-0.286394,3.61015,-1.02452][-0.0754289,0.985598,-0.15135][0.50721,0.203903,0][0.0112227,3.75921,-1.14692][-0.237527,0.965884,-0.103197][0.514559,0.204349,0][0.0112227,3.75921,-1.14692][-0.237527,0.965884,-0.103197][0.514559,0.204349,0][-0.077658,3.4817,-1.91708][-0.217187,0.864554,-0.453184][0.516805,0.221068,0][-0.508997,3.33345,-1.7387][-0.173712,0.864519,-0.471625][0.506383,0.220327,0][2.15011,0.630646,3.64999][-0.532002,-0.233158,-0.814009][0.395165,0.63336,0][1.52408,0.621329,3.97483][-0.354456,-0.239155,-0.903972][0.381656,0.633341,0][1.43394,1.29823,3.75269][-0.323074,-0.418218,-0.848951][0.379949,0.618706,0][2.70885,0.616881,3.20075][-0.681763,-0.223482,-0.696603][0.407215,0.633853,0][2.15011,0.630646,3.64999][-0.532002,-0.233158,-0.814009][0.395165,0.63336,0][2.02386,1.30568,3.45264][-0.491657,-0.412814,-0.766719][0.392679,0.618752,0][-2.03563,-3.24585,-0.195025][0.603677,0.771501,0.200899][0.16414,0.751949,0][-2.16711,-3.23663,0.68439][0.625832,0.778878,-0.0410318][0.177028,0.737749,0][-1.51969,-3.64757,0.98444][0.481217,0.87208,-0.0889189][0.18983,0.743105,0][-2.16711,-3.23663,0.68439][0.625832,0.778878,-0.0410318][0.300979,0.930183,0][-2.03563,-3.24585,-0.195025][0.603677,0.771501,0.200899][0.298151,0.911408,0][-2.66174,-2.72939,0.166405][0.759337,0.640485,0.114829][0.312214,0.917648,0][2.32581,-1.10987,-3.46431][0.333904,-0.154059,-0.929932][0.377995,0.202406,0][2.34385,-1.80534,-3.24544][-0.799068,-0.526853,-0.00359727][0.377551,0.217411,0][1.40922,-1.59528,-3.48035][0.0594714,-2.74806,0.0522794][0.357667,0.211767,0][2.32581,-1.10987,-3.46431][0.333904,-0.154059,-0.929932][0.377995,0.202406,0][3.04616,-1.08875,-3.03626][0.67629,-0.142624,-0.722696][0.39354,0.202813,0][2.34385,-1.80534,-3.24544][-0.799068,-0.526853,-0.00359727][0.377551,0.217411,0][2.99572,-3.41811,2.56613][0.671606,-0.65917,0.338291][0.310518,0.265781,0][2.47539,-4.00486,2.18847][0.517905,-0.83581,0.182199][0.316069,0.280268,0][2.64856,-3.87306,1.68133][0.479244,-0.838024,0.260846][0.306121,0.286441,0][2.47539,-4.00486,2.18847][0.517905,-0.83581,0.182199][0.316069,0.280268,0][2.99572,-3.41811,2.56613][0.671606,-0.65917,0.338291][0.310518,0.265781,0][2.56231,-3.39719,3.06361][0.422183,-0.650342,0.631519][0.324297,0.262793,0][0.859001,3.44698,0.828179][-0.171269,-0.980183,-0.0995447][0.219138,0.896175,0][0.879983,3.4492,0.296067][-0.18541,-0.97955,0.0781329][0.207955,0.893534,0][1.59595,3.24462,0.355543][-0.377019,-0.92272,0.0802779][0.211984,0.879563,0][0.204731,3.50982,0.514692][0.011764,-0.999926,0.00307499][0.209882,0.908316,0][0.879983,3.4492,0.296067][-0.18541,-0.97955,0.0781329][0.207955,0.893534,0][0.859001,3.44698,0.828179][-0.171269,-0.980183,-0.0995447][0.219138,0.896175,0][-2.10725,0.417669,-3.18555][0.981955,1.74344,-0.00549473][0.284317,0.164191,0][-2.60057,-0.149514,-2.98327][-0.686569,0.0528615,-0.725141][0.27301,0.17582,0][-2.53004,0.791738,-2.86136][0.817295,0.930943,-0.00828316][0.275656,0.155627,0][-2.53004,0.791738,-2.86136][0.817295,0.930943,-0.00828316][0.177948,0.492337,0][-2.60057,-0.149514,-2.98327][-0.686569,0.0528615,-0.725141][0.180656,0.474278,0][-3.12205,-0.140557,-2.26451][-0.738942,0.0482543,-0.672039][0.197728,0.481146,0][-2.10725,0.417669,-3.18555][0.981955,1.74344,-0.00549473][0.284317,0.164191,0][-1.85938,-0.143039,-3.47366][-0.372931,0.0623176,-0.925764][0.288986,0.176568,0][-2.60057,-0.149514,-2.98327][-0.686569,0.0528615,-0.725141][0.27301,0.17582,0][-1.49551,0.236594,-2.77638][0.683375,-0.0283528,0.980157][0.444556,0.0608711,0][-1.82516,0.337181,-3.38655][0.80369,2.68925,0.00912821][0.444887,0.0759883,0][-2.10725,0.417669,-3.18555][0.981955,1.74344,-0.00549473][0.437231,0.0754924,0][-1.9679,3.35066,1.56066][-0.426344,0.874901,0.229737][0.455391,0.161788,0][-1.28682,3.61432,1.24405][-0.15901,0.982817,0.0937342][0.472177,0.163644,0][-1.44938,3.75878,0.966917][-0.0723592,0.970154,0.231443][0.471185,0.170229,0][-1.44938,3.75878,0.966917][-0.0723592,0.970154,0.231443][0.471185,0.170229,0][-2.20428,3.49818,1.15447][-0.401348,0.876083,0.267205][0.453753,0.171498,0][-1.9679,3.35066,1.56066][-0.426344,0.874901,0.229737][0.455391,0.161788,0][-1.2565,1.811,-2.27281][-0.429929,-1.57199,0.0422832][0.143721,0.933389,0][-0.678527,1.94538,-2.43292][0.273162,-0.559145,0.782776][0.142774,0.920182,0][-1.7459,1.86529,-1.91454][0.825358,-1.49009,1.32505][0.149357,0.944889,0][-1.62267,1.89368,-2.92234][-0.421623,-2.5359,-0.0697341][0.0812629,0.118804,0][-1.2565,1.811,-2.27281][-0.429929,-1.57199,0.0422832][0.0838134,0.103121,0][-1.7459,1.86529,-1.91454][0.825358,-1.49009,1.32505][0.0966207,0.10317,0][3.53715,0.573195,2.03459][-0.890278,-0.219395,-0.399087][0.389422,0.783387,0][3.1791,0.590356,2.65378][-0.79561,-0.234967,-0.558386][0.402871,0.784028,0][3.32556,1.25848,1.95807][-0.829496,-0.398842,-0.390976][0.38895,0.798813,0][3.76997,0.537164,1.36569][-0.949763,-0.222856,-0.21974][0.374908,0.782883,0][3.53715,0.573195,2.03459][-0.890278,-0.219395,-0.399087][0.389422,0.783387,0][3.32556,1.25848,1.95807][-0.829496,-0.398842,-0.390976][0.38895,0.798813,0][3.42719,-2.27589,0.024868][-0.828421,0.531102,0.177899][0.34158,0.726686,0][3.46264,-2.26663,0.647965][-0.846229,0.5245,-0.0937852][0.35499,0.725725,0][3.76441,-1.62733,0.637584][-0.941776,0.332829,-0.047778][0.355723,0.738204,0][3.67237,-1.59435,1.31421][-0.893886,0.373003,-0.24867][0.370359,0.738121,0][3.76441,-1.62733,0.637584][-0.941776,0.332829,-0.047778][0.355723,0.738204,0][3.46264,-2.26663,0.647965][-0.846229,0.5245,-0.0937852][0.35499,0.725725,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.204379,0.641625,0][0.599135,-0.80014,-3.18545][-0.0510904,0.0923703,0.994413][0.222409,0.636657,0][0.930866,-0.47532,-3.13645][-0.182819,1.5385,0.0123073][0.229932,0.643272,0][0.930866,-0.47532,-3.13645][-0.182819,1.5385,0.0123073][0.229932,0.643272,0][1.29743,-0.839366,-3.04752][-0.280574,0.132973,0.950577][0.237409,0.635004,0][1.49505,0.0329956,-2.97652][1.16828,1.07221,-0.0592884][0.242677,0.653572,0][-1.93826,-3.37035,-2.11395][-0.556551,-0.65357,-0.512931][0.208146,0.178305,0][-1.79001,-3.12667,-2.41751][1.68487,3.12243,-0.0250921][0.20113,0.183824,0][-1.44321,-3.19153,-2.58688][-0.0880624,-0.714982,-0.785464][0.193152,0.181061,0][-1.79001,-3.12667,-2.41751][1.68487,3.12243,-0.0250921][0.20113,0.183824,0][-1.93826,-3.37035,-2.11395][-0.556551,-0.65357,-0.512931][0.208146,0.178305,0][-2.2477,-2.65297,-2.51538][1.04307,0.9906,-0.0833671][0.206623,0.19695,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][0.163038,-3.92573,1.64146][0.00507077,0.959264,-0.282465][0.222886,0.760928,0][0.740658,-3.9188,1.45363][-0.18429,0.958614,-0.217017][0.227587,0.773006,0][0.740658,-3.9188,1.45363][-0.18429,0.958614,-0.217017][0.227587,0.773006,0][0.163038,-3.92573,1.64146][0.00507077,0.959264,-0.282465][0.222886,0.760928,0][0.814502,-3.65529,2.16774][-0.209966,0.883874,-0.417948][0.241087,0.765159,0][2.37739,3.32686,1.61133][0.494271,0.848141,0.190663][0.543094,0.132903,0][1.70034,3.62017,1.28138][0.178607,0.982118,0.0595343][0.532529,0.143712,0][1.59349,3.77417,1.5831][0.231098,0.969121,-0.0860089][0.528934,0.138021,0][0.805785,3.71346,1.19296][-0.220013,0.972248,0.0795534][0.515288,0.151165,0][1.59349,3.77417,1.5831][0.231098,0.969121,-0.0860089][0.528934,0.138021,0][1.70034,3.62017,1.28138][0.178607,0.982118,0.0595343][0.532529,0.143712,0][0.393995,3.48701,-1.9108][0.218293,0.859903,-0.461427][0.526347,0.217908,0][0.33546,3.76632,-1.14334][0.22018,0.967629,-0.123346][0.521136,0.202188,0][0.638794,3.6286,-1.01309][0.030598,0.986881,-0.158526][0.525961,0.197714,0][0.429492,3.5862,-0.244703][-0.00360265,0.999269,-0.0380684][0.51657,0.183295,0][0.638794,3.6286,-1.01309][0.030598,0.986881,-0.158526][0.525961,0.197714,0][0.33546,3.76632,-1.14334][0.22018,0.967629,-0.123346][0.521136,0.202188,0][-2.27233,3.49831,0.688241][-0.470139,0.868413,-0.157569][0.455407,0.181526,0][-2.96073,2.97538,0.752638][-0.683371,0.720775,-0.116134][0.439214,0.18519,0][-2.87363,2.98384,1.34596][-0.612996,0.738926,0.279686][0.437149,0.172416,0][-2.96073,2.97538,0.752638][-0.683371,0.720775,-0.116134][0.439214,0.18519,0][-2.27233,3.49831,0.688241][-0.470139,0.868413,-0.157569][0.455407,0.181526,0][-2.16391,3.35427,0.231038][-0.490924,0.869468,-0.0549456][0.460081,0.190395,0][2.34385,-1.80534,-3.24544][-0.799068,-0.526853,-0.00359727][0.377551,0.217411,0][3.04616,-1.08875,-3.03626][0.67629,-0.142624,-0.722696][0.39354,0.202813,0][2.90648,-1.9416,-2.86358][0.64307,-0.362476,-0.674591][0.38951,0.22102,0][2.90648,-1.9416,-2.86358][0.64307,-0.362476,-0.674591][0.169768,0.390344,0][3.04616,-1.08875,-3.03626][0.67629,-0.142624,-0.722696][0.151751,0.38574,0][3.52382,-1.04789,-2.35402][0.749314,-0.140576,-0.647122][0.156596,0.368412,0][-1.36463,3.46104,-1.38824][-0.422113,0.866473,-0.266545][0.487195,0.218465,0][-1.78952,2.94609,-1.92064][-0.536472,0.699311,-0.4724][0.480257,0.232708,0][-2.12906,2.83087,-1.41806][-0.543475,0.711128,-0.446018][0.469702,0.224673,0][-1.78952,2.94609,-1.92064][-0.536472,0.699311,-0.4724][0.480257,0.232708,0][-1.36463,3.46104,-1.38824][-0.422113,0.866473,-0.266545][0.487195,0.218465,0][-0.972939,3.46368,-1.64847][-0.0748411,0.866051,-0.494322][0.49684,0.221304,0][-3.22857,1.58884,3.07258][-0.786742,0.429279,0.443573][0.346638,0.0537279,0][-3.46655,0.766727,3.22766][-0.847633,0.230624,0.47784][0.347054,0.0354583,0][-2.92282,0.709659,3.86188][-0.579542,0.226814,0.782743][0.365121,0.0354309,0][-3.46655,0.766727,3.22766][-0.847633,0.230624,0.47784][0.350959,0.446742,0][-3.22857,1.58884,3.07258][-0.786742,0.429279,0.443573][0.367578,0.450088,0][-3.46935,1.53368,2.3248][-0.830309,0.418236,0.368327][0.367281,0.466223,0][1.79227,-3.25764,2.23357][-0.399718,0.811628,-0.426011][0.256328,0.781422,0][2.30758,-3.26488,1.49562][-0.559097,0.779625,-0.282127][0.250992,0.799985,0][1.74868,-3.646,1.24592][-0.395549,0.89302,-0.214606][0.238393,0.793168,0][2.30758,-3.26488,1.49562][-0.559097,0.779625,-0.282127][0.250992,0.799985,0][1.79227,-3.25764,2.23357][-0.399718,0.811628,-0.426011][0.256328,0.781422,0][2.1547,-2.76591,2.61494][-0.536795,0.652194,-0.535252][0.268718,0.783518,0][4.14934,-2.80689,0.746314][0.856744,-0.511958,-0.062363][0.213247,0.32134,0][3.6373,-3.49639,0.73701][0.734101,-0.674794,-0.0758161][0.22559,0.332297,0][3.48187,-3.38089,0.0879229][0.742621,-0.663409,-0.0916595][0.218819,0.344167,0][3.6373,-3.49639,0.73701][0.734101,-0.674794,-0.0758161][0.275953,0.289051,0][4.14934,-2.80689,0.746314][0.856744,-0.511958,-0.062363][0.265423,0.280763,0][4.04725,-2.76624,1.49104][0.800019,-0.496722,0.336508][0.27678,0.269216,0][4.13313,-1.08872,-1.78044][0.803616,-0.145138,-0.577179][0.1629,0.351882,0][3.95104,-1.94887,-1.6518][0.755481,-0.342252,-0.55867][0.180661,0.357774,0][3.36779,-1.87193,-2.20868][0.708703,-0.344914,-0.615447][0.173805,0.37347,0][3.95104,-1.94887,-1.6518][0.755481,-0.342252,-0.55867][0.518945,0.55136,0][4.13313,-1.08872,-1.78044][0.803616,-0.145138,-0.577179][0.50121,0.549351,0][4.47588,-1.13164,-0.997502][0.962406,-0.145375,-0.229437][0.507782,0.533639,0][3.44921,-1.55979,1.96483][-0.849938,0.363944,-0.380985][0.384475,0.738589,0][3.10014,-1.54366,2.56902][-0.749941,0.321026,-0.578386][0.397597,0.739201,0][3.23541,-0.843326,2.66005][-0.808655,0.140107,-0.571355][0.400658,0.753411,0][2.76041,-0.814889,3.22544][-0.674779,0.194314,-0.71198][0.0372601,0.78847,0][3.23541,-0.843326,2.66005][-0.808655,0.140107,-0.571355][0.0520252,0.784971,0][3.10014,-1.54366,2.56902][-0.749941,0.321026,-0.578386][0.0539878,0.799483,0][3.54282,-3.46493,1.38588][0.669831,-0.664784,0.33074][0.285953,0.27907,0][2.91882,-4.03849,1.22181][0.4449,-0.844231,0.298895][0.296015,0.291202,0][3.00043,-4.05834,0.690829][0.50981,-0.852837,-0.11297][0.287742,0.299301,0][2.91882,-4.03849,1.22181][0.4449,-0.844231,0.298895][0.296015,0.291202,0][3.54282,-3.46493,1.38588][0.669831,-0.664784,0.33074][0.285953,0.27907,0][3.21226,-3.3116,1.94394][0.670579,-0.65579,0.346789][0.298404,0.273424,0][2.87035,-4.06066,-0.377171][0.525795,-0.850197,-0.0265585][0.275968,0.319304,0][3.46354,-3.49239,-0.569407][0.740056,-0.660409,-0.127185][0.261779,0.313693,0][3.48187,-3.38089,0.0879229][0.742621,-0.663409,-0.0916595][0.269751,0.301935,0][3.48187,-3.38089,0.0879229][0.742621,-0.663409,-0.0916595][0.269751,0.301935,0][2.88013,-3.91809,0.16277][0.525213,-0.849575,-0.0487331][0.282458,0.309601,0][2.87035,-4.06066,-0.377171][0.525795,-0.850197,-0.0265585][0.275968,0.319304,0][-0.183183,0.756675,-3.85844][1.75497,-0.430725,-0.0305403][0.0933245,0.0659073,0][-0.106439,0.942394,-3.7639][-0.412202,-1.62635,-0.0858896][0.0889835,0.0640499,0][-0.110019,0.923042,-3.03619][1.24367,-0.319431,-0.0460311][0.0888212,0.0483495,0][-0.195357,1.57409,-3.58047][-0.186344,0.391843,-0.900963][0.326891,0.141566,0][-0.106439,0.942394,-3.7639][-0.412202,-1.62635,-0.0858896][0.328051,0.155281,0][-0.183183,0.756675,-3.85844][1.75497,-0.430725,-0.0305403][0.326175,0.159191,0][-0.972939,3.46368,-1.64847][-0.0748411,0.866051,-0.494322][0.49684,0.221304,0][-0.603515,3.74584,-0.963077][0.117025,0.966269,-0.229412][0.500851,0.204524,0][-0.286394,3.61015,-1.02452][-0.0754289,0.985598,-0.15135][0.50721,0.203903,0][-0.041615,3.5789,-0.250632][-0.0347771,0.998736,-0.036277][0.50703,0.186447,0][-0.286394,3.61015,-1.02452][-0.0754289,0.985598,-0.15135][0.50721,0.203903,0][-0.603515,3.74584,-0.963077][0.117025,0.966269,-0.229412][0.500851,0.204524,0][-1.76025,-1.83993,-3.26482][1.28219,-2.20229,0.202326][0.289091,0.213245,0][-2.45516,-1.86283,-2.80051][-0.665891,-0.316244,-0.675706][0.274092,0.212906,0][-1.8373,-1.01309,-3.4404][-0.375856,-0.136048,-0.916637][0.288421,0.195339,0][-1.76025,-1.83993,-3.26482][1.28219,-2.20229,0.202326][0.289091,0.213245,0][-1.8373,-1.01309,-3.4404][-0.375856,-0.136048,-0.916637][0.288421,0.195339,0][-0.95216,-1.66069,-3.45362][-0.37949,-0.195261,-0.988543][0.306715,0.21035,0][1.91074,3.47055,2.40236][0.196239,0.85613,0.478049][0.528983,0.119464,0][1.37894,3.76031,1.81937][-0.0774477,0.956712,0.280542][0.522997,0.134551,0][1.08932,3.61511,1.95704][0.547695,5.82811,0.925456][0.515725,0.133735,0][0.65864,3.58201,1.26584][-0.685217,1.20019,0.505061][0.511374,0.150754,0][1.08932,3.61511,1.95704][0.547695,5.82811,0.925456][0.515725,0.133735,0][1.37894,3.76031,1.81937][-0.0774477,0.956712,0.280542][0.522997,0.134551,0][1.00702,0.664798,4.96915][0.0709843,0.237928,0.968685][0.508918,0.311171,0][1.04617,-0.200223,5.09345][0.0910755,0.0494113,0.994617][0.490277,0.309899,0][1.87639,-0.149578,4.84482][0.471453,0.0499335,0.880476][0.491781,0.292014,0][1.04617,-0.200223,5.09345][0.0910755,0.0494113,0.994617][0.490277,0.309899,0][1.00702,0.664798,4.96915][0.0709843,0.237928,0.968685][0.508918,0.311171,0][0.161693,0.606734,4.87659][-0.00517929,0.235814,0.971784][0.507247,0.329377,0][2.56231,-3.39719,3.06361][0.422183,-0.650342,0.631519][0.324297,0.262793,0][2.12527,-4.00084,2.59687][0.267121,-0.831412,0.487238][0.327323,0.277771,0][2.47539,-4.00486,2.18847][0.517905,-0.83581,0.182199][0.316069,0.280268,0][2.12527,-4.00084,2.59687][0.267121,-0.831412,0.487238][0.327323,0.277771,0][2.56231,-3.39719,3.06361][0.422183,-0.650342,0.631519][0.324297,0.262793,0][1.97368,-3.26948,3.37904][0.417722,-0.644175,0.64074][0.338009,0.264696,0][2.72529,-3.31348,-1.6317][0.555446,-0.647177,-0.522151][0.259838,0.341045,0][2.27115,-3.87043,-1.24253][0.408612,-0.831649,-0.376027][0.274221,0.341459,0][1.96562,-3.99502,-1.68145][0.433894,-0.832352,-0.344857][0.274002,0.353205,0][2.27115,-3.87043,-1.24253][0.408612,-0.831649,-0.376027][0.274221,0.341459,0][2.72529,-3.31348,-1.6317][0.555446,-0.647177,-0.522151][0.259838,0.341045,0][3.20029,-3.46386,-1.17667][0.565709,-0.653693,-0.502651][0.258198,0.327443,0][4.72354,-1.17294,0.706007][0.987783,-0.145985,-0.0545306][0.519264,0.498676,0][4.51616,-2.02011,0.730016][0.941031,-0.333696,-0.0557432][0.536045,0.502764,0][4.31056,-1.96161,-0.0776094][0.933301,-0.331651,-0.137686][0.529493,0.519034,0][4.51616,-2.02011,0.730016][0.941031,-0.333696,-0.0557432][0.536045,0.502764,0][4.72354,-1.17294,0.706007][0.987783,-0.145985,-0.0545306][0.519264,0.498676,0][4.60402,-1.12255,1.55964][0.93369,-0.133801,0.332144][0.522706,0.480519,0][-4.39203,-0.165153,0.812912][-0.997558,0.0474116,-0.0512766][0.334507,0.498845,0][-4.35128,-1.03423,0.808379][-0.988647,-0.14299,-0.046154][0.315875,0.498943,0][-4.22501,-1.00074,1.66678][-0.932984,-0.144244,0.329749][0.316128,0.480421,0][-4.35128,-1.03423,0.808379][-0.988647,-0.14299,-0.046154][0.315875,0.498943,0][-4.39203,-0.165153,0.812912][-0.997558,0.0474116,-0.0512766][0.334507,0.498845,0][-4.18486,-0.163511,-0.0243253][-0.988995,0.0506223,-0.139016][0.333788,0.516911,0][0.175522,2.7799,3.61073][-0.0104632,0.711319,0.702791][0.18565,0.325542,0][0.195019,3.30896,2.94482][-0.00199119,0.855021,0.518589][0.203994,0.326203,0][-0.273785,3.44232,2.98762][0.0642918,0.855873,0.513175][0.20445,0.33675,0][0.195019,3.30896,2.94482][-0.00199119,0.855021,0.518589][0.490101,0.119485,0][0.175522,2.7799,3.61073][-0.0104632,0.711319,0.702791][0.483537,0.106491,0][0.776539,2.91056,3.6821][-0.0398005,0.717402,0.695522][0.495714,0.101025,0][-2.32132,-3.25174,-1.57255][-0.575183,-0.63885,-0.510916][0.221611,0.178168,0][-1.85669,-3.84898,-1.17271][-0.43527,-0.813977,-0.384682][0.220274,0.159749,0][-2.25448,-3.97795,-0.807595][-0.404322,-0.820071,-0.404979][0.232095,0.157924,0][-1.85669,-3.84898,-1.17271][-0.43527,-0.813977,-0.384682][0.220274,0.159749,0][-2.32132,-3.25174,-1.57255][-0.575183,-0.63885,-0.510916][0.221611,0.178168,0][-1.93826,-3.37035,-2.11395][-0.556551,-0.65357,-0.512931][0.208146,0.178305,0][3.66553,-2.63516,2.13343][0.779162,-0.48794,0.393474][0.220147,0.0814153,0][3.21226,-3.3116,1.94394][0.670579,-0.65579,0.346789][0.216943,0.0636638,0][3.54282,-3.46493,1.38588][0.669831,-0.664784,0.33074][0.230733,0.059607,0][3.21226,-3.3116,1.94394][0.670579,-0.65579,0.346789][0.216943,0.0636638,0][3.66553,-2.63516,2.13343][0.779162,-0.48794,0.393474][0.220147,0.0814153,0][3.41129,-2.70486,2.85229][0.760428,-0.490457,0.425678][0.20494,0.0835229,0][-2.15145,3.48818,-0.242362][-0.490064,0.871668,-0.00556167][0.463878,0.199907,0][-2.80571,2.96131,-0.438946][-0.686669,0.720547,-0.0964196][0.450062,0.208726,0][-2.82172,2.84906,0.168625][-0.692426,0.716163,-0.0875027][0.445395,0.196452,0][-2.80571,2.96131,-0.438946][-0.686669,0.720547,-0.0964196][0.450062,0.208726,0][-2.15145,3.48818,-0.242362][-0.490064,0.871668,-0.00556167][0.463878,0.199907,0][-1.96488,3.48006,-0.673054][-0.315806,0.862914,-0.39452][0.470436,0.20758,0][-1.04128,0.108405,-2.98323][-1.13479,1.02581,-0.0510726][0.188115,0.658131,0][-1.49551,0.236594,-2.77638][0.683375,-0.0283528,0.980157][0.178477,0.661418,0][-1.48636,-0.78319,-2.78771][0.468451,0.142575,0.871909][0.177494,0.639435,0][-1.02285,0.0898155,-3.61537][-1.2826,1.14497,-0.0710672][0.462982,0.0709809,0][-1.49551,0.236594,-2.77638][0.683375,-0.0283528,0.980157][0.444556,0.0608711,0][-1.04128,0.108405,-2.98323][-1.13479,1.02581,-0.0510726][0.455591,0.0595073,0][-1.49969,0.659321,4.73083][-0.437003,0.233095,0.868732][0.507559,0.365242,0][-1.53099,-0.202149,4.84664][-0.444701,0.0420573,0.894691][0.488961,0.365491,0][-0.688994,-0.217079,5.08371][-0.0882229,0.0454196,0.995065][0.489055,0.347321,0][-1.53099,-0.202149,4.84664][-0.444701,0.0420573,0.894691][0.488961,0.365491,0][-1.49969,0.659321,4.73083][-0.437003,0.233095,0.868732][0.507559,0.365242,0][-2.16771,0.634531,4.22029][-0.498006,0.229999,0.836116][0.506694,0.37964,0][-3.97754,1.54337,0.853113][-0.908841,0.411532,-0.0681944][0.369336,0.497978,0][-4.26641,0.705189,0.833051][-0.970234,0.235025,-0.0583957][0.352561,0.498411,0][-4.14642,0.737681,1.67722][-0.924245,0.224724,0.308658][0.352815,0.480196,0][-4.26641,0.705189,0.833051][-0.970234,0.235025,-0.0583957][0.352561,0.498411,0][-3.97754,1.54337,0.853113][-0.908841,0.411532,-0.0681944][0.369336,0.497978,0][-3.78921,1.47518,0.0839259][-0.903586,0.410033,-0.12412][0.367201,0.514575,0][0.33546,3.76632,-1.14334][0.22018,0.967629,-0.123346][0.521136,0.202188,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.429492,3.5862,-0.244703][-0.00360265,0.999269,-0.0380684][0.51657,0.183295,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.959084,3.77235,-0.945444][-0.118313,0.971251,-0.206577][0.532515,0.194111,0][0.429492,3.5862,-0.244703][-0.00360265,0.999269,-0.0380684][0.51657,0.183295,0][-4.10954,-1.02724,-0.886387][-0.960195,-0.141901,-0.240603][0.315144,0.535512,0][-3.91876,-1.8708,-0.81312][-0.919533,-0.326351,-0.218983][0.296509,0.533931,0][-3.95426,-1.81006,0.010581][-0.93674,-0.322544,-0.135954][0.29793,0.516157,0][-3.91876,-1.8708,-0.81312][-0.919533,-0.326351,-0.218983][0.296509,0.533931,0][-4.10954,-1.02724,-0.886387][-0.960195,-0.141901,-0.240603][0.315144,0.535512,0][-3.73485,-1.01717,-1.663][-0.790429,-0.139544,-0.596448][0.313995,0.552269,0][-3.67534,0.71866,-1.59126][-0.78656,0.246312,-0.566263][0.350697,0.550721,0][-3.7755,-0.146231,-1.67514][-0.802406,0.0487193,-0.594787][0.332666,0.552531,0][-4.14929,-0.15671,-0.894337][-0.969037,0.0489349,-0.242019][0.333803,0.535683,0][-3.7755,-0.146231,-1.67514][-0.802406,0.0487193,-0.594787][0.216024,0.485644,0][-3.67534,0.71866,-1.59126][-0.78656,0.246312,-0.566263][0.212584,0.502036,0][-2.68988,0.996823,-2.46917][1.36861,-0.00977817,-0.28906][0.184356,0.500049,0][-0.140797,2.95868,-2.59496][-0.192074,0.721525,-0.665214][0.129558,0.542689,0][-0.174677,2.31657,-3.15577][-0.180753,0.573948,-0.798694][0.126314,0.524573,0][-0.828389,2.22094,-2.88521][-0.258917,0.550924,-0.793375][0.141644,0.523607,0][-0.174677,2.31657,-3.15577][-0.180753,0.573948,-0.798694][0.328225,0.125594,0][-0.140797,2.95868,-2.59496][-0.192074,0.721525,-0.665214][0.329723,0.111801,0][0.461226,2.94823,-2.58655][0.224428,0.714279,-0.6629][0.342681,0.112747,0][4.64326,0.561965,0.741793][0.971123,0.23107,-0.0593929][0.483616,0.488049,0][4.76574,-0.301386,0.708504][0.997404,0.045231,-0.056029][0.501557,0.493739,0][4.55106,-0.306155,-0.137167][0.988715,0.0473355,-0.142133][0.496053,0.51115,0][4.76574,-0.301386,0.708504][0.997404,0.045231,-0.056029][0.501557,0.493739,0][4.64326,0.561965,0.741793][0.971123,0.23107,-0.0593929][0.483616,0.488049,0][4.52194,0.61098,1.58081][0.921612,0.221322,0.318821][0.486996,0.470202,0][-2.57349,-2.66639,3.48892][-0.52877,-0.4954,0.689188][0.435287,0.38676,0][-2.22428,-3.38493,3.12353][-0.446887,-0.646054,0.618795][0.41996,0.378872,0][-1.63652,-3.29831,3.41567][-0.437814,-0.641059,0.630367][0.422119,0.366235,0][-2.22428,-3.38493,3.12353][-0.446887,-0.646054,0.618795][0.25814,0.448988,0][-2.57349,-2.66639,3.48892][-0.52877,-0.4954,0.689188][0.274693,0.441104,0][-3.06345,-2.61598,2.92032][-0.782504,-0.486244,0.388914][0.277548,0.453373,0][-0.688994,-0.217079,5.08371][-0.0882229,0.0454196,0.995065][0.489055,0.347321,0][-0.678955,-1.08898,5.0408][-0.0900977,-0.14335,0.985562][0.470252,0.346673,0][0.179378,-1.06456,4.96103][-0.00806924,-0.138033,0.990395][0.471203,0.328169,0][-0.678955,-1.08898,5.0408][-0.0900977,-0.14335,0.985562][0.470252,0.346673,0][-0.688994,-0.217079,5.08371][-0.0882229,0.0454196,0.995065][0.489055,0.347321,0][-1.53099,-0.202149,4.84664][-0.444701,0.0420573,0.894691][0.488961,0.365491,0][0.836832,3.35303,-1.72024][0.142994,0.855164,-0.498244][0.0829454,0.534672,0][1.02552,2.81962,-2.34517][0.2203,0.70182,-0.677434][0.0800029,0.517088,0][0.461226,2.94823,-2.58655][0.224428,0.714279,-0.6629][0.0934379,0.515481,0][1.02552,2.81962,-2.34517][0.2203,0.70182,-0.677434][0.539664,0.223526,0][0.836832,3.35303,-1.72024][0.142994,0.855164,-0.498244][0.533622,0.211295,0][1.30053,3.48965,-1.6189][0.104081,0.855344,-0.507498][0.54284,0.206086,0][0.857409,2.24979,4.24886][0.00411687,0.57663,0.816995][0.543035,0.315183,0][0.933889,1.49189,4.68244][0.0414344,0.416417,0.908229][0.526724,0.313158,0][1.69427,1.53157,4.46423][0.415912,0.419118,0.807067][0.527956,0.296775,0][0.933889,1.49189,4.68244][0.0414344,0.416417,0.908229][0.526724,0.313158,0][0.857409,2.24979,4.24886][0.00411687,0.57663,0.816995][0.543035,0.315183,0][0.149272,2.13714,4.16801][-0.00937697,0.573501,0.819151][0.540254,0.330403,0][-4.26728,-0.131205,1.68077][-0.946835,0.0397163,0.319258][0.334775,0.480119,0][-4.22501,-1.00074,1.66678][-0.932984,-0.144244,0.329749][0.316128,0.480421,0][-3.79399,-0.926811,2.42413][-0.905635,-0.141692,0.399685][0.316132,0.46408,0][-4.22501,-1.00074,1.66678][-0.932984,-0.144244,0.329749][0.316128,0.480421,0][-4.26728,-0.131205,1.68077][-0.946835,0.0397163,0.319258][0.334775,0.480119,0][-4.39203,-0.165153,0.812912][-0.997558,0.0474116,-0.0512766][0.334507,0.498845,0][-0.996556,2.89668,3.49901][-0.368292,0.72521,0.581749][0.556072,0.355496,0][-1.23619,2.23356,4.04009][-0.396547,0.590482,0.702909][0.541649,0.360337,0][-0.557526,2.22432,4.23551][-0.0407399,0.581031,0.812861][0.541785,0.345693,0][-1.23619,2.23356,4.04009][-0.396547,0.590482,0.702909][0.450221,0.107311,0][-0.996556,2.89668,3.49901][-0.368292,0.72521,0.581749][0.460902,0.116179,0][-1.46258,2.79436,3.13052][-0.34478,0.72148,0.600495][0.453494,0.12686,0][4.39625,0.599303,-0.929008][0.947212,0.243669,-0.208362][0.472404,0.522355,0][4.5146,-0.258058,-1.0083][0.972229,0.0543466,-0.227635][0.489944,0.528964,0][4.1644,-0.214344,-1.79529][0.813008,0.0679194,-0.578278][0.483307,0.544749,0][4.5146,-0.258058,-1.0083][0.972229,0.0543466,-0.227635][0.489944,0.528964,0][4.39625,0.599303,-0.929008][0.947212,0.243669,-0.208362][0.472404,0.522355,0][4.43449,0.524566,-0.0830664][0.962318,0.233715,-0.139001][0.478921,0.505217,0][-2.54689,0.832546,-1.78661][2.76184,0.064189,0.664701][0.382273,0.867214,0][-3.00877,0.646454,-1.24674][0.836601,-0.24421,0.490367][0.381335,0.879047,0][-3.09428,-0.0669764,-1.30749][0.858005,-0.0548872,0.510701][0.36642,0.879434,0][-2.67477,1.32563,-1.31492][1.50608,-0.0471571,0.309556][0.154582,0.672409,0][-3.00877,0.646454,-1.24674][0.836601,-0.24421,0.490367][0.169842,0.678233,0][-2.54689,0.832546,-1.78661][2.76184,0.064189,0.664701][0.156685,0.686887,0][-2.86192,-3.2163,2.00232][-0.715444,-0.625104,0.312067][0.264047,0.473181,0][-2.31976,-3.82385,1.74662][-0.549131,-0.805039,0.224429][0.249153,0.478699,0][-2.14583,-3.97598,2.25792][-0.55717,-0.809882,0.18345][0.245284,0.467666,0][-2.31976,-3.82385,1.74662][-0.549131,-0.805039,0.224429][0.057246,0.208632,0][-2.86192,-3.2163,2.00232][-0.715444,-0.625104,0.312067][0.0639461,0.225786,0][-3.19793,-3.33611,1.43157][-0.701895,-0.63765,0.317405][0.0501371,0.230186,0][0.598203,1.53697,-3.57598][0.226671,0.397234,-0.889284][0.343943,0.143315,0][0.840329,1.58378,-3.42435][1.92671,-0.102693,-0.0446861][0.349215,0.142596,0][0.785706,0.775299,-3.76721][1.15964,-0.0646017,-0.032417][0.347071,0.159949,0][0.598203,1.53697,-3.57598][0.226671,0.397234,-0.889284][0.343943,0.143315,0][0.535956,2.28938,-3.14861][0.223804,0.574524,-0.787295][0.343502,0.12703,0][0.840329,1.58378,-3.42435][1.92671,-0.102693,-0.0446861][0.349215,0.142596,0][-2.92282,0.709659,3.86188][-0.579542,0.226814,0.782743][0.507941,0.395966,0][-3.00119,-0.155528,3.94217][-0.610908,0.0333892,0.790997][0.489239,0.397229,0][-2.22164,-0.19734,4.32153][-0.52166,0.0380939,0.852303][0.488723,0.380392,0][-3.00119,-0.155528,3.94217][-0.610908,0.0333892,0.790997][0.329651,0.431324,0][-2.92282,0.709659,3.86188][-0.579542,0.226814,0.782743][0.347767,0.433057,0][-3.46655,0.766727,3.22766][-0.847633,0.230624,0.47784][0.350959,0.446742,0][1.87639,-0.149578,4.84482][0.471453,0.0499335,0.880476][0.491781,0.292014,0][1.86484,-1.02159,4.80364][0.480271,-0.137546,0.866268][0.472964,0.291832,0][2.53399,-0.967802,4.23822][0.564685,-0.135171,0.814162][0.474456,0.277424,0][1.86484,-1.02159,4.80364][0.480271,-0.137546,0.866268][0.472964,0.291832,0][1.87639,-0.149578,4.84482][0.471453,0.0499335,0.880476][0.491781,0.292014,0][1.04617,-0.200223,5.09345][0.0910755,0.0494113,0.994617][0.490277,0.309899,0][-3.56647,-0.0970874,3.28102][-0.872093,0.0389061,0.487791][0.332951,0.44559,0][-3.52898,-0.968311,3.24738][-0.867029,-0.145175,0.47664][0.314285,0.446316,0][-2.96685,-1.0263,3.90326][-0.610675,-0.151054,0.77734][0.311006,0.432164,0][-3.52898,-0.968311,3.24738][-0.867029,-0.145175,0.47664][0.314285,0.446316,0][-3.56647,-0.0970874,3.28102][-0.872093,0.0389061,0.487791][0.332951,0.44559,0][-3.83269,-0.0878661,2.44893][-0.915197,0.0405994,0.400958][0.334116,0.463544,0][1.71445e-005,-3.38313,-1.5642][-0.0627875,3.73129,0.961664][0.168555,0.803763,0][0.691364,-3.63482,-1.10859][-0.141801,0.88385,0.44576][0.184911,0.808152,0][0.295969,-3.35103,-1.60632][-0.712714,-0.046139,0.00453053][0.171931,0.809289,0][-0.134386,-3.36433,-2.83859][-0.00733349,-0.754838,-0.741609][0.709705,0.109066,0][1.71445e-005,-3.38313,-1.5642][-0.0627875,3.73129,0.961664][0.703757,0.136057,0][0.295969,-3.35103,-1.60632][-0.712714,-0.046139,0.00453053][0.697494,0.134414,0][-2.82172,2.84906,0.168625][-0.692426,0.716163,-0.0875027][0.445395,0.196452,0][-3.36973,2.21232,0.133912][-0.81524,0.568639,-0.109701][0.432299,0.201379,0][-3.53625,2.31291,0.824704][-0.814336,0.573878,-0.0867229][0.424776,0.188126,0][-3.36973,2.21232,0.133912][-0.81524,0.568639,-0.109701][0.432299,0.201379,0][-2.82172,2.84906,0.168625][-0.692426,0.716163,-0.0875027][0.445395,0.196452,0][-2.80571,2.96131,-0.438946][-0.686669,0.720547,-0.0964196][0.450062,0.208726,0][-1.93574,-4.28385,0.713688][-0.230956,-0.958925,-0.16469][0.372152,0.363096,0][0.166376,-4.33104,0.618277][-0.00110099,-0.999995,-0.00288182][0.335498,0.337714,0][-1.88423,-4.28503,1.11074][-0.187565,-0.956344,0.224111][0.376482,0.355623,0][-2.6663,-3.95848,0.74162][-0.563163,-0.81689,-0.124653][0.383929,0.371324,0][-1.93574,-4.28385,0.713688][-0.230956,-0.958925,-0.16469][0.372152,0.363096,0][-1.88423,-4.28503,1.11074][-0.187565,-0.956344,0.224111][0.376482,0.355623,0][0.393995,3.48701,-1.9108][0.218293,0.859903,-0.461427][0.526347,0.217908,0][0.461226,2.94823,-2.58655][0.224428,0.714279,-0.6629][0.530238,0.23197,0][-0.140797,2.95868,-2.59496][-0.192074,0.721525,-0.665214][0.518121,0.235993,0][0.461226,2.94823,-2.58655][0.224428,0.714279,-0.6629][0.0934379,0.515481,0][0.393995,3.48701,-1.9108][0.218293,0.859903,-0.461427][0.0937059,0.533916,0][0.836832,3.35303,-1.72024][0.142994,0.855164,-0.498244][0.0829454,0.534672,0][3.83113,2.19402,1.47514][0.778631,0.557459,0.288052][0.451509,0.462786,0][4.24822,1.43333,1.54378][0.865694,0.398415,0.303051][0.468962,0.46606,0][4.36195,1.38917,0.759107][0.911346,0.405162,-0.0727422][0.465768,0.482742,0][4.24822,1.43333,1.54378][0.865694,0.398415,0.303051][0.468962,0.46606,0][3.83113,2.19402,1.47514][0.778631,0.557459,0.288052][0.451509,0.462786,0][3.4677,2.13901,2.08156][0.765817,0.552743,0.328633][0.454839,0.450131,0][-2.96685,-1.0263,3.90326][-0.610675,-0.151054,0.77734][0.470472,0.396057,0][-2.82305,-1.87208,3.75069][-0.582752,-0.328325,0.743372][0.452298,0.392537,0][-2.08692,-1.85171,4.1121][-0.510651,-0.324031,0.796391][0.453102,0.376667,0][-2.82305,-1.87208,3.75069][-0.582752,-0.328325,0.743372][0.292495,0.435456,0][-2.96685,-1.0263,3.90326][-0.610675,-0.151054,0.77734][0.311006,0.432164,0][-3.52898,-0.968311,3.24738][-0.867029,-0.145175,0.47664][0.314285,0.446316,0][1.40427,-1.58283,-2.79453][0.22149,-1.42568,0.00393598][0.238851,0.618861,0][1.84086,-1.67744,-2.58338][-0.574905,-2.5798,0.0615733][0.248149,0.616318,0][1.95381,-0.862782,-2.79005][-0.44962,0.121652,0.884897][0.251525,0.63374,0][1.84086,-1.67744,-2.58338][-0.574905,-2.5798,0.0615733][0.695407,0.0377725,0][1.40427,-1.58283,-2.79453][0.22149,-1.42568,0.00393598][0.705151,0.0401728,0][1.40922,-1.59528,-3.48035][0.0594714,-2.74806,0.0522794][0.708463,0.0545958,0][0.709982,-4.01676,3.38111][-0.0106999,-0.831539,0.555363][0.0618549,0.0466493,0][0.825441,-3.41627,4.00231][0.0472193,-0.655335,0.753861][0.0643654,0.0652856,0][0.168648,-3.31485,3.9437][0.00765018,-0.643206,0.765655][0.051012,0.0659073,0][0.168648,-3.31485,3.9437][0.00765018,-0.643206,0.765655][0.051012,0.0659073,0][0.171503,-3.88541,3.34285][0.0112224,-0.825254,0.56465][0.0510349,0.0480286,0][0.709982,-4.01676,3.38111][-0.0106999,-0.831539,0.555363][0.0618549,0.0466493,0][0.675893,-1.01668,-3.92946][0.184041,-0.125211,-0.974911][0.342561,0.198424,0][0.642199,-1.70389,-3.76011][0.443414,-2.71821,-0.0160606][0.341012,0.213189,0][-0.147464,-1.83723,-3.72766][-0.539444,-0.402461,-2.07419][0.32384,0.215117,0][1.40922,-1.59528,-3.48035][0.0594714,-2.74806,0.0522794][0.357667,0.211767,0][0.642199,-1.70389,-3.76011][0.443414,-2.71821,-0.0160606][0.341012,0.213189,0][0.675893,-1.01668,-3.92946][0.184041,-0.125211,-0.974911][0.342561,0.198424,0][1.45779,-3.39323,3.80102][0.425958,-0.64871,0.630662][0.352613,0.264387,0][1.22648,-4.00443,3.20755][0.37749,-0.819887,0.430448][0.350523,0.2789,0][1.64585,-3.85862,2.85826][0.311211,-0.822192,0.476601][0.338439,0.279159,0][1.22648,-4.00443,3.20755][0.37749,-0.819887,0.430448][0.350523,0.2789,0][1.45779,-3.39323,3.80102][0.425958,-0.64871,0.630662][0.352613,0.264387,0][0.825441,-3.41627,4.00231][0.0472193,-0.655335,0.753861][0.366006,0.269144,0][-1.12014,-3.43233,3.82736][-0.406031,-0.642828,0.649547][0.107124,0.192398,0][-0.882024,-4.02694,3.25931][-0.348474,-0.827304,0.440607][0.0928268,0.18073,0][-0.363655,-4.03182,3.40935][0.0637306,-0.826655,0.559089][0.0984045,0.171892,0][-0.882024,-4.02694,3.25931][-0.348474,-0.827304,0.440607][0.0928268,0.18073,0][-1.12014,-3.43233,3.82736][-0.406031,-0.642828,0.649547][0.107124,0.192398,0][-1.63652,-3.29831,3.41567][-0.437814,-0.641059,0.630367][0.0973767,0.203155,0][-1.81947,3.47912,2.00529][-0.468559,0.871995,0.141692][0.455954,0.151547,0][-2.38206,2.96719,2.42079][-0.600964,0.745669,0.287784][0.440066,0.147169,0][-1.99316,2.93521,2.86495][-0.333576,0.731702,0.594424][0.444951,0.135572,0][-2.38206,2.96719,2.42079][-0.600964,0.745669,0.287784][0.440066,0.147169,0][-1.81947,3.47912,2.00529][-0.468559,0.871995,0.141692][0.455954,0.151547,0][-1.9679,3.35066,1.56066][-0.426344,0.874901,0.229737][0.455391,0.161788,0][2.64187,-2.26857,-1.6003][-0.727847,-0.476033,-0.00218925][0.137421,0.827811,0][2.69633,-2.36163,-1.40872][-3.01648,1.68249,0.601469][0.133987,0.828436,0][3.29143,-1.58804,-1.30986][-0.784718,0.379729,0.489922][0.134799,0.807377,0][2.69633,-2.36163,-1.40872][-3.01648,1.68249,0.601469][0.703312,0.0636537,0][2.64187,-2.26857,-1.6003][-0.727847,-0.476033,-0.00218925][0.707919,0.0644305,0][2.72584,-2.37706,-2.72442][-1.73755,-1.1758,-0.0163178][0.725616,0.0812225,0][1.5749,3.24568,0.887598][-0.367293,-0.923281,-0.11246][0.223168,0.882194,0][1.59595,3.24462,0.355543][-0.377019,-0.92272,0.0802779][0.211984,0.879563,0][2.24959,2.89901,0.665141][-0.585027,-0.810617,-0.0253699][0.220958,0.86843,0][1.59595,3.24462,0.355543][-0.377019,-0.92272,0.0802779][0.211984,0.879563,0][1.5749,3.24568,0.887598][-0.367293,-0.923281,-0.11246][0.223168,0.882194,0][0.859001,3.44698,0.828179][-0.171269,-0.980183,-0.0995447][0.219138,0.896175,0][3.46354,-3.49239,-0.569407][0.740056,-0.660409,-0.127185][0.555089,0.537097,0][3.93245,-2.78953,-0.74838][0.845635,-0.500843,-0.184549][0.541297,0.537301,0][3.96181,-2.71903,0.00317119][0.855837,-0.502724,-0.121704][0.544263,0.521297,0][3.96181,-2.71903,0.00317119][0.855837,-0.502724,-0.121704][0.258612,0.295736,0][3.48187,-3.38089,0.0879229][0.742621,-0.663409,-0.0916595][0.269751,0.301935,0][3.46354,-3.49239,-0.569407][0.740056,-0.660409,-0.127185][0.261779,0.313693,0][-2.56982,-1.01975,-2.95775][-0.686049,-0.136793,-0.71458][0.203036,0.230186,0][-2.45516,-1.86283,-2.80051][-0.665891,-0.316244,-0.675706][0.204804,0.214355,0][-2.94257,-1.79459,-2.12102][-0.707556,-0.313274,-0.633422][0.221967,0.213019,0][-2.45516,-1.86283,-2.80051][-0.665891,-0.316244,-0.675706][0.274092,0.212906,0][-2.56982,-1.01975,-2.95775][-0.686049,-0.136793,-0.71458][0.272631,0.194606,0][-1.8373,-1.01309,-3.4404][-0.375856,-0.136048,-0.916637][0.288421,0.195339,0][-3.67733,-2.62534,1.54761][-0.806883,-0.488957,0.331454][0.279582,0.482993,0][-3.19793,-3.33611,1.43157][-0.701895,-0.63765,0.317405][0.262721,0.485496,0][-2.86192,-3.2163,2.00232][-0.715444,-0.625104,0.312067][0.264047,0.473181,0][-3.19793,-3.33611,1.43157][-0.701895,-0.63765,0.317405][0.262721,0.485496,0][-3.67733,-2.62534,1.54761][-0.806883,-0.488957,0.331454][0.279582,0.482993,0][-3.79029,-2.64973,0.798397][-0.865203,-0.498238,-0.0564101][0.279475,0.499159,0][-0.644883,-1.93863,4.83862][-0.0811128,-0.322498,0.943088][0.45194,0.345517,0][-0.580851,-2.733,4.4917][-0.0553055,-0.489242,0.870393][0.434836,0.343743,0][0.171194,-2.63759,4.42443][-0.00571564,-0.490364,0.871499][0.437266,0.327567,0][-0.580851,-2.733,4.4917][-0.0553055,-0.489242,0.870393][0.434836,0.343743,0][-0.644883,-1.93863,4.83862][-0.0811128,-0.322498,0.943088][0.45194,0.345517,0][-1.43829,-1.92518,4.60844][-0.440067,-0.322189,0.838174][0.451838,0.362639,0][-3.09123,-3.36411,-0.520171][-0.745948,-0.654232,-0.124668][0.261737,0.52761,0][-2.49079,-3.97106,-0.319614][-0.572417,-0.819221,-0.0348809][0.246644,0.523282,0][-2.52618,-3.82578,0.221759][-0.57246,-0.814139,-0.0973023][0.249863,0.511601,0][-2.49079,-3.97106,-0.319614][-0.572417,-0.819221,-0.0348809][0.246644,0.523282,0][-3.09123,-3.36411,-0.520171][-0.745948,-0.654232,-0.124668][0.261737,0.52761,0][-2.8067,-3.36567,-1.11952][-0.583633,-0.648457,-0.488748][0.260669,0.540542,0][1.83391,2.81538,3.16399][0.379124,0.710786,0.592494][0.508942,0.0534613,0][1.48917,3.32943,2.60169][0.272547,0.859196,0.433012][0.512211,0.0712063,0][1.11842,3.46082,2.88133][0.30728,0.86454,0.39768][0.502239,0.0740457,0][1.11842,3.46082,2.88133][0.30728,0.86454,0.39768][0.502239,0.0740457,0][1.35732,2.9279,3.52835][0.351267,0.720372,0.598059][0.496082,0.056284,0][1.83391,2.81538,3.16399][0.379124,0.710786,0.592494][0.508942,0.0534613,0][-2.20428,3.49818,1.15447][-0.401348,0.876083,0.267205][0.453753,0.171498,0][-2.87363,2.98384,1.34596][-0.612996,0.738926,0.279686][0.437149,0.172416,0][-2.57208,2.86112,1.86046][-0.602108,0.740528,0.298472][0.439491,0.160032,0][-2.87363,2.98384,1.34596][-0.612996,0.738926,0.279686][0.437149,0.172416,0][-2.20428,3.49818,1.15447][-0.401348,0.876083,0.267205][0.453753,0.171498,0][-2.27233,3.49831,0.688241][-0.470139,0.868413,-0.157569][0.455407,0.181526,0][-0.378175,3.43614,0.928694][0.16819,-0.976856,-0.132154][0.216229,0.922456,0][0.206244,3.4388,1.23312][0.0101347,-0.978192,-0.207455][0.225055,0.911502,0][-0.942847,3.23515,1.33495][0.30441,-0.928782,-0.211418][0.222397,0.936638,0][0.204731,3.50982,0.514692][0.011764,-0.999926,0.00307499][0.209882,0.908316,0][0.206244,3.4388,1.23312][0.0101347,-0.978192,-0.207455][0.225055,0.911502,0][-0.378175,3.43614,0.928694][0.16819,-0.976856,-0.132154][0.216229,0.922456,0][2.75197,2.27641,3.29716][0.48192,0.564307,0.670306][0.456481,0.423376,0][3.0353,1.54058,3.59154][0.558242,0.404362,0.724471][0.474249,0.421685,0][3.57225,1.50201,2.98323][0.804973,0.396627,0.441255][0.473436,0.435076,0][3.0353,1.54058,3.59154][0.558242,0.404362,0.724471][0.528814,0.267851,0][2.75197,2.27641,3.29716][0.48192,0.564307,0.670306][0.544546,0.274327,0][2.10726,2.1927,3.6191][0.448108,0.565613,0.692301][0.542422,0.288193,0][4.52194,0.61098,1.58081][0.921612,0.221322,0.318821][0.486996,0.470202,0][4.64246,-0.250313,1.57108][0.944528,0.0417294,0.32577][0.505023,0.475388,0][4.76574,-0.301386,0.708504][0.997404,0.045231,-0.056029][0.501557,0.493739,0][4.64246,-0.250313,1.57108][0.944528,0.0417294,0.32577][0.505023,0.475388,0][4.52194,0.61098,1.58081][0.921612,0.221322,0.318821][0.486996,0.470202,0][4.08735,0.615685,2.31492][0.889166,0.216173,0.403302][0.489584,0.454484,0][-0.951185,-3.28601,-2.55604][0.0688564,0.348973,0.0120743][0.185468,0.174114,0][-0.709817,-3.33385,-2.50269][0.317406,1.65941,0.0496784][0.182212,0.170262,0][-0.561135,-3.84655,-1.99829][-0.148859,-0.816944,-0.557174][0.18743,0.155298,0][-0.389174,-3.42716,-1.43441][0.0846336,2.65283,0.900071][0.711815,0.139814,0][-0.709817,-3.33385,-2.50269][0.317406,1.65941,0.0496784][0.720914,0.117666,0][-0.951185,-3.28601,-2.55604][0.0688564,0.348973,0.0120743][0.725974,0.117096,0][2.23727,-2.57166,3.79839][0.488518,-0.482612,0.726936][0.439711,0.283031,0][1.97368,-3.26948,3.37904][0.417722,-0.644175,0.64074][0.424527,0.288372,0][2.56231,-3.39719,3.06361][0.422183,-0.650342,0.631519][0.422064,0.275611,0][1.97368,-3.26948,3.37904][0.417722,-0.644175,0.64074][0.176034,0.0642062,0][2.23727,-2.57166,3.79839][0.488518,-0.482612,0.726936][0.172806,0.0823857,0][1.64695,-2.67292,4.28744][0.450117,-0.494804,0.743346][0.156494,0.0789413,0][4.16628,1.3205,-0.0135957][0.904442,0.405821,-0.131503][0.462059,0.499014,0][3.75442,2.06118,0.0754813][0.819003,0.560148,-0.124371][0.445938,0.492577,0][3.93159,2.15761,0.77274][0.82262,0.561343,-0.0904996][0.44858,0.4777,0][3.93159,2.15761,0.77274][0.82262,0.561343,-0.0904996][0.44858,0.4777,0][4.36195,1.38917,0.759107][0.911346,0.405162,-0.0727422][0.465768,0.482742,0][4.16628,1.3205,-0.0135957][0.904442,0.405821,-0.131503][0.462059,0.499014,0][3.71793,2.16773,-0.629627][0.807857,0.572577,-0.139723][0.439583,0.506607,0][4.12951,1.41399,-0.806189][0.890754,0.41756,-0.179447][0.455469,0.514938,0][3.8012,1.45136,-1.52738][0.747895,0.434417,-0.501932][0.449416,0.529411,0][4.12951,1.41399,-0.806189][0.890754,0.41756,-0.179447][0.455469,0.514938,0][3.71793,2.16773,-0.629627][0.807857,0.572577,-0.139723][0.439583,0.506607,0][3.75442,2.06118,0.0754813][0.819003,0.560148,-0.124371][0.445938,0.492577,0][3.00327,1.54321,-1.12481][-2.12368,-0.671841,0.649243][0.0912345,0.395351,0][2.77883,1.71746,-1.11874][-2.05047,-0.419825,1.03203][0.0867118,0.395482,0][2.89875,1.71422,-2.02303][-0.694191,-2.46917,-0.0638092][0.087217,0.37597,0][2.77883,1.71746,-1.11874][-2.05047,-0.419825,1.03203][0.133614,0.618217,0][3.00327,1.54321,-1.12481][-2.12368,-0.671841,0.649243][0.130613,0.623564,0][2.85973,1.86547,-1.00414][-0.731269,-0.531724,0.427219][0.130764,0.615953,0][1.70239,3.48304,-1.34917][0.45754,0.846627,-0.27181][0.0644088,0.542315,0][2.12552,2.9159,-1.88309][0.559864,0.690978,-0.457276][0.0560708,0.525573,0][1.61527,2.92267,-2.21875][0.227064,0.704316,-0.672593][0.0682999,0.520665,0][2.12552,2.9159,-1.88309][0.559864,0.690978,-0.457276][0.0560708,0.525573,0][1.70239,3.48304,-1.34917][0.45754,0.846627,-0.27181][0.0644088,0.542315,0][1.98177,3.3293,-0.955269][0.413692,0.844863,-0.339212][0.0553731,0.545724,0][2.97428,2.78679,1.88236][0.663937,0.696139,0.273091][0.438684,0.450136,0][2.37739,3.32686,1.61133][0.494271,0.848141,0.190663][0.423963,0.452145,0][2.22208,3.47022,2.05539][0.49495,0.853928,0.160726][0.423025,0.441948,0][2.22208,3.47022,2.05539][0.49495,0.853928,0.160726][0.423025,0.441948,0][2.77696,2.91447,2.45423][0.64539,0.704082,0.296211][0.438652,0.437328,0][2.97428,2.78679,1.88236][0.663937,0.696139,0.273091][0.438684,0.450136,0][-1.99316,2.93521,2.86495][-0.333576,0.731702,0.594424][0.55641,0.377013,0][-2.4073,2.28685,3.30791][-0.424582,0.601063,0.677092][0.542219,0.385626,0][-1.78395,2.15605,3.60735][-0.403115,0.589598,0.699909][0.539706,0.372115,0][-2.4073,2.28685,3.30791][-0.424582,0.601063,0.677092][0.431422,0.129827,0][-1.99316,2.93521,2.86495][-0.333576,0.731702,0.594424][0.444951,0.135572,0][-2.38206,2.96719,2.42079][-0.600964,0.745669,0.287784][0.440066,0.147169,0][3.52382,-1.04789,-2.35402][0.749314,-0.140576,-0.647122][0.156596,0.368412,0][3.54802,-0.206916,-2.37061][0.745345,0.0837381,-0.661399][0.139372,0.362666,0][4.1644,-0.214344,-1.79529][0.813008,0.0679194,-0.578278][0.145027,0.345795,0][4.1644,-0.214344,-1.79529][0.813008,0.0679194,-0.578278][0.145027,0.345795,0][4.13313,-1.08872,-1.78044][0.803616,-0.145138,-0.577179][0.1629,0.351882,0][3.52382,-1.04789,-2.35402][0.749314,-0.140576,-0.647122][0.156596,0.368412,0][-0.603515,3.74584,-0.963077][0.117025,0.966269,-0.229412][0.500851,0.204524,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-0.041615,3.5789,-0.250632][-0.0347771,0.998736,-0.036277][0.50703,0.186447,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.0112227,3.75921,-1.14692][-0.237527,0.965884,-0.103197][0.514559,0.204349,0][-0.041615,3.5789,-0.250632][-0.0347771,0.998736,-0.036277][0.50703,0.186447,0][3.6305,-2.75449,-1.43999][0.676482,-0.505883,-0.535215][0.197344,0.36356,0][3.20029,-3.46386,-1.17667][0.565709,-0.653693,-0.502651][0.212,0.369139,0][2.72529,-3.31348,-1.6317][0.555446,-0.647177,-0.522151][0.204613,0.381349,0][3.20029,-3.46386,-1.17667][0.565709,-0.653693,-0.502651][0.212,0.369139,0][3.6305,-2.75449,-1.43999][0.676482,-0.505883,-0.535215][0.197344,0.36356,0][3.93245,-2.78953,-0.74838][0.845635,-0.500843,-0.184549][0.203212,0.348688,0][-3.25324,-2.65384,-1.37277][-0.681983,-0.497126,-0.536437][0.23883,0.194886,0][-3.56059,-1.86281,-1.55822][-0.751678,-0.322602,-0.575246][0.240023,0.212253,0][-2.94257,-1.79459,-2.12102][-0.707556,-0.313274,-0.633422][0.221967,0.213019,0][-2.94257,-1.79459,-2.12102][-0.707556,-0.313274,-0.633422][0.221967,0.213019,0][-2.691,-2.55963,-1.892][-0.652126,-0.486328,-0.581564][0.222246,0.196154,0][-3.25324,-2.65384,-1.37277][-0.681983,-0.497126,-0.536437][0.23883,0.194886,0][0.584195,2.89768,2.54146][-0.0882713,-0.853005,-0.514385][0.253925,0.910942,0][1.30694,2.91028,2.27176][-0.266054,-0.843867,-0.465944][0.25116,0.894696,0][1.15669,2.45727,2.97286][-0.229695,-0.719264,-0.655667][0.265083,0.902343,0][1.30694,2.91028,2.27176][-0.266054,-0.843867,-0.465944][0.25116,0.894696,0][0.584195,2.89768,2.54146][-0.0882713,-0.853005,-0.514385][0.253925,0.910942,0][-0.0646989,3.22973,1.89874][0.093112,-0.923165,-0.372956][0.237905,0.920651,0][-3.46935,1.53368,2.3248][-0.830309,0.418236,0.368327][0.331182,0.0553254,0][-3.07929,2.2496,2.1317][-0.728013,0.597079,0.336888][0.332462,0.0733493,0][-3.43444,2.33256,1.52594][-0.753699,0.590344,0.288847][0.317482,0.0754527,0][-3.43444,2.33256,1.52594][-0.753699,0.590344,0.288847][0.317482,0.0754527,0][-3.8654,1.57146,1.64032][-0.860404,0.412102,0.299796][0.314417,0.0567309,0][-3.46935,1.53368,2.3248][-0.830309,0.418236,0.368327][0.331182,0.0553254,0][0.144168,1.40401,4.59598][-0.00582079,0.414096,0.910215][0.524437,0.33015,0][0.149272,2.13714,4.16801][-0.00937697,0.573501,0.819151][0.540254,0.330403,0][-0.557526,2.22432,4.23551][-0.0407399,0.581031,0.812861][0.541785,0.345693,0][0.149272,2.13714,4.16801][-0.00937697,0.573501,0.819151][0.540254,0.330403,0][0.144168,1.40401,4.59598][-0.00582079,0.414096,0.910215][0.524437,0.33015,0][0.933889,1.49189,4.68244][0.0414344,0.416417,0.908229][0.526724,0.313158,0][3.419,2.20004,-1.2776][0.651161,0.596628,-0.469067][0.0962486,0.329598,0][3.8012,1.45136,-1.52738][0.747895,0.434417,-0.501932][0.111343,0.334307,0][3.03007,1.42866,-2.32033][-2.04576,-0.252091,-0.0321276][0.104485,0.35685,0][3.8012,1.45136,-1.52738][0.747895,0.434417,-0.501932][0.449416,0.529411,0][3.419,2.20004,-1.2776][0.651161,0.596628,-0.469067][0.434157,0.519615,0][3.71793,2.16773,-0.629627][0.807857,0.572577,-0.139723][0.439583,0.506607,0][3.79925,0.690992,3.12511][0.848972,0.219859,0.480529][0.491675,0.436927,0][3.90165,-0.165251,3.1624][0.867897,0.0392079,0.495194][0.509804,0.441089,0][4.1955,-0.214441,2.32897][0.906042,0.0384041,0.421441][0.507065,0.458988,0][3.90165,-0.165251,3.1624][0.867897,0.0392079,0.495194][0.509804,0.441089,0][3.79925,0.690992,3.12511][0.848972,0.219859,0.480529][0.491675,0.436927,0][3.23259,0.733937,3.78253][0.610629,0.225018,0.759275][0.492576,0.422461,0][3.87149,-1.03918,3.13069][0.85896,-0.133667,0.494288][0.527435,0.446659,0][3.70671,-1.89813,3.03386][0.82365,-0.309621,0.475116][0.543913,0.453368,0][3.98433,-1.8716,2.24853][0.853779,-0.307567,0.420075][0.539841,0.469823,0][3.70671,-1.89813,3.03386][0.82365,-0.309621,0.475116][0.205961,0.102034,0][3.87149,-1.03918,3.13069][0.85896,-0.133667,0.494288][0.206456,0.119566,0][3.30265,-0.995356,3.80491][0.629015,-0.132955,0.76594][0.187416,0.120369,0][-0.217024,3.23634,-0.838384][0.104555,-0.926756,0.36082][0.17932,0.912515,0][-0.686264,3.22882,-0.593062][0.247836,-0.9317,0.265542][0.182602,0.92335,0][-1.09023,2.89764,-1.09105][0.341996,-0.828226,0.443938][0.170182,0.930912,0][-0.686264,3.22882,-0.593062][0.247836,-0.9317,0.265542][0.182602,0.92335,0][-0.217024,3.23634,-0.838384][0.104555,-0.926756,0.36082][0.17932,0.912515,0][0.26209,3.44469,-0.198071][0.00202326,-0.982522,0.186135][0.194974,0.904411,0][-2.16771,0.634531,4.22029][-0.498006,0.229999,0.836116][0.506694,0.37964,0][-2.02535,1.42857,3.9796][-0.455426,0.421972,0.783917][0.523893,0.376962,0][-2.72618,1.53538,3.65282][-0.512999,0.426331,0.745033][0.52585,0.392133,0][-2.72618,1.53538,3.65282][-0.512999,0.426331,0.745033][0.52585,0.392133,0][-2.92282,0.709659,3.86188][-0.579542,0.226814,0.782743][0.507941,0.395966,0][-2.16771,0.634531,4.22029][-0.498006,0.229999,0.836116][0.506694,0.37964,0][0.825441,-3.41627,4.00231][0.0472193,-0.655335,0.753861][0.420793,0.313069,0][0.923484,-2.7075,4.50763][0.0716129,-0.500669,0.862671][0.436131,0.311304,0][0.171194,-2.63759,4.42443][-0.00571564,-0.490364,0.871499][0.437266,0.327567,0][0.171194,-2.63759,4.42443][-0.00571564,-0.490364,0.871499][0.437266,0.327567,0][0.168648,-3.31485,3.9437][0.00765018,-0.643206,0.765655][0.422656,0.327287,0][0.825441,-3.41627,4.00231][0.0472193,-0.655335,0.753861][0.420793,0.313069,0][1.05631,3.25278,-0.569244][-0.250275,-0.928686,0.273688][0.190209,0.886985,0][0.577173,3.25148,-0.827196][-0.0969187,-0.923796,0.370414][0.182796,0.895928,0][1.44461,2.92601,-1.06033][-0.317606,-0.830702,0.457231][0.18116,0.87802,0][0.577173,3.25148,-0.827196][-0.0969187,-0.923796,0.370414][0.182796,0.895928,0][1.05631,3.25278,-0.569244][-0.250275,-0.928686,0.273688][0.190209,0.886985,0][0.26209,3.44469,-0.198071][0.00202326,-0.982522,0.186135][0.194974,0.904411,0][2.91173,-2.67045,3.43102][0.520666,-0.48129,0.705171][0.437914,0.268433,0][3.1625,-1.85682,3.67085][0.590365,-0.303897,0.747741][0.455589,0.263426,0][2.42732,-1.79351,4.07795][0.538705,-0.307515,0.784367][0.456591,0.279316,0][2.42732,-1.79351,4.07795][0.538705,-0.307515,0.784367][0.456591,0.279316,0][2.23727,-2.57166,3.79839][0.488518,-0.482612,0.726936][0.439711,0.283031,0][2.91173,-2.67045,3.43102][0.520666,-0.48129,0.705171][0.437914,0.268433,0][-1.89971,-2.6157,3.81793][-0.481679,-0.489164,0.727121][0.108942,0.216563,0][-1.63652,-3.29831,3.41567][-0.437814,-0.641059,0.630367][0.0973767,0.203155,0][-1.12014,-3.43233,3.82736][-0.406031,-0.642828,0.649547][0.107124,0.192398,0][-1.63652,-3.29831,3.41567][-0.437814,-0.641059,0.630367][0.422119,0.366235,0][-1.89971,-2.6157,3.81793][-0.481679,-0.489164,0.727121][0.436714,0.372251,0][-2.57349,-2.66639,3.48892][-0.52877,-0.4954,0.689188][0.435287,0.38676,0][-0.273785,3.44232,2.98762][0.0642918,0.855873,0.513175][0.20445,0.33675,0][-0.422068,2.89058,3.66571][-0.00211382,0.71614,0.697953][0.185438,0.338673,0][0.175522,2.7799,3.61073][-0.0104632,0.711319,0.702791][0.18565,0.325542,0][-0.422068,2.89058,3.66571][-0.00211382,0.71614,0.697953][0.471445,0.109071,0][-0.273785,3.44232,2.98762][0.0642918,0.855873,0.513175][0.480779,0.121465,0][-0.725614,3.44611,2.85714][-0.329408,0.859445,0.390954][0.472478,0.127043,0][-3.78921,1.47518,0.0839259][-0.903586,0.410033,-0.12412][0.367201,0.514575,0][-3.36973,2.21232,0.133912][-0.81524,0.568639,-0.109701][0.381352,0.513496,0][-3.34718,2.30114,-0.580576][-0.807244,0.570668,-0.150646][0.383159,0.528913,0][-3.34718,2.30114,-0.580576][-0.807244,0.570668,-0.150646][0.383159,0.528913,0][-3.76023,1.53944,-0.708238][-0.890741,0.412086,-0.191746][0.368462,0.531668,0][-3.78921,1.47518,0.0839259][-0.903586,0.410033,-0.12412][0.367201,0.514575,0][-2.65439,-3.3448,2.62626][-0.707393,-0.631786,0.316926][0.0763063,0.220109,0][-2.14583,-3.97598,2.25792][-0.55717,-0.809882,0.18345][0.0670496,0.203277,0][-1.78964,-3.99815,2.67011][-0.286329,-0.822926,0.490723][0.0768061,0.196721,0][-2.14583,-3.97598,2.25792][-0.55717,-0.809882,0.18345][0.245284,0.467666,0][-2.65439,-3.3448,2.62626][-0.707393,-0.631786,0.316926][0.260559,0.459718,0][-2.86192,-3.2163,2.00232][-0.715444,-0.625104,0.312067][0.264047,0.473181,0][-3.3586,-1.81648,3.12777][-0.836483,-0.322076,0.443354][0.295626,0.448897,0][-3.52898,-0.968311,3.24738][-0.867029,-0.145175,0.47664][0.314285,0.446316,0][-3.79399,-0.926811,2.42413][-0.905635,-0.141692,0.399685][0.316132,0.46408,0][-3.79399,-0.926811,2.42413][-0.905635,-0.141692,0.399685][0.316132,0.46408,0][-3.61092,-1.74423,2.34405][-0.866637,-0.317869,0.384577][0.298081,0.465807,0][-3.3586,-1.81648,3.12777][-0.836483,-0.322076,0.443354][0.295626,0.448897,0][-2.8067,-3.36567,-1.11952][-0.583633,-0.648457,-0.488748][0.260669,0.540542,0][-2.25448,-3.97795,-0.807595][-0.404322,-0.820071,-0.404979][0.245638,0.533812,0][-2.49079,-3.97106,-0.319614][-0.572417,-0.819221,-0.0348809][0.246644,0.523282,0][-2.25448,-3.97795,-0.807595][-0.404322,-0.820071,-0.404979][0.232095,0.157924,0][-2.8067,-3.36567,-1.11952][-0.583633,-0.648457,-0.488748][0.236053,0.176522,0][-2.32132,-3.25174,-1.57255][-0.575183,-0.63885,-0.510916][0.221611,0.178168,0][-1.78897,2.92285,1.01311][0.474429,-0.870274,-0.132439][0.211923,0.954089,0][-1.46794,2.91275,1.71473][0.417673,-0.855521,-0.305995][0.228081,0.950318,0][-2.18104,2.49341,1.63626][0.605637,-0.740255,-0.291935][0.223228,0.966378,0][-1.46794,2.91275,1.71473][0.417673,-0.855521,-0.305995][0.228081,0.950318,0][-1.78897,2.92285,1.01311][0.474429,-0.870274,-0.132439][0.211923,0.954089,0][-1.19433,3.23477,0.319714][0.361158,-0.930428,0.0621959][0.199872,0.937701,0][0.161693,0.606734,4.87659][-0.00517929,0.235814,0.971784][0.507247,0.329377,0][0.144168,1.40401,4.59598][-0.00582079,0.414096,0.910215][0.524437,0.33015,0][-0.646217,1.46777,4.67478][-0.0648497,0.419346,0.905507][0.525421,0.347231,0][-0.646217,1.46777,4.67478][-0.0648497,0.419346,0.905507][0.525421,0.347231,0][-0.68113,0.645088,4.96101][-0.0794947,0.236255,0.968434][0.507657,0.347578,0][0.161693,0.606734,4.87659][-0.00517929,0.235814,0.971784][0.507247,0.329377,0][3.32562,-0.121064,3.84497][0.636569,0.0400068,0.770181][0.510791,0.426084,0][3.30265,-0.995356,3.80491][0.629015,-0.132955,0.76594][0.528407,0.431836,0][3.87149,-1.03918,3.13069][0.85896,-0.133667,0.494288][0.527435,0.446659,0][3.30265,-0.995356,3.80491][0.629015,-0.132955,0.76594][0.474242,0.260829,0][3.32562,-0.121064,3.84497][0.636569,0.0400068,0.770181][0.493113,0.260766,0][2.54992,-0.126848,4.27998][0.566532,0.0444978,0.822837][0.492604,0.277496,0][4.43449,0.524566,-0.0830664][0.962318,0.233715,-0.139001][0.478921,0.505217,0][4.16628,1.3205,-0.0135957][0.904442,0.405821,-0.131503][0.462059,0.499014,0][4.36195,1.38917,0.759107][0.911346,0.405162,-0.0727422][0.465768,0.482742,0][4.36195,1.38917,0.759107][0.911346,0.405162,-0.0727422][0.465768,0.482742,0][4.64326,0.561965,0.741793][0.971123,0.23107,-0.0593929][0.483616,0.488049,0][4.43449,0.524566,-0.0830664][0.962318,0.233715,-0.139001][0.478921,0.505217,0][3.54802,-0.206916,-2.37061][0.745345,0.0837381,-0.661399][0.139372,0.362666,0][3.09708,0.92863,-2.52952][0.451961,0.229621,-0.437329][0.113685,0.362943,0][4.04945,0.640775,-1.69642][0.796514,0.253055,-0.549116][0.127741,0.339689,0][4.04945,0.640775,-1.69642][0.796514,0.253055,-0.549116][0.127741,0.339689,0][4.1644,-0.214344,-1.79529][0.813008,0.0679194,-0.578278][0.145027,0.345795,0][3.54802,-0.206916,-2.37061][0.745345,0.0837381,-0.661399][0.139372,0.362666,0][-1.62267,1.89368,-2.92234][-0.421623,-2.5359,-0.0697341][0.296523,0.132972,0][-1.53052,2.30549,-2.74848][-0.317153,0.5652,-0.761553][0.299001,0.12421,0][-0.828389,2.22094,-2.88521][-0.258917,0.550924,-0.793375][0.314027,0.126872,0][-2.26892,1.87686,-2.52528][-0.187848,0.244696,-0.283773][0.28258,0.132561,0][-1.53052,2.30549,-2.74848][-0.317153,0.5652,-0.761553][0.299001,0.12421,0][-1.62267,1.89368,-2.92234][-0.421623,-2.5359,-0.0697341][0.296523,0.132972,0][-3.73485,-1.01717,-1.663][-0.790429,-0.139544,-0.596448][0.217793,0.470891,0][-3.7755,-0.146231,-1.67514][-0.802406,0.0487193,-0.594787][0.216024,0.485644,0][-3.12205,-0.140557,-2.26451][-0.738942,0.0482543,-0.672039][0.197728,0.481146,0][-3.12205,-0.140557,-2.26451][-0.738942,0.0482543,-0.672039][0.197728,0.481146,0][-3.08584,-0.979226,-2.24755][-0.736417,-0.135198,-0.662881][0.199541,0.466992,0][-3.73485,-1.01717,-1.663][-0.790429,-0.139544,-0.596448][0.217793,0.470891,0][4.04725,-2.76624,1.49104][0.800019,-0.496722,0.336508][0.236022,0.0775612,0][4.40488,-1.97317,1.54339][0.887388,-0.314394,0.337194][0.240023,0.095385,0][3.98433,-1.8716,2.24853][0.853779,-0.307567,0.420075][0.22259,0.0988518,0][3.98433,-1.8716,2.24853][0.853779,-0.307567,0.420075][0.22259,0.0988518,0][3.66553,-2.63516,2.13343][0.779162,-0.48794,0.393474][0.220147,0.0814153,0][4.04725,-2.76624,1.49104][0.800019,-0.496722,0.336508][0.236022,0.0775612,0][3.4677,2.13901,2.08156][0.765817,0.552743,0.328633][0.454839,0.450131,0][2.97428,2.78679,1.88236][0.663937,0.696139,0.273091][0.438684,0.450136,0][2.77696,2.91447,2.45423][0.64539,0.704082,0.296211][0.438652,0.437328,0][2.77696,2.91447,2.45423][0.64539,0.704082,0.296211][0.438652,0.437328,0][3.2316,2.24785,2.75946][0.73828,0.557441,0.37974][0.455666,0.435186,0][3.4677,2.13901,2.08156][0.765817,0.552743,0.328633][0.454839,0.450131,0][-3.56059,-1.86281,-1.55822][-0.751678,-0.322602,-0.575246][0.240023,0.212253,0][-3.73485,-1.01717,-1.663][-0.790429,-0.139544,-0.596448][0.239955,0.22817,0][-3.08584,-0.979226,-2.24755][-0.736417,-0.135198,-0.662881][0.221144,0.228387,0][-3.08584,-0.979226,-2.24755][-0.736417,-0.135198,-0.662881][0.221144,0.228387,0][-2.94257,-1.79459,-2.12102][-0.707556,-0.313274,-0.633422][0.221967,0.213019,0][-3.56059,-1.86281,-1.55822][-0.751678,-0.322602,-0.575246][0.240023,0.212253,0][-2.53601,2.20917,-1.74475][-0.624672,0.551455,-0.552885][0.185409,0.530517,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.1849,0.520811,0][-3.42923,1.54574,-1.43168][-0.729422,0.40159,-0.553777][0.207261,0.519288,0][-2.58561,1.83394,-1.99079][0.0202695,-0.569857,-0.00309714][0.1849,0.520811,0][-2.53601,2.20917,-1.74475][-0.624672,0.551455,-0.552885][0.185409,0.530517,0][-2.26892,1.87686,-2.52528][-0.187848,0.244696,-0.283773][0.173409,0.516276,0][-1.02285,0.0898155,-3.61537][-1.2826,1.14497,-0.0710672][0.307287,0.172553,0][-0.370139,-0.100523,-3.87867][1.98679,-0.434652,0.0564347][0.321121,0.177434,0][-0.466777,-0.46098,-3.82047][-1.19207,-0.230949,-3.20323][0.318608,0.185084,0][-0.466777,-0.46098,-3.82047][-1.19207,-0.230949,-3.20323][0.120249,0.0640709,0][-0.370139,-0.100523,-3.87867][1.98679,-0.434652,0.0564347][0.112258,0.0656364,0][-0.473817,-0.478471,-3.13957][1.12327,-0.267376,-0.00527127][0.120101,0.0493781,0][1.30053,3.48965,-1.6189][0.104081,0.855344,-0.507498][0.54284,0.206086,0][1.61527,2.92267,-2.21875][0.227064,0.704316,-0.672593][0.551158,0.21703,0][1.02552,2.81962,-2.34517][0.2203,0.70182,-0.677434][0.539664,0.223526,0][1.61527,2.92267,-2.21875][0.227064,0.704316,-0.672593][0.0682999,0.520665,0][1.30053,3.48965,-1.6189][0.104081,0.855344,-0.507498][0.0740837,0.53839,0][1.70239,3.48304,-1.34917][0.45754,0.846627,-0.27181][0.0644088,0.542315,0][-1.58931,2.90809,-0.498427][0.44504,-0.859261,0.252211][0.180711,0.943738,0][-1.83183,2.9214,0.238617][0.511786,-0.854896,0.0850215][0.195344,0.951794,0][-2.28439,2.4874,-0.303052][0.661034,-0.711713,0.237695][0.18173,0.960557,0][-1.83183,2.9214,0.238617][0.511786,-0.854896,0.0850215][0.195344,0.951794,0][-1.58931,2.90809,-0.498427][0.44504,-0.859261,0.252211][0.180711,0.943738,0][-0.686264,3.22882,-0.593062][0.247836,-0.9317,0.265542][0.182602,0.92335,0][2.29539,-3.35815,-2.25962][-1.92147,2.87476,-0.0403022][0.200331,0.397229,0][2.56795,-2.73612,-2.62005][-1.28826,0.54193,-0.0239802][0.186354,0.39574,0][2.72584,-2.37706,-2.72442][-1.73755,-1.1758,-0.0163178][0.178909,0.393148,0][2.69633,-2.36163,-1.40872][-3.01648,1.68249,0.601469][0.703312,0.0636537,0][2.72584,-2.37706,-2.72442][-1.73755,-1.1758,-0.0163178][0.725616,0.0812225,0][2.56795,-2.73612,-2.62005][-1.28826,0.54193,-0.0239802][0.719542,0.0854703,0][3.93245,-2.78953,-0.74838][0.845635,-0.500843,-0.184549][0.541297,0.537301,0][4.27782,-1.98841,-0.899545][0.917923,-0.333481,-0.214962][0.525216,0.536252,0][4.31056,-1.96161,-0.0776094][0.933301,-0.331651,-0.137686][0.529493,0.519034,0][4.31056,-1.96161,-0.0776094][0.933301,-0.331651,-0.137686][0.529493,0.519034,0][3.96181,-2.71903,0.00317119][0.855837,-0.502724,-0.121704][0.544263,0.521297,0][3.93245,-2.78953,-0.74838][0.845635,-0.500843,-0.184549][0.541297,0.537301,0][2.72584,-2.37706,-2.72442][-1.73755,-1.1758,-0.0163178][0.178909,0.393148,0][3.36779,-1.87193,-2.20868][0.708703,-0.344914,-0.615447][0.173805,0.37347,0][3.09199,-2.64027,-1.95525][0.63101,-0.509404,-0.585092][0.190124,0.377776,0][3.09199,-2.64027,-1.95525][0.63101,-0.509404,-0.585092][0.190124,0.377776,0][3.36779,-1.87193,-2.20868][0.708703,-0.344914,-0.615447][0.173805,0.37347,0][3.95104,-1.94887,-1.6518][0.755481,-0.342252,-0.55867][0.180661,0.357774,0][0.832961,3.75148,2.14828][0.228235,0.971365,0.0660189][0.509755,0.131296,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.52122,3.74666,2.23143][-0.196159,0.960628,0.196761][0.502876,0.13159,0][1.11842,3.46082,2.88133][0.30728,0.86454,0.39768][0.509766,0.114703,0][0.832961,3.75148,2.14828][0.228235,0.971365,0.0660189][0.509755,0.131296,0][0.52122,3.74666,2.23143][-0.196159,0.960628,0.196761][0.502876,0.13159,0][-3.79029,-2.64973,0.798397][-0.865203,-0.498238,-0.0564101][0.279475,0.499159,0][-4.14766,-1.87124,0.807614][-0.943711,-0.327543,-0.0461021][0.297332,0.49896,0][-3.95426,-1.81006,0.010581][-0.93674,-0.322544,-0.135954][0.29793,0.516157,0][-3.95426,-1.81006,0.010581][-0.93674,-0.322544,-0.135954][0.29793,0.516157,0][-3.6123,-2.56376,0.0666937][-0.859378,-0.495449,-0.12649][0.280656,0.514947,0][-3.79029,-2.64973,0.798397][-0.865203,-0.498238,-0.0564101][0.279475,0.499159,0][2.10726,2.1927,3.6191][0.448108,0.565613,0.692301][0.50634,0.0363461,0][1.83391,2.81538,3.16399][0.379124,0.710786,0.592494][0.508942,0.0534613,0][1.35732,2.9279,3.52835][0.351267,0.720372,0.598059][0.496082,0.056284,0][1.35732,2.9279,3.52835][0.351267,0.720372,0.598059][0.496082,0.056284,0][1.54244,2.27872,4.05964][0.383563,0.576161,0.721746][0.490994,0.038942,0][2.10726,2.1927,3.6191][0.448108,0.565613,0.692301][0.50634,0.0363461,0][-2.57208,2.86112,1.86046][-0.602108,0.740528,0.298472][0.439491,0.160032,0][-3.07929,2.2496,2.1317][-0.728013,0.597079,0.336888][0.425319,0.158376,0][-2.8584,2.33297,2.79256][-0.696709,0.60886,0.379324][0.425788,0.143272,0][-3.07929,2.2496,2.1317][-0.728013,0.597079,0.336888][0.425319,0.158376,0][-2.57208,2.86112,1.86046][-0.602108,0.740528,0.298472][0.439491,0.160032,0][-2.87363,2.98384,1.34596][-0.612996,0.738926,0.279686][0.437149,0.172416,0][-3.29111,-3.35027,0.778714][-0.758234,-0.646823,-0.0818598][0.262759,0.499583,0][-2.6663,-3.95848,0.74162][-0.563163,-0.81689,-0.124653][0.24755,0.500384,0][-2.59441,-3.9551,1.27612][-0.510404,-0.812213,0.282485][0.24736,0.488851,0][-2.6663,-3.95848,0.74162][-0.563163,-0.81689,-0.124653][0.24755,0.500384,0][-3.29111,-3.35027,0.778714][-0.758234,-0.646823,-0.0818598][0.262759,0.499583,0][-3.12779,-3.24081,0.139856][-0.754633,-0.645243,-0.119124][0.264493,0.513368,0][-3.61092,-1.74423,2.34405][-0.866637,-0.317869,0.384577][0.298081,0.465807,0][-3.29498,-2.51488,2.20329][-0.802019,-0.480012,0.355463][0.280541,0.468845,0][-3.06345,-2.61598,2.92032][-0.782504,-0.486244,0.388914][0.277548,0.453373,0][-3.29498,-2.51488,2.20329][-0.802019,-0.480012,0.355463][0.280541,0.468845,0][-3.61092,-1.74423,2.34405][-0.866637,-0.317869,0.384577][0.298081,0.465807,0][-4.02428,-1.84048,1.62577][-0.884948,-0.323266,0.335211][0.297538,0.481306,0][4.47588,-1.13164,-0.997502][0.962406,-0.145375,-0.229437][0.507782,0.533639,0][4.5146,-0.258058,-1.0083][0.972229,0.0543466,-0.227635][0.489944,0.528964,0][4.55106,-0.306155,-0.137167][0.988715,0.0473355,-0.142133][0.496053,0.51115,0][4.55106,-0.306155,-0.137167][0.988715,0.0473355,-0.142133][0.496053,0.51115,0][4.50978,-1.14541,-0.134556][0.978944,-0.146002,-0.142658][0.513131,0.515799,0][4.47588,-1.13164,-0.997502][0.962406,-0.145375,-0.229437][0.507782,0.533639,0][-1.88586,-0.120548,3.74659][0.525948,-0.0420562,-0.849476][0.307827,0.648149,0][-2.44742,-0.0807074,3.31762][0.682912,-0.0419183,-0.729297][0.295726,0.647092,0][-2.37769,0.631209,3.24428][0.653624,-0.239394,-0.71796][0.29748,0.631757,0][-2.82511,0.67558,2.72958][0.785621,-0.239275,-0.570567][0.0386252,0.940352,0][-2.37769,0.631209,3.24428][0.653624,-0.239394,-0.71796][0.0263235,0.947552,0][-2.44742,-0.0807074,3.31762][0.682912,-0.0419183,-0.729297][0.02,0.935393,0][1.04049,-1.07111,5.05524][0.0978432,-0.137997,0.985588][0.471488,0.30959,0][1.04617,-0.200223,5.09345][0.0910755,0.0494113,0.994617][0.490277,0.309899,0][0.176537,-0.226114,4.99901][-0.00570034,0.0487583,0.998794][0.489289,0.328645,0][0.176537,-0.226114,4.99901][-0.00570034,0.0487583,0.998794][0.489289,0.328645,0][0.179378,-1.06456,4.96103][-0.00806924,-0.138033,0.990395][0.471203,0.328169,0][1.04049,-1.07111,5.05524][0.0978432,-0.137997,0.985588][0.471488,0.30959,0][-4.06481,0.672269,0.0170299][-0.962345,0.237321,-0.132551][0.351127,0.516018,0][-3.78921,1.47518,0.0839259][-0.903586,0.410033,-0.12412][0.367201,0.514575,0][-3.76023,1.53944,-0.708238][-0.890741,0.412086,-0.191746][0.368462,0.531668,0][-3.76023,1.53944,-0.708238][-0.890741,0.412086,-0.191746][0.368462,0.531668,0][-4.03293,0.709426,-0.828614][-0.944858,0.239131,-0.223742][0.351801,0.534265,0][-4.06481,0.672269,0.0170299][-0.962345,0.237321,-0.132551][0.351127,0.516018,0][-0.974342,3.74957,1.79206][0.0596052,0.965994,0.251601][0.475417,0.150217,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-1.18442,3.75366,1.55033][-0.241286,0.96696,-0.0822831][0.472744,0.156533,0][-1.51307,3.4668,2.35925][-0.193078,0.862307,0.468132][0.459821,0.142314,0][-0.974342,3.74957,1.79206][0.0596052,0.965994,0.251601][0.475417,0.150217,0][-1.18442,3.75366,1.55033][-0.241286,0.96696,-0.0822831][0.472744,0.156533,0][-3.05569,2.3026,-1.2369][-0.656161,0.562445,-0.503098][0.200083,0.536269,0][-3.42923,1.54574,-1.43168][-0.729422,0.40159,-0.553777][0.207261,0.519288,0][-3.76023,1.53944,-0.708238][-0.890741,0.412086,-0.191746][0.220828,0.526715,0][-3.42923,1.54574,-1.43168][-0.729422,0.40159,-0.553777][0.207261,0.519288,0][-3.05569,2.3026,-1.2369][-0.656161,0.562445,-0.503098][0.200083,0.536269,0][-2.53601,2.20917,-1.74475][-0.624672,0.551455,-0.552885][0.185409,0.530517,0][-0.393079,-3.39012,-2.64667][0.217589,1.13756,0.0340557][0.714785,0.113826,0][-0.389174,-3.42716,-1.43441][0.0846336,2.65283,0.900071][0.711815,0.139814,0][-0.134386,-3.36433,-2.83859][-0.00733349,-0.754838,-0.741609][0.709705,0.109066,0][-0.393079,-3.39012,-2.64667][0.217589,1.13756,0.0340557][0.175064,0.167666,0][-0.134386,-3.36433,-2.83859][-0.00733349,-0.754838,-0.741609][0.168096,0.167462,0][-0.0652976,-3.97818,-2.20371][-0.213146,-0.823856,-0.525195][0.17659,0.150348,0][-1.46258,2.79436,3.13052][-0.34478,0.72148,0.600495][0.453494,0.12686,0][-1.78395,2.15605,3.60735][-0.403115,0.589598,0.699909][0.44166,0.119812,0][-1.23619,2.23356,4.04009][-0.396547,0.590482,0.702909][0.450221,0.107311,0][-1.78395,2.15605,3.60735][-0.403115,0.589598,0.699909][0.539706,0.372115,0][-1.46258,2.79436,3.13052][-0.34478,0.72148,0.600495][0.553634,0.365498,0][-1.99316,2.93521,2.86495][-0.333576,0.731702,0.594424][0.55641,0.377013,0][4.27782,-1.98841,-0.899545][0.917923,-0.333481,-0.214962][0.525216,0.536252,0][4.47588,-1.13164,-0.997502][0.962406,-0.145375,-0.229437][0.507782,0.533639,0][4.50978,-1.14541,-0.134556][0.978944,-0.146002,-0.142658][0.513131,0.515799,0][4.50978,-1.14541,-0.134556][0.978944,-0.146002,-0.142658][0.513131,0.515799,0][4.31056,-1.96161,-0.0776094][0.933301,-0.331651,-0.137686][0.529493,0.519034,0][4.27782,-1.98841,-0.899545][0.917923,-0.333481,-0.214962][0.525216,0.536252,0][0.923484,-2.7075,4.50763][0.0716129,-0.500669,0.862671][0.436131,0.311304,0][0.99668,-1.91665,4.85933][0.0901463,-0.321888,0.942477][0.453227,0.310117,0][0.175268,-1.87825,4.76669][-0.0101687,-0.319014,0.947695][0.453649,0.327855,0][0.175268,-1.87825,4.76669][-0.0101687,-0.319014,0.947695][0.453649,0.327855,0][0.171194,-2.63759,4.42443][-0.00571564,-0.490364,0.871499][0.437266,0.327567,0][0.923484,-2.7075,4.50763][0.0716129,-0.500669,0.862671][0.436131,0.311304,0][-0.1241,3.74176,2.22428][0.167998,0.967631,0.188329][0.489819,0.135881,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-0.434566,3.74269,2.13409][-0.258329,0.964002,0.0629826][0.484114,0.139726,0][-0.273785,3.44232,2.98762][0.0642918,0.855873,0.513175][0.480779,0.121465,0][-0.1241,3.74176,2.22428][0.167998,0.967631,0.188329][0.489819,0.135881,0][-0.434566,3.74269,2.13409][-0.258329,0.964002,0.0629826][0.484114,0.139726,0][2.68356,3.43351,0.750224][0.526575,0.837599,-0.145417][0.417913,0.469751,0][3.36549,2.84763,0.779405][0.71105,0.6942,-0.111778][0.432485,0.473114,0][3.21359,2.72855,0.185956][0.714051,0.689825,-0.119468][0.430991,0.485985,0][3.36549,2.84763,0.779405][0.71105,0.6942,-0.111778][0.432485,0.473114,0][2.68356,3.43351,0.750224][0.526575,0.837599,-0.145417][0.417913,0.469751,0][2.61736,3.44712,1.2147][0.455285,0.84833,0.270279][0.420064,0.459948,0][2.5372,3.43103,-0.183896][0.546801,0.837262,0.000575204][0.412094,0.489054,0][3.17935,2.84737,-0.410328][0.710091,0.698554,-0.0882764][0.425016,0.497684,0][2.92041,2.87128,-0.962832][0.55372,0.711165,-0.433172][0.420449,0.508791,0][3.17935,2.84737,-0.410328][0.710091,0.698554,-0.0882764][0.425016,0.497684,0][2.5372,3.43103,-0.183896][0.546801,0.837262,0.000575204][0.412094,0.489054,0][2.56444,3.29639,0.285115][0.542365,0.83402,-0.101245][0.41764,0.480085,0][-4.14766,-1.87124,0.807614][-0.943711,-0.327543,-0.0461021][0.297332,0.49896,0][-4.35128,-1.03423,0.808379][-0.988647,-0.14299,-0.046154][0.315875,0.498943,0][-4.14703,-1.00095,-0.0238417][-0.980255,-0.138737,-0.140901][0.31584,0.5169,0][-4.14703,-1.00095,-0.0238417][-0.980255,-0.138737,-0.140901][0.31584,0.5169,0][-3.95426,-1.81006,0.010581][-0.93674,-0.322544,-0.135954][0.29793,0.516157,0][-4.14766,-1.87124,0.807614][-0.943711,-0.327543,-0.0461021][0.297332,0.49896,0][2.47462,0.698566,4.19304][0.542575,0.232493,0.807192][0.510373,0.279529,0][2.31994,1.47991,3.96593][0.501267,0.40918,0.762432][0.527151,0.283253,0][1.69427,1.53157,4.46423][0.415912,0.419118,0.807067][0.527956,0.296775,0][1.69427,1.53157,4.46423][0.415912,0.419118,0.807067][0.527956,0.296775,0][1.81539,0.712061,4.73316][0.447484,0.242156,0.860883][0.510337,0.293757,0][2.47462,0.698566,4.19304][0.542575,0.232493,0.807192][0.510373,0.279529,0][-4.18486,-0.163511,-0.0243253][-0.988995,0.0506223,-0.139016][0.333788,0.516911,0][-4.06481,0.672269,0.0170299][-0.962345,0.237321,-0.132551][0.351127,0.516018,0][-4.03293,0.709426,-0.828614][-0.944858,0.239131,-0.223742][0.351801,0.534265,0][-4.03293,0.709426,-0.828614][-0.944858,0.239131,-0.223742][0.351801,0.534265,0][-4.14929,-0.15671,-0.894337][-0.969037,0.0489349,-0.242019][0.333803,0.535683,0][-4.18486,-0.163511,-0.0243253][-0.988995,0.0506223,-0.139016][0.333788,0.516911,0][-1.30721,-2.72212,4.27749][-0.42738,-0.48721,0.761559][0.434711,0.359417,0][-1.43829,-1.92518,4.60844][-0.440067,-0.322189,0.838174][0.451838,0.362639,0][-2.08692,-1.85171,4.1121][-0.510651,-0.324031,0.796391][0.453102,0.376667,0][-2.08692,-1.85171,4.1121][-0.510651,-0.324031,0.796391][0.119378,0.229891,0][-1.89971,-2.6157,3.81793][-0.481679,-0.489164,0.727121][0.108942,0.216563,0][-1.30721,-2.72212,4.27749][-0.42738,-0.48721,0.761559][0.120224,0.204875,0][-1.51168,-1.07427,4.80373][-0.445865,-0.144927,0.88329][0.470157,0.364643,0][-1.53099,-0.202149,4.84664][-0.444701,0.0420573,0.894691][0.488961,0.365491,0][-2.22164,-0.19734,4.32153][-0.52166,0.0380939,0.852303][0.488723,0.380392,0][-2.22164,-0.19734,4.32153][-0.52166,0.0380939,0.852303][0.488723,0.380392,0][-2.19437,-1.03607,4.28352][-0.525174,-0.147466,0.83812][0.470643,0.379389,0][-1.51168,-1.07427,4.80373][-0.445865,-0.144927,0.88329][0.470157,0.364643,0][1.93653,0.158308,-2.77738][-1.05221,-0.0361623,1.47949][0.252334,0.655761,0][1.49505,0.0329956,-2.97652][1.16828,1.07221,-0.0592884][0.242677,0.653572,0][1.29743,-0.839366,-3.04752][-0.280574,0.132973,0.950577][0.237409,0.635004,0][1.50196,-0.00943465,-3.60765][0.489126,0.443002,-0.0169174][0.0937059,0.462212,0][1.49505,0.0329956,-2.97652][1.16828,1.07221,-0.0592884][0.084635,0.472369,0][1.93653,0.158308,-2.77738][-1.05221,-0.0361623,1.47949][0.0744275,0.469021,0][-3.72339,0.743229,2.42073][-0.892227,0.226861,0.390468][0.351394,0.464153,0][-3.46935,1.53368,2.3248][-0.830309,0.418236,0.368327][0.367281,0.466223,0][-3.8654,1.57146,1.64032][-0.860404,0.412102,0.299796][0.369526,0.480992,0][-3.8654,1.57146,1.64032][-0.860404,0.412102,0.299796][0.369526,0.480992,0][-4.14642,0.737681,1.67722][-0.924245,0.224724,0.308658][0.352815,0.480196,0][-3.72339,0.743229,2.42073][-0.892227,0.226861,0.390468][0.351394,0.464153,0][3.84164,1.40827,2.22838][0.840937,0.392694,0.372313][0.471975,0.451568,0][3.4677,2.13901,2.08156][0.765817,0.552743,0.328633][0.454839,0.450131,0][3.2316,2.24785,2.75946][0.73828,0.557441,0.37974][0.455666,0.435186,0][3.2316,2.24785,2.75946][0.73828,0.557441,0.37974][0.455666,0.435186,0][3.57225,1.50201,2.98323][0.804973,0.396627,0.441255][0.473436,0.435076,0][3.84164,1.40827,2.22838][0.840937,0.392694,0.372313][0.471975,0.451568,0][-0.686101,3.60428,1.93504][-0.487624,5.81739,0.999539][0.169495,0.459661,0][-0.245408,3.57466,1.25446][-0.121962,0.357619,-0.0945384][0.152016,0.460641,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.133985,0.45984,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][-0.245408,3.57466,1.25446][-0.121962,0.357619,-0.0945384][0.49309,0.156794,0][-0.434566,3.74269,2.13409][-0.258329,0.964002,0.0629826][0.484114,0.139726,0][1.31129,1.91685,3.41331][-0.256656,-0.585099,-0.769277][0.37752,0.605316,0][1.84154,1.92291,3.1479][-0.451887,-0.581471,-0.676528][0.388962,0.605372,0][2.02386,1.30568,3.45264][-0.491657,-0.412814,-0.766719][0.392679,0.618752,0][1.84154,1.92291,3.1479][-0.451887,-0.581471,-0.676528][0.113585,0.892154,0][1.31129,1.91685,3.41331][-0.256656,-0.585099,-0.769277][0.118541,0.902582,0][1.15669,2.45727,2.97286][-0.229695,-0.719264,-0.655667][0.106192,0.909785,0][0.99668,-1.91665,4.85933][0.0901463,-0.321888,0.942477][0.453227,0.310117,0][1.04049,-1.07111,5.05524][0.0978432,-0.137997,0.985588][0.471488,0.30959,0][0.179378,-1.06456,4.96103][-0.00806924,-0.138033,0.990395][0.471203,0.328169,0][0.179378,-1.06456,4.96103][-0.00806924,-0.138033,0.990395][0.471203,0.328169,0][0.175268,-1.87825,4.76669][-0.0101687,-0.319014,0.947695][0.453649,0.327855,0][0.99668,-1.91665,4.85933][0.0901463,-0.321888,0.942477][0.453227,0.310117,0][3.1791,0.590356,2.65378][-0.79561,-0.234967,-0.558386][0.402871,0.784028,0][2.70885,0.616881,3.20075][-0.681763,-0.223482,-0.696603][0.414813,0.785394,0][2.55058,1.29331,3.03918][-0.64835,-0.416328,-0.637427][0.412482,0.800579,0][2.02386,1.30568,3.45264][-0.491657,-0.412814,-0.766719][0.392679,0.618752,0][2.55058,1.29331,3.03918][-0.64835,-0.416328,-0.637427][0.404038,0.619204,0][2.70885,0.616881,3.20075][-0.681763,-0.223482,-0.696603][0.407215,0.633853,0][-3.3676,-1.48584,0.0626416][0.937549,0.323129,0.128797][0.340788,0.912124,0][-3.20696,-1.4884,-0.598524][0.888413,0.337191,0.311486][0.338531,0.898023,0][-3.36552,-0.789006,-0.651306][0.934239,0.138341,0.328723][0.353754,0.895135,0][-3.0618,-0.787179,-1.29888][0.851145,0.138341,0.506373][0.351106,0.881374,0][-3.36552,-0.789006,-0.651306][0.934239,0.138341,0.328723][0.353754,0.895135,0][-3.20696,-1.4884,-0.598524][0.888413,0.337191,0.311486][0.338531,0.898023,0][-3.83269,-0.0878661,2.44893][-0.915197,0.0405994,0.400958][0.334116,0.463544,0][-3.72339,0.743229,2.42073][-0.892227,0.226861,0.390468][0.351394,0.464153,0][-4.14642,0.737681,1.67722][-0.924245,0.224724,0.308658][0.352815,0.480196,0][-4.14642,0.737681,1.67722][-0.924245,0.224724,0.308658][0.352815,0.480196,0][-4.26728,-0.131205,1.68077][-0.946835,0.0397163,0.319258][0.334775,0.480119,0][-3.83269,-0.0878661,2.44893][-0.915197,0.0405994,0.400958][0.334116,0.463544,0][-1.62267,1.89368,-2.92234][-0.421623,-2.5359,-0.0697341][0.296523,0.132972,0][-0.828389,2.22094,-2.88521][-0.258917,0.550924,-0.793375][0.314027,0.126872,0][-0.886134,1.73043,-3.12374][-0.869274,-3.35365,-0.293602][0.312196,0.137371,0][-0.428708,1.62697,-3.44352][-1.8941,-0.148376,-0.0835104][0.321927,0.140147,0][-0.886134,1.73043,-3.12374][-0.869274,-3.35365,-0.293602][0.312196,0.137371,0][-0.828389,2.22094,-2.88521][-0.258917,0.550924,-0.793375][0.314027,0.126872,0][2.24959,2.89901,0.665141][-0.585027,-0.810617,-0.0253699][0.364103,0.83964,0][2.12975,2.89781,-0.104801][-0.536046,-0.823454,0.185953][0.347569,0.841321,0][2.66183,2.41752,-0.296985][-0.703195,-0.680491,0.206031][0.342505,0.829522,0][2.12975,2.89781,-0.104801][-0.536046,-0.823454,0.185953][0.204163,0.86776,0][2.24959,2.89901,0.665141][-0.585027,-0.810617,-0.0253699][0.220958,0.86843,0][1.59595,3.24462,0.355543][-0.377019,-0.92272,0.0802779][0.211984,0.879563,0][3.1625,-1.85682,3.67085][0.590365,-0.303897,0.747741][0.455589,0.263426,0][3.30265,-0.995356,3.80491][0.629015,-0.132955,0.76594][0.474242,0.260829,0][2.53399,-0.967802,4.23822][0.564685,-0.135171,0.814162][0.474456,0.277424,0][2.53399,-0.967802,4.23822][0.564685,-0.135171,0.814162][0.474456,0.277424,0][2.42732,-1.79351,4.07795][0.538705,-0.307515,0.784367][0.456591,0.279316,0][3.1625,-1.85682,3.67085][0.590365,-0.303897,0.747741][0.455589,0.263426,0][4.08735,0.615685,2.31492][0.889166,0.216173,0.403302][0.489584,0.454484,0][3.84164,1.40827,2.22838][0.840937,0.392694,0.372313][0.471975,0.451568,0][3.57225,1.50201,2.98323][0.804973,0.396627,0.441255][0.473436,0.435076,0][3.57225,1.50201,2.98323][0.804973,0.396627,0.441255][0.473436,0.435076,0][3.79925,0.690992,3.12511][0.848972,0.219859,0.480529][0.491675,0.436927,0][4.08735,0.615685,2.31492][0.889166,0.216173,0.403302][0.489584,0.454484,0][-0.384063,0.820988,-3.0241][-1.21832,1.12158,-0.0361383][0.2031,0.672724,0][-0.110019,0.923042,-3.03619][1.24367,-0.319431,-0.0460311][0.209123,0.674606,0][-0.125585,1.33401,-2.89632][0.0783222,-0.414184,0.906817][0.209263,0.683479,0][-0.125585,1.33401,-2.89632][0.0783222,-0.414184,0.906817][0.209263,0.683479,0][-0.110019,0.923042,-3.03619][1.24367,-0.319431,-0.0460311][0.209123,0.674606,0][0.406652,0.776108,-3.07764][-0.420602,-1.59046,-0.0709133][0.220085,0.670842,0][-3.56626,-0.0688231,0.0442792][0.988932,-0.0506049,0.139474][0.371403,0.908222,0][-3.59717,-0.0588381,0.763015][0.997662,-0.0469706,-0.049642][0.373489,0.923593,0][-3.56366,-0.778215,0.752258][0.988424,0.141605,-0.0544635][0.358141,0.925116,0][-3.59717,-0.0588381,0.763015][0.997662,-0.0469706,-0.049642][0.373489,0.923593,0][-3.56626,-0.0688231,0.0442792][0.988932,-0.0506049,0.139474][0.371403,0.908222,0][-3.46315,0.646924,0.0748179][0.95039,-0.288661,0.115908][0.38623,0.907188,0][-3.6123,-2.56376,0.0666937][-0.859378,-0.495449,-0.12649][0.280656,0.514947,0][-3.12779,-3.24081,0.139856][-0.754633,-0.645243,-0.119124][0.264493,0.513368,0][-3.29111,-3.35027,0.778714][-0.758234,-0.646823,-0.0818598][0.262759,0.499583,0][-3.12779,-3.24081,0.139856][-0.754633,-0.645243,-0.119124][0.264493,0.513368,0][-3.6123,-2.56376,0.0666937][-0.859378,-0.495449,-0.12649][0.280656,0.514947,0][-3.579,-2.65797,-0.688025][-0.845835,-0.502525,-0.178975][0.278531,0.531232,0][3.89748,-0.942139,-0.0794516][-0.978348,0.146177,0.146514][0.341375,0.753436,0][3.9354,-0.934287,0.632395][-0.988391,0.144977,-0.0454397][0.356692,0.752289,0][3.97042,-0.215487,0.644529][-0.99818,-0.0432251,-0.0420464][0.358113,0.767385,0][3.8693,-0.178949,1.36068][-0.971923,-0.0410872,-0.231684][0.373608,0.767345,0][3.97042,-0.215487,0.644529][-0.99818,-0.0432251,-0.0420464][0.358113,0.767385,0][3.9354,-0.934287,0.632395][-0.988391,0.144977,-0.0454397][0.356692,0.752289,0][-3.36552,-0.789006,-0.651306][0.934239,0.138341,0.328723][0.353754,0.895135,0][-3.0618,-0.787179,-1.29888][0.851145,0.138341,0.506373][0.351106,0.881374,0][-3.09428,-0.0669764,-1.30749][0.858005,-0.0548872,0.510701][0.36642,0.879434,0][-2.66253,-0.0653504,-1.89899][0.727519,-0.045467,0.684579][0.363443,0.866929,0][-3.09428,-0.0669764,-1.30749][0.858005,-0.0548872,0.510701][0.36642,0.879434,0][-3.0618,-0.787179,-1.29888][0.851145,0.138341,0.506373][0.351106,0.881374,0][-2.88007,-0.755652,2.75482][0.812817,0.146874,-0.563699][0.36106,0.968274,0][-2.4204,-0.801418,3.28779][0.684821,0.149501,-0.713211][0.359739,0.98,0][-2.29978,-1.50516,3.15932][0.660944,0.330513,-0.673731][0.344117,0.978998,0][-2.4204,-0.801418,3.28779][0.684821,0.149501,-0.713211][0.359739,0.98,0][-2.88007,-0.755652,2.75482][0.812817,0.146874,-0.563699][0.36106,0.968274,0][-2.90982,-0.0342677,2.78241][0.815726,-0.04263,-0.576866][0.376478,0.967108,0][2.19641,-0.801022,3.69492][-0.563902,0.14945,-0.812206][0.395661,0.664264,0][1.56235,-0.811139,4.03683][-0.38121,0.136249,-0.914393][0.381978,0.664259,0][1.56961,-0.0903031,4.06929][-0.375406,-0.0504885,-0.925484][0.382388,0.64871,0][0.879796,-0.11972,4.27129][-0.183765,-0.0513598,-0.981627][0.367495,0.649103,0][1.56961,-0.0903031,4.06929][-0.375406,-0.0504885,-0.925484][0.382388,0.64871,0][1.56235,-0.811139,4.03683][-0.38121,0.136249,-0.914393][0.381978,0.664259,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][1.23687,-3.91301,0.586218][-0.268365,0.963004,-0.0245837][0.219867,0.793069,0][1.10603,-3.91103,0.00693724][-0.237453,0.961531,0.138111][0.208456,0.798876,0][1.10603,-3.91103,0.00693724][-0.237453,0.961531,0.138111][0.208456,0.798876,0][1.23687,-3.91301,0.586218][-0.268365,0.963004,-0.0245837][0.219867,0.793069,0][1.90735,-3.65197,0.601951][-0.450609,0.892696,-0.00679868][0.229802,0.804592,0][-3.53367,-0.788237,0.0399884][0.980653,0.139426,0.137405][0.356074,0.909883,0][-3.56366,-0.778215,0.752258][0.988424,0.141605,-0.0544635][0.358141,0.925116,0][-3.39508,-1.47591,0.742921][0.93901,0.339055,-0.0574659][0.342766,0.926672,0][-3.56366,-0.778215,0.752258][0.988424,0.141605,-0.0544635][0.358141,0.925116,0][-3.53367,-0.788237,0.0399884][0.980653,0.139426,0.137405][0.356074,0.909883,0][-3.56626,-0.0688231,0.0442792][0.988932,-0.0506049,0.139474][0.371403,0.908222,0][1.50126,-1.51508,3.88228][-0.367141,0.331537,-0.869074][0.380413,0.679425,0][0.847966,-1.53992,4.0765][-0.186635,0.320062,-0.928832][0.36631,0.679731,0][0.878877,-0.839762,4.23971][-0.189892,0.137164,-0.972176][0.367223,0.664637,0][0.169078,-0.861795,4.30164][0.00525046,0.140113,-0.990122][0.351901,0.664863,0][0.878877,-0.839762,4.23971][-0.189892,0.137164,-0.972176][0.367223,0.664637,0][0.847966,-1.53992,4.0765][-0.186635,0.320062,-0.928832][0.36631,0.679731,0][1.73059,2.91576,-0.784132][-0.446736,-0.835755,0.319282][0.111899,0.704354,0][1.44461,2.92601,-1.06033][-0.317606,-0.830702,0.457231][0.10358,0.703749,0][1.7968,2.47581,-1.50261][-0.408672,-0.716942,0.564784][0.104384,0.688392,0][1.44461,2.92601,-1.06033][-0.317606,-0.830702,0.457231][0.18116,0.87802,0][1.73059,2.91576,-0.784132][-0.446736,-0.835755,0.319282][0.188165,0.873226,0][1.05631,3.25278,-0.569244][-0.250275,-0.928686,0.273688][0.190209,0.886985,0][-0.350159,0.833803,-3.76938][-1.01668,0.92527,-0.0400111][0.32267,0.157329,0][-0.428708,1.62697,-3.44352][-1.8941,-0.148376,-0.0835104][0.321927,0.140147,0][-0.195357,1.57409,-3.58047][-0.186344,0.391843,-0.900963][0.326891,0.141566,0][-0.428708,1.62697,-3.44352][-1.8941,-0.148376,-0.0835104][0.321927,0.140147,0][-0.174677,2.31657,-3.15577][-0.180753,0.573948,-0.798694][0.328225,0.125594,0][-0.195357,1.57409,-3.58047][-0.186344,0.391843,-0.900963][0.326891,0.141566,0][-1.43829,-1.92518,4.60844][-0.440067,-0.322189,0.838174][0.451838,0.362639,0][-1.51168,-1.07427,4.80373][-0.445865,-0.144927,0.88329][0.470157,0.364643,0][-2.19437,-1.03607,4.28352][-0.525174,-0.147466,0.83812][0.470643,0.379389,0][-2.19437,-1.03607,4.28352][-0.525174,-0.147466,0.83812][0.470643,0.379389,0][-2.08692,-1.85171,4.1121][-0.510651,-0.324031,0.796391][0.453102,0.376667,0][-1.43829,-1.92518,4.60844][-0.440067,-0.322189,0.838174][0.451838,0.362639,0][-3.49332,-0.0384479,1.47752][0.971644,-0.0431786,-0.232474][0.375298,0.938904,0][-3.26115,-0.0222704,2.16016][0.912018,-0.0417297,-0.408023][0.376475,0.953595,0][-3.22785,-0.743402,2.1369][0.900485,0.163009,-0.40318][0.36106,0.954853,0][-3.26115,-0.0222704,2.16016][0.912018,-0.0417297,-0.408023][0.376475,0.953595,0][-3.49332,-0.0384479,1.47752][0.971644,-0.0431786,-0.232474][0.375298,0.938904,0][-3.39322,0.675315,1.46838][0.946579,-0.23346,-0.222449][0.389996,0.937023,0][2.31994,1.47991,3.96593][0.501267,0.40918,0.762432][0.504571,0.02,0][2.10726,2.1927,3.6191][0.448108,0.565613,0.692301][0.50634,0.0363461,0][1.54244,2.27872,4.05964][0.383563,0.576161,0.721746][0.490994,0.038942,0][1.54244,2.27872,4.05964][0.383563,0.576161,0.721746][0.490994,0.038942,0][1.69427,1.53157,4.46423][0.415912,0.419118,0.807067][0.487438,0.0221578,0][2.31994,1.47991,3.96593][0.501267,0.40918,0.762432][0.504571,0.02,0][-3.0618,-0.787179,-1.29888][0.851145,0.138341,0.506373][0.351106,0.881374,0][-2.63139,-0.785837,-1.883][0.736011,0.126337,0.665076][0.348145,0.869027,0][-2.66253,-0.0653504,-1.89899][0.727519,-0.045467,0.684579][0.363443,0.866929,0][-2.09209,0.411748,-2.35537][0.55078,0.627368,-0.00558207][0.165825,0.665882,0][-2.66253,-0.0653504,-1.89899][0.727519,-0.045467,0.684579][0.152983,0.656263,0][-2.63139,-0.785837,-1.883][0.736011,0.126337,0.665076][0.15282,0.640703,0][4.40488,-1.97317,1.54339][0.887388,-0.314394,0.337194][0.539355,0.485471,0][4.60402,-1.12255,1.55964][0.93369,-0.133801,0.332144][0.522706,0.480519,0][4.1615,-1.05383,2.30643][0.894356,-0.131955,0.427452][0.524027,0.464168,0][4.1615,-1.05383,2.30643][0.894356,-0.131955,0.427452][0.524027,0.464168,0][3.98433,-1.8716,2.24853][0.853779,-0.307567,0.420075][0.539841,0.469823,0][4.40488,-1.97317,1.54339][0.887388,-0.314394,0.337194][0.539355,0.485471,0][-0.456672,1.58106,-2.68909][-0.17271,-0.631496,0.0169859][0.202415,0.689185,0][-0.101236,1.94785,-2.54439][0.037979,-0.577907,0.815219][0.210498,0.696676,0][-0.678527,1.94538,-2.43292][0.273162,-0.559145,0.782776][0.198057,0.697291,0][-0.456672,1.58106,-2.68909][-0.17271,-0.631496,0.0169859][0.202415,0.689185,0][-0.125585,1.33401,-2.89632][0.0783222,-0.414184,0.906817][0.209263,0.683479,0][-0.101236,1.94785,-2.54439][0.037979,-0.577907,0.815219][0.210498,0.696676,0][-3.16771,0.688332,2.12935][0.885874,-0.235157,-0.399911][0.391077,0.951255,0][-2.82511,0.67558,2.72958][0.785621,-0.239275,-0.570567][0.391042,0.964294,0][-2.90982,-0.0342677,2.78241][0.815726,-0.04263,-0.576866][0.376478,0.967108,0][-2.82511,0.67558,2.72958][0.785621,-0.239275,-0.570567][0.391042,0.964294,0][-3.16771,0.688332,2.12935][0.885874,-0.235157,-0.399911][0.391077,0.951255,0][-2.9503,1.36129,2.03498][0.814075,-0.442387,-0.376267][0.40428,0.947694,0][2.47903,2.78838,-1.38771][0.544221,0.698038,-0.465367][0.0450828,0.530901,0][2.90342,2.1344,-1.76871][2.08727,1.90135,-2.04943][0.035159,0.515038,0][2.65747,1.79374,-2.55097][0.303706,0.236699,-0.155802][0.0429702,0.498116,0][2.90342,2.1344,-1.76871][2.08727,1.90135,-2.04943][0.035159,0.515038,0][2.47903,2.78838,-1.38771][0.544221,0.698038,-0.465367][0.0450828,0.530901,0][2.92041,2.87128,-0.962832][0.55372,0.711165,-0.433172][0.034179,0.538527,0][2.54992,-0.126848,4.27998][0.566532,0.0444978,0.822837][0.492604,0.277496,0][2.47462,0.698566,4.19304][0.542575,0.232493,0.807192][0.510373,0.279529,0][1.81539,0.712061,4.73316][0.447484,0.242156,0.860883][0.510337,0.293757,0][1.81539,0.712061,4.73316][0.447484,0.242156,0.860883][0.510337,0.293757,0][1.87639,-0.149578,4.84482][0.471453,0.0499335,0.880476][0.491781,0.292014,0][2.54992,-0.126848,4.27998][0.566532,0.0444978,0.822837][0.492604,0.277496,0][3.89748,-0.942139,-0.0794516][-0.978348,0.146177,0.146514][0.341375,0.753436,0][3.72913,-0.921031,-0.767367][-0.933124,0.143902,0.329502][0.326656,0.75563,0][3.56644,-1.61861,-0.700205][-0.863719,0.38356,0.326911][0.327011,0.741316,0][3.72913,-0.921031,-0.767367][-0.933124,0.143902,0.329502][0.326656,0.75563,0][3.89748,-0.942139,-0.0794516][-0.978348,0.146177,0.146514][0.341375,0.753436,0][3.9328,-0.223113,-0.0737488][-0.988074,-0.0479523,0.146326][0.342658,0.768546,0][3.9354,-0.934287,0.632395][-0.988391,0.144977,-0.0454397][0.356692,0.752289,0][3.83692,-0.898341,1.34186][-0.961376,0.141128,-0.236305][0.372041,0.752238,0][3.8693,-0.178949,1.36068][-0.971923,-0.0410872,-0.231684][0.373608,0.767345,0][3.63038,-0.141548,2.05026][-0.909944,-0.038581,-0.412932][0.388571,0.767866,0][3.8693,-0.178949,1.36068][-0.971923,-0.0410872,-0.231684][0.373608,0.767345,0][3.83692,-0.898341,1.34186][-0.961376,0.141128,-0.236305][0.372041,0.752238,0][3.76163,-0.201203,-0.767689][-0.94319,-0.0555365,0.327578][0.327811,0.770777,0][3.46688,-0.168114,-1.41009][-0.859492,-0.0915512,0.502883][0.314127,0.773608,0][3.43994,-0.888327,-1.40395][-0.854929,0.140059,0.49948][0.313094,0.758423,0][3.46688,-0.168114,-1.41009][-0.859492,-0.0915512,0.502883][0.314127,0.773608,0][3.76163,-0.201203,-0.767689][-0.94319,-0.0555365,0.327578][0.327811,0.770777,0][3.66469,0.513725,-0.705833][-0.90707,-0.249739,0.338901][0.330332,0.786187,0][-0.910031,2.89919,2.24389][0.256284,-0.858496,-0.444188][0.241548,0.940902,0][-0.191856,2.89184,2.53071][0.113463,-0.842432,-0.526721][0.250537,0.927119,0][-0.788621,2.44064,2.95297][0.238729,-0.724246,-0.646897][0.25674,0.94293,0][-0.191856,2.89184,2.53071][0.113463,-0.842432,-0.526721][0.250537,0.927119,0][-0.910031,2.89919,2.24389][0.256284,-0.858496,-0.444188][0.241548,0.940902,0][-0.942847,3.23515,1.33495][0.30441,-0.928782,-0.211418][0.222397,0.936638,0][2.76041,-0.814889,3.22544][-0.674779,0.194314,-0.71198][0.407824,0.664761,0][2.19641,-0.801022,3.69492][-0.563902,0.14945,-0.812206][0.395661,0.664264,0][2.21013,-0.0797337,3.72923][-0.554138,-0.0455336,-0.831179][0.396211,0.648707,0][1.56961,-0.0903031,4.06929][-0.375406,-0.0504885,-0.925484][0.382388,0.64871,0][2.21013,-0.0797337,3.72923][-0.554138,-0.0455336,-0.831179][0.396211,0.648707,0][2.19641,-0.801022,3.69492][-0.563902,0.14945,-0.812206][0.395661,0.664264,0][-0.40414,2.90781,-1.45042][0.162007,-0.841176,0.515923][0.165368,0.91507,0][-1.09023,2.89764,-1.09105][0.341996,-0.828226,0.443938][0.170182,0.930912,0][-0.559164,2.4737,-1.98854][0.226091,-0.725995,0.649473][0.153038,0.917637,0][-1.09023,2.89764,-1.09105][0.341996,-0.828226,0.443938][0.170182,0.930912,0][-0.40414,2.90781,-1.45042][0.162007,-0.841176,0.515923][0.165368,0.91507,0][-0.217024,3.23634,-0.838384][0.104555,-0.926756,0.36082][0.17932,0.912515,0][4.60402,-1.12255,1.55964][0.93369,-0.133801,0.332144][0.522706,0.480519,0][4.64246,-0.250313,1.57108][0.944528,0.0417294,0.32577][0.505023,0.475388,0][4.1955,-0.214441,2.32897][0.906042,0.0384041,0.421441][0.507065,0.458988,0][4.1955,-0.214441,2.32897][0.906042,0.0384041,0.421441][0.507065,0.458988,0][4.1615,-1.05383,2.30643][0.894356,-0.131955,0.427452][0.524027,0.464168,0][4.60402,-1.12255,1.55964][0.93369,-0.133801,0.332144][0.522706,0.480519,0][3.21359,2.72855,0.185956][0.714051,0.689825,-0.119468][0.430991,0.485985,0][3.75442,2.06118,0.0754813][0.819003,0.560148,-0.124371][0.445938,0.492577,0][3.71793,2.16773,-0.629627][0.807857,0.572577,-0.139723][0.439583,0.506607,0][3.75442,2.06118,0.0754813][0.819003,0.560148,-0.124371][0.445938,0.492577,0][3.21359,2.72855,0.185956][0.714051,0.689825,-0.119468][0.430991,0.485985,0][3.36549,2.84763,0.779405][0.71105,0.6942,-0.111778][0.432485,0.473114,0][-3.30088,0.645393,-0.606071][0.915149,-0.24502,0.320105][0.38394,0.892663,0][-3.46315,0.646924,0.0748179][0.95039,-0.288661,0.115908][0.38623,0.907188,0][-3.56626,-0.0688231,0.0442792][0.988932,-0.0506049,0.139474][0.371403,0.908222,0][-3.46315,0.646924,0.0748179][0.95039,-0.288661,0.115908][0.38623,0.907188,0][-3.30088,0.645393,-0.606071][0.915149,-0.24502,0.320105][0.38394,0.892663,0][-3.07582,1.32783,-0.522489][0.860825,-0.433468,0.266619][0.397752,0.892897,0][3.83692,-0.898341,1.34186][-0.961376,0.141128,-0.236305][0.372041,0.752238,0][3.60128,-0.861384,2.02499][-0.899516,0.138752,-0.41427][0.386864,0.752749,0][3.63038,-0.141548,2.05026][-0.909944,-0.038581,-0.412932][0.388571,0.767866,0][3.26155,-0.122976,2.69071][-0.818074,-0.0352837,-0.574029][0.402482,0.768541,0][3.63038,-0.141548,2.05026][-0.909944,-0.038581,-0.412932][0.388571,0.767866,0][3.60128,-0.861384,2.02499][-0.899516,0.138752,-0.41427][0.386864,0.752749,0][1.40922,-1.59528,-3.48035][0.0594714,-2.74806,0.0522794][0.357667,0.211767,0][1.47741,-1.04911,-3.60215][0.255411,-0.128559,-0.958247][0.35979,0.200082,0][2.32581,-1.10987,-3.46431][0.333904,-0.154059,-0.929932][0.377995,0.202406,0][0.675893,-1.01668,-3.92946][0.184041,-0.125211,-0.974911][0.342561,0.198424,0][1.47741,-1.04911,-3.60215][0.255411,-0.128559,-0.958247][0.35979,0.200082,0][1.40922,-1.59528,-3.48035][0.0594714,-2.74806,0.0522794][0.357667,0.211767,0][3.43994,-0.888327,-1.40395][-0.854929,0.140059,0.49948][0.313094,0.758423,0][3.04245,-0.865246,-1.9635][-0.733794,0.169402,0.657913][0.301204,0.761278,0][3.29143,-1.58804,-1.30986][-0.784718,0.379729,0.489922][0.314021,0.743968,0][3.04245,-0.865246,-1.9635][-0.733794,0.169402,0.657913][0.301204,0.761278,0][3.43994,-0.888327,-1.40395][-0.854929,0.140059,0.49948][0.313094,0.758423,0][3.46688,-0.168114,-1.41009][-0.859492,-0.0915512,0.502883][0.314127,0.773608,0][-0.554005,-0.145485,4.26249][0.188599,-0.0451371,-0.981016][0.336553,0.649155,0][0.163537,-0.14211,4.33429][0.00654398,-0.0489856,-0.998778][0.352035,0.649334,0][0.169078,-0.861795,4.30164][0.00525046,0.140113,-0.990122][0.351901,0.664863,0][0.163537,-0.14211,4.33429][0.00654398,-0.0489856,-0.998778][0.352035,0.649334,0][-0.554005,-0.145485,4.26249][0.188599,-0.0451371,-0.981016][0.336553,0.649155,0][-0.543674,0.568962,4.1608][0.162696,-0.283294,-0.945132][0.337027,0.633745,0][-0.541939,-0.8654,4.22779][0.190536,0.144066,-0.971051][0.33656,0.664691,0][0.169078,-0.861795,4.30164][0.00525046,0.140113,-0.990122][0.351901,0.664863,0][0.170005,-1.56006,4.13409][0.0051103,0.323238,-0.946304][0.351676,0.679928,0][0.169078,-0.861795,4.30164][0.00525046,0.140113,-0.990122][0.351901,0.664863,0][-0.541939,-0.8654,4.22779][0.190536,0.144066,-0.971051][0.33656,0.664691,0][-0.554005,-0.145485,4.26249][0.188599,-0.0451371,-0.981016][0.336553,0.649155,0][3.76997,0.537164,1.36569][-0.949763,-0.222856,-0.21974][0.374908,0.782883,0][3.8693,0.502402,0.669655][-0.96081,-0.276557,-0.0190098][0.359849,0.782934,0][3.97042,-0.215487,0.644529][-0.99818,-0.0432251,-0.0420464][0.358113,0.767385,0][3.8693,0.502402,0.669655][-0.96081,-0.276557,-0.0190098][0.359849,0.782934,0][3.76997,0.537164,1.36569][-0.949763,-0.222856,-0.21974][0.374908,0.782883,0][3.54332,1.22602,1.33433][-0.897961,-0.411747,-0.155337][0.375417,0.798365,0][3.63038,-0.141548,2.05026][-0.909944,-0.038581,-0.412932][0.388571,0.767866,0][3.26155,-0.122976,2.69071][-0.818074,-0.0352837,-0.574029][0.402482,0.768541,0][3.1791,0.590356,2.65378][-0.79561,-0.234967,-0.558386][0.402871,0.784028,0][2.70885,0.616881,3.20075][-0.681763,-0.223482,-0.696603][0.414813,0.785394,0][3.1791,0.590356,2.65378][-0.79561,-0.234967,-0.558386][0.402871,0.784028,0][3.26155,-0.122976,2.69071][-0.818074,-0.0352837,-0.574029][0.402482,0.768541,0][0.85129,0.594256,4.16822][-0.169624,-0.23952,-0.955959][0.367131,0.633689,0][1.52408,0.621329,3.97483][-0.354456,-0.239155,-0.903972][0.381656,0.633341,0][1.56961,-0.0903031,4.06929][-0.375406,-0.0504885,-0.925484][0.382388,0.64871,0][1.52408,0.621329,3.97483][-0.354456,-0.239155,-0.903972][0.381656,0.633341,0][0.85129,0.594256,4.16822][-0.169624,-0.23952,-0.955959][0.367131,0.633689,0][0.801441,1.27617,3.93194][-0.107939,-0.431471,-0.895646][0.366295,0.618959,0][-1.48636,-0.78319,-2.78771][0.468451,0.142575,0.871909][0.177494,0.639435,0][-2.09818,-0.78767,-2.38582][0.607961,0.134504,0.782491][0.164306,0.640046,0][-1.93961,-1.91437,-2.05969][1.32067,-1.21719,0.121371][0.166419,0.615587,0][-2.09818,-0.78767,-2.38582][0.607961,0.134504,0.782491][0.164306,0.640046,0][-1.48636,-0.78319,-2.78771][0.468451,0.142575,0.871909][0.177494,0.639435,0][-1.49551,0.236594,-2.77638][0.683375,-0.0283528,0.980157][0.178477,0.661418,0][2.01312,1.80464,-2.91842][0.282276,-2.59671,0.106814][0.374747,0.139242,0][1.28523,1.65751,-3.1143][0.751314,-3.40226,0.0410111][0.358889,0.14154,0][1.19935,2.16448,-2.86939][0.270064,0.550162,-0.790182][0.357645,0.130515,0][1.19935,2.16448,-2.86939][0.270064,0.550162,-0.790182][0.357645,0.130515,0][1.28523,1.65751,-3.1143][0.751314,-3.40226,0.0410111][0.358889,0.14154,0][0.840329,1.58378,-3.42435][1.92671,-0.102693,-0.0446861][0.349215,0.142596,0][-1.88586,-0.120548,3.74659][0.525948,-0.0420562,-0.849476][0.307827,0.648149,0][-1.24617,-0.135976,4.06348][0.361269,-0.0425498,-0.93149][0.321623,0.648706,0][-1.22793,-0.856115,4.0283][0.360541,0.166226,-0.917812][0.321764,0.664249,0][-1.24617,-0.135976,4.06348][0.361269,-0.0425498,-0.93149][0.321623,0.648706,0][-1.88586,-0.120548,3.74659][0.525948,-0.0420562,-0.849476][0.307827,0.648149,0][-1.83494,0.593155,3.65842][0.484394,-0.283911,-0.8275][0.309177,0.632769,0][-2.50521,-1.48869,-1.77708][0.695942,0.328204,0.638708][0.333097,0.873049,0][-2.91591,-1.48846,-1.21831][0.814745,0.31808,0.484785][0.335957,0.884857,0][-2.66298,-2.14718,-1.07076][0.751173,0.51215,0.416463][0.321486,0.889718,0][-2.91591,-1.48846,-1.21831][0.814745,0.31808,0.484785][0.335957,0.884857,0][-2.50521,-1.48869,-1.77708][0.695942,0.328204,0.638708][0.333097,0.873049,0][-2.63139,-0.785837,-1.883][0.736011,0.126337,0.665076][0.348145,0.869027,0][3.23541,-0.843326,2.66005][-0.808655,0.140107,-0.571355][0.400658,0.753411,0][2.76041,-0.814889,3.22544][-0.674779,0.194314,-0.71198][0.413,0.754804,0][2.78074,-0.0936026,3.25937][-0.702064,-0.0393291,-0.711027][0.414898,0.76997,0][2.21013,-0.0797337,3.72923][-0.554138,-0.0455336,-0.831179][0.396211,0.648707,0][2.78074,-0.0936026,3.25937][-0.702064,-0.0393291,-0.711027][0.408516,0.649207,0][2.76041,-0.814889,3.22544][-0.674779,0.194314,-0.71198][0.407824,0.664761,0][0.599135,-0.80014,-3.18545][-0.0510904,0.0923703,0.994413][0.222409,0.636657,0][1.29743,-0.839366,-3.04752][-0.280574,0.132973,0.950577][0.237409,0.635004,0][0.930866,-0.47532,-3.13645][-0.182819,1.5385,0.0123073][0.229932,0.643272,0][1.29743,-0.839366,-3.04752][-0.280574,0.132973,0.950577][0.237409,0.635004,0][0.599135,-0.80014,-3.18545][-0.0510904,0.0923703,0.994413][0.222409,0.636657,0][0.574839,-1.50136,-3.01295][-0.0581411,0.319484,0.945806][0.221074,0.621576,0][1.19935,2.16448,-2.86939][0.270064,0.550162,-0.790182][0.357645,0.130515,0][1.89535,2.22965,-2.73014][0.299795,0.556717,-0.774719][0.372718,0.129944,0][2.01312,1.80464,-2.91842][0.282276,-2.59671,0.106814][0.374747,0.139242,0][2.01312,1.80464,-2.91842][0.282276,-2.59671,0.106814][0.374747,0.139242,0][1.89535,2.22965,-2.73014][0.299795,0.556717,-0.774719][0.372718,0.129944,0][2.65747,1.79374,-2.55097][0.303706,0.236699,-0.155802][0.388615,0.140248,0][2.54269,-0.863903,-2.42718][-0.593186,0.130486,0.79442][0.264212,0.633035,0][1.95381,-0.862782,-2.79005][-0.44962,0.121652,0.884897][0.251525,0.63374,0][1.84086,-1.67744,-2.58338][-0.574905,-2.5798,0.0615733][0.248149,0.616318,0][1.95381,-0.862782,-2.79005][-0.44962,0.121652,0.884897][0.251525,0.63374,0][2.54269,-0.863903,-2.42718][-0.593186,0.130486,0.79442][0.264212,0.633035,0][2.56032,0.355795,-2.32892][-0.440779,-0.0151487,0.619774][0.266003,0.659294,0][2.12379,1.83604,-1.91229][-0.585437,-1.84457,1.07627][0.104763,0.670566,0][2.56257,1.79565,-1.51661][-0.988608,-1.34602,0.598864][0.117173,0.670772,0][2.15796,2.45631,-1.15655][-0.561349,-0.710182,0.424886][0.114848,0.689019,0][2.56257,1.79565,-1.51661][-0.988608,-1.34602,0.598864][0.2168,0.284466,0][2.12379,1.83604,-1.91229][-0.585437,-1.84457,1.07627][0.204283,0.283718,0][2.01312,1.80464,-2.91842][0.282276,-2.59671,0.106814][0.188572,0.268533,0][-3.45902,-0.758504,1.4602][0.961035,0.14386,-0.236044][0.359916,0.940288,0][-3.22785,-0.743402,2.1369][0.900485,0.163009,-0.40318][0.36106,0.954853,0][-3.29319,-1.45958,1.41805][0.899681,0.343005,-0.270039][0.344399,0.941148,0][-3.22785,-0.743402,2.1369][0.900485,0.163009,-0.40318][0.36106,0.954853,0][-3.45902,-0.758504,1.4602][0.961035,0.14386,-0.236044][0.359916,0.940288,0][-3.49332,-0.0384479,1.47752][0.971644,-0.0431786,-0.232474][0.375298,0.938904,0][0.16914,-4.07495,0.575287][-0.00691332,0.999975,-0.00134392][0.204869,0.775239,0][0.680224,-3.9106,-0.391648][-0.138622,0.957354,0.253491][0.19606,0.797357,0][0.0918773,-3.91902,-0.488193][0.0266728,0.954268,0.297761][0.186476,0.789002,0][0.0918773,-3.91902,-0.488193][0.0266728,0.954268,0.297761][0.186476,0.789002,0][0.680224,-3.9106,-0.391648][-0.138622,0.957354,0.253491][0.19606,0.797357,0][0.691364,-3.63482,-1.10859][-0.141801,0.88385,0.44576][0.184911,0.808152,0][-3.49332,0.656963,0.7745][0.957683,-0.286723,-0.0251743][0.388267,0.922151,0][-3.39322,0.675315,1.46838][0.946579,-0.23346,-0.222449][0.389996,0.937023,0][-3.49332,-0.0384479,1.47752][0.971644,-0.0431786,-0.232474][0.375298,0.938904,0][-3.39322,0.675315,1.46838][0.946579,-0.23346,-0.222449][0.389996,0.937023,0][-3.49332,0.656963,0.7745][0.957683,-0.286723,-0.0251743][0.388267,0.922151,0][-3.16155,1.3548,1.42155][0.889496,-0.428076,-0.159835][0.403401,0.934472,0][-3.3676,-1.48584,0.0626416][0.937549,0.323129,0.128797][0.340788,0.912124,0][-3.39508,-1.47591,0.742921][0.93901,0.339055,-0.0574659][0.342766,0.926672,0][-3.07455,-2.13914,0.106199][0.851621,0.511393,0.114973][0.326031,0.914759,0][-3.39508,-1.47591,0.742921][0.93901,0.339055,-0.0574659][0.342766,0.926672,0][-3.3676,-1.48584,0.0626416][0.937549,0.323129,0.128797][0.340788,0.912124,0][-3.53367,-0.788237,0.0399884][0.980653,0.139426,0.137405][0.356074,0.909883,0][2.3319,3.44441,-0.619738][0.383606,0.846135,-0.370002][0.0470466,0.552531,0][2.92041,2.87128,-0.962832][0.55372,0.711165,-0.433172][0.034179,0.538527,0][2.47903,2.78838,-1.38771][0.544221,0.698038,-0.465367][0.0450828,0.530901,0][2.92041,2.87128,-0.962832][0.55372,0.711165,-0.433172][0.420449,0.508791,0][2.3319,3.44441,-0.619738][0.383606,0.846135,-0.370002][0.408601,0.497847,0][2.5372,3.43103,-0.183896][0.546801,0.837262,0.000575204][0.412094,0.489054,0][1.08932,3.61511,1.95704][0.547695,5.82811,0.925456][0.180477,0.221311,0][0.65864,3.58201,1.26584][-0.685217,1.20019,0.505061][0.162928,0.222456,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.14468,0.221905,0][0.206188,3.62804,0.552387][0.140097,5.88623,-0.0301261][0.507001,0.168283,0][0.65864,3.58201,1.26584][-0.685217,1.20019,0.505061][0.511374,0.150754,0][0.805785,3.71346,1.19296][-0.220013,0.972248,0.0795534][0.515288,0.151165,0][-1.86249,-0.8407,3.7149][0.526634,0.150007,-0.836752][0.308079,0.663694,0][-1.22793,-0.856115,4.0283][0.360541,0.166226,-0.917812][0.321764,0.664249,0][-1.76763,-1.54109,3.56666][0.468293,0.353368,-0.809835][0.309879,0.678838,0][-1.22793,-0.856115,4.0283][0.360541,0.166226,-0.917812][0.321764,0.664249,0][-1.86249,-0.8407,3.7149][0.526634,0.150007,-0.836752][0.308079,0.663694,0][-1.88586,-0.120548,3.74659][0.525948,-0.0420562,-0.849476][0.307827,0.648149,0][3.44921,-1.55979,1.96483][-0.849938,0.363944,-0.380985][0.0686983,0.797274,0][3.67237,-1.59435,1.31421][-0.893886,0.373003,-0.24867][0.0835542,0.796935,0][3.46264,-2.26663,0.647965][-0.846229,0.5245,-0.0937852][0.096772,0.813147,0][3.67237,-1.59435,1.31421][-0.893886,0.373003,-0.24867][0.370359,0.738121,0][3.44921,-1.55979,1.96483][-0.849938,0.363944,-0.380985][0.384475,0.738589,0][3.60128,-0.861384,2.02499][-0.899516,0.138752,-0.41427][0.386864,0.752749,0][1.43394,1.29823,3.75269][-0.323074,-0.418218,-0.848951][0.379949,0.618706,0][2.02386,1.30568,3.45264][-0.491657,-0.412814,-0.766719][0.392679,0.618752,0][2.15011,0.630646,3.64999][-0.532002,-0.233158,-0.814009][0.395165,0.63336,0][2.02386,1.30568,3.45264][-0.491657,-0.412814,-0.766719][0.392679,0.618752,0][1.43394,1.29823,3.75269][-0.323074,-0.418218,-0.848951][0.379949,0.618706,0][1.31129,1.91685,3.41331][-0.256656,-0.585099,-0.769277][0.37752,0.605316,0][3.83279,0.494151,-0.0293971][-0.952072,-0.280608,0.121727][0.344807,0.784046,0][3.66469,0.513725,-0.705833][-0.90707,-0.249739,0.338901][0.330332,0.786187,0][3.76163,-0.201203,-0.767689][-0.94319,-0.0555365,0.327578][0.327811,0.770777,0][3.66469,0.513725,-0.705833][-0.90707,-0.249739,0.338901][0.330332,0.786187,0][3.83279,0.494151,-0.0293971][-0.952072,-0.280608,0.121727][0.344807,0.784046,0][3.44407,1.20118,-0.605626][-0.86168,-0.435844,0.259898][0.333668,0.8014,0][-2.10725,0.417669,-3.18555][0.981955,1.74344,-0.00549473][0.284317,0.164191,0][-1.82516,0.337181,-3.38655][0.80369,2.68925,0.00912821][0.290298,0.166263,0][-1.85938,-0.143039,-3.47366][-0.372931,0.0623176,-0.925764][0.288986,0.176568,0][-1.02285,0.0898155,-3.61537][-1.2826,1.14497,-0.0710672][0.307287,0.172553,0][-1.85938,-0.143039,-3.47366][-0.372931,0.0623176,-0.925764][0.288986,0.176568,0][-1.82516,0.337181,-3.38655][0.80369,2.68925,0.00912821][0.290298,0.166263,0][3.72705,-1.63605,-0.0422719][-0.930447,0.338477,0.140361][0.341093,0.739277,0][3.56644,-1.61861,-0.700205][-0.863719,0.38356,0.326911][0.327011,0.741316,0][3.42719,-2.27589,0.024868][-0.828421,0.531102,0.177899][0.34158,0.726686,0][3.56644,-1.61861,-0.700205][-0.863719,0.38356,0.326911][0.327011,0.741316,0][3.72705,-1.63605,-0.0422719][-0.930447,0.338477,0.140361][0.341093,0.739277,0][3.89748,-0.942139,-0.0794516][-0.978348,0.146177,0.146514][0.341375,0.753436,0][-1.83494,0.593155,3.65842][0.484394,-0.283911,-0.8275][0.309177,0.632769,0][-1.21543,0.577814,3.96819][0.360536,-0.245999,-0.899721][0.322537,0.633318,0][-1.24617,-0.135976,4.06348][0.361269,-0.0425498,-0.93149][0.321623,0.648706,0][-1.21543,0.577814,3.96819][0.360536,-0.245999,-0.899721][0.322537,0.633318,0][-1.83494,0.593155,3.65842][0.484394,-0.283911,-0.8275][0.309177,0.632769,0][-2.21051,1.3079,3.06581][0.576985,-0.439786,-0.688242][0.301325,0.617217,0][-0.473817,-0.478471,-3.13957][1.12327,-0.267376,-0.00527127][0.199663,0.644829,0][-0.817697,-0.769827,-3.06045][0.260708,0.148547,0.953921][0.191917,0.638949,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.204379,0.641625,0][-1.04128,0.108405,-2.98323][-1.13479,1.02581,-0.0510726][0.188115,0.658131,0][-0.817697,-0.769827,-3.06045][0.260708,0.148547,0.953921][0.191917,0.638949,0][-0.473817,-0.478471,-3.13957][1.12327,-0.267376,-0.00527127][0.199663,0.644829,0][-0.508513,-1.56449,4.06046][0.233049,0.399734,-0.88651][0.337036,0.679785,0][0.170005,-1.56006,4.13409][0.0051103,0.323238,-0.946304][0.351676,0.679928,0][0.169458,-2.21154,3.83911][0.0550603,0.496625,-0.866217][0.351435,0.693983,0][0.170005,-1.56006,4.13409][0.0051103,0.323238,-0.946304][0.351676,0.679928,0][-0.508513,-1.56449,4.06046][0.233049,0.399734,-0.88651][0.337036,0.679785,0][-0.541939,-0.8654,4.22779][0.190536,0.144066,-0.971051][0.33656,0.664691,0][-0.543674,0.568962,4.1608][0.162696,-0.283294,-0.945132][0.337027,0.633745,0][0.153911,0.572962,4.2292][0.0270094,-0.285025,-0.95814][0.352078,0.633903,0][0.163537,-0.14211,4.33429][0.00654398,-0.0489856,-0.998778][0.352035,0.649334,0][0.153911,0.572962,4.2292][0.0270094,-0.285025,-0.95814][0.352078,0.633903,0][-0.543674,0.568962,4.1608][0.162696,-0.283294,-0.945132][0.337027,0.633745,0][-1.13029,1.26037,3.74473][0.313984,-0.418885,-0.852026][0.324614,0.618622,0][1.50126,-1.51508,3.88228][-0.367141,0.331537,-0.869074][0.380413,0.679425,0][2.10747,-1.50672,3.55423][-0.564745,0.311802,-0.764096][0.393495,0.679457,0][1.94732,-2.16952,3.31387][-0.491964,0.489053,-0.720276][0.389807,0.693701,0][2.10747,-1.50672,3.55423][-0.564745,0.311802,-0.764096][0.393495,0.679457,0][1.50126,-1.51508,3.88228][-0.367141,0.331537,-0.869074][0.380413,0.679425,0][1.56235,-0.811139,4.03683][-0.38121,0.136249,-0.914393][0.381978,0.664259,0][-2.19081,1.84529,-1.49616][0.113063,-2.89537,-0.0458979][0.156395,0.955975,0][-1.7459,1.86529,-1.91454][0.825358,-1.49009,1.32505][0.149357,0.944889,0][-1.7977,2.46996,-1.17795][0.516645,-0.717392,0.467362][0.165167,0.94685,0][-1.62267,1.89368,-2.92234][-0.421623,-2.5359,-0.0697341][0.0812629,0.118804,0][-1.7459,1.86529,-1.91454][0.825358,-1.49009,1.32505][0.0966207,0.10317,0][-2.19081,1.84529,-1.49616][0.113063,-2.89537,-0.0458979][0.109677,0.101778,0][-1.49874,1.90236,3.13856][0.435579,-0.587397,-0.682082][0.31689,0.604642,0][-0.984978,1.88864,3.40102][0.257523,-0.583838,-0.769945][0.327969,0.605118,0][-1.13029,1.26037,3.74473][0.313984,-0.418885,-0.852026][0.324614,0.618622,0][-0.984978,1.88864,3.40102][0.257523,-0.583838,-0.769945][0.265047,0.950849,0][-1.49874,1.90236,3.13856][0.435579,-0.587397,-0.682082][0.257409,0.960443,0][-0.788621,2.44064,2.95297][0.238729,-0.724246,-0.646897][0.25674,0.94293,0][0.675893,-1.01668,-3.92946][0.184041,-0.125211,-0.974911][0.342561,0.198424,0][0.675883,-0.489919,-3.92733][-0.10315,0.704063,-0.00952553][0.343191,0.187075,0][0.93798,-0.468988,-3.82231][0.478129,0.000252229,-1.17083][0.348863,0.186938,0][0.675883,-0.489919,-3.92733][-0.10315,0.704063,-0.00952553][0.0444816,0.396617,0][-0.24763,-0.615047,-3.1754][-0.11724,0.800236,-0.0108267][0.0243848,0.380393,0][0.93798,-0.468988,-3.82231][0.478129,0.000252229,-1.17083][0.0501322,0.394351,0][-2.73842,-1.46301,2.65118][0.787778,0.388949,-0.477625][0.345347,0.967821,0][-2.29978,-1.50516,3.15932][0.660944,0.330513,-0.673731][0.344117,0.978998,0][-2.09039,-2.16718,2.93798][0.650628,0.507466,-0.564944][0.328828,0.97594,0][-2.29978,-1.50516,3.15932][0.660944,0.330513,-0.673731][0.344117,0.978998,0][-2.73842,-1.46301,2.65118][0.787778,0.388949,-0.477625][0.345347,0.967821,0][-2.88007,-0.755652,2.75482][0.812817,0.146874,-0.563699][0.36106,0.968274,0][-2.9503,1.36129,2.03498][0.814075,-0.442387,-0.376267][0.40428,0.947694,0][-2.62832,1.34685,2.58991][0.720454,-0.435106,-0.540026][0.404172,0.959758,0][-2.82511,0.67558,2.72958][0.785621,-0.239275,-0.570567][0.391042,0.964294,0][-2.62832,1.34685,2.58991][0.720454,-0.435106,-0.540026][0.0455006,0.953451,0][-2.9503,1.36129,2.03498][0.814075,-0.442387,-0.376267][0.0579156,0.947421,0][-2.32728,1.95397,2.36014][0.628183,-0.614963,-0.476662][0.05332,0.966718,0][2.59968,0.315043,-3.22939][-0.75527,0.709562,-0.0651227][0.0699699,0.451975,0][2.28358,0.240962,-3.40082][-0.607071,1.99774,-0.0730785][0.0776502,0.453869,0][2.56032,0.355795,-2.32892][-0.440779,-0.0151487,0.619774][0.0575496,0.466932,0][2.34178,-0.238315,-3.49488][0.338448,0.0747115,-0.938015][0.379382,0.183649,0][2.28358,0.240962,-3.40082][-0.607071,1.99774,-0.0730785][0.378702,0.173253,0][2.59968,0.315043,-3.22939][-0.75527,0.709562,-0.0651227][0.385601,0.172036,0][-0.389174,-3.42716,-1.43441][0.0846336,2.65283,0.900071][0.165351,0.79547,0][-0.814596,-3.35288,-1.40236][0.71134,2.79572,0.663655][0.160303,0.788256,0][-0.878268,-3.664,-0.78968][0.265319,0.893741,0.361707][0.168924,0.777931,0][-0.951185,-3.28601,-2.55604][0.0688564,0.348973,0.0120743][0.725974,0.117096,0][-0.814596,-3.35288,-1.40236][0.71134,2.79572,0.663655][0.720454,0.141515,0][-0.389174,-3.42716,-1.43441][0.0846336,2.65283,0.900071][0.711815,0.139814,0]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/shades.mesh b/charcustom/hats/fonts/shades.mesh
new file mode 100644
index 0000000..e918153
--- /dev/null
+++ b/charcustom/hats/fonts/shades.mesh
@@ -0,0 +1,3 @@
+version 1.00
+416
+[1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.0982664,-0.0524437,-0.960818][0.0221649,-0.00568752,-3.37505][0.33812,0.813633,0.499771][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.0982664,-0.0524437,-0.960818][0.0221649,-0.00568752,-3.37505][0.33812,0.813633,0.499771][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.0524028,0.0525956,-0.911516][-0.516807,-0.238596,0.822181][0.348062,0.873121,0.474127][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.0524028,0.0525956,-0.911516][-0.516807,-0.238596,0.822181][0.348062,0.873121,0.474127][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.200329,-0.936381][-0.839713,0.0835737,-0.536561][0.359422,0.956789,0.48706][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.200329,-0.936381][-0.839713,0.0835737,-0.536561][0.359422,0.956789,0.48706][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][-1.41561e-007,0.200329,-0.936381][-0.839713,0.0835737,-0.536561][0.359422,0.956789,0.48706][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.10756,0.198416,0.960823][-0.122329,0.0034451,0.992484][0.119322,0.955705,-0.499774][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.06155,0.0941749,0.943924][-0.554016,0.000170674,0.832506][0.129296,0.896669,-0.490983][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.0982664,-0.0524437,-0.960818][0.0221649,-0.00568752,-3.37505][0.33812,0.813633,0.499771][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.0524028,0.0525956,-0.911516][-0.516807,-0.238596,0.822181][0.348062,0.873121,0.474127][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][0.0982664,-0.0524437,-0.960818][0.0221649,-0.00568752,-3.37505][0.33812,0.813633,0.499771][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.109642,-0.923957][1,0,0][0.359422,0.905429,0.480597][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.0524028,0.0525956,-0.911516][-0.516807,-0.238596,0.822181][0.348062,0.873121,0.474127][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][-1.41561e-007,0.109642,-0.923957][1,0,0][0.359422,0.905429,0.480597][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.10756,0.198416,0.960823][-0.122329,0.0034451,0.992484][0.119322,0.955705,-0.499774][1.10756,0.198416,0.960823][-0.122329,0.0034451,0.992484][0.119322,0.955705,-0.499774][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.10756,0.198416,0.960823][-0.122329,0.0034451,0.992484][0.119322,0.955705,-0.499774][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.06155,0.0941749,0.943924][-0.554016,0.000170674,0.832506][0.129296,0.896669,-0.490983][1.06155,0.0941749,0.943924][-0.554016,0.000170674,0.832506][0.129296,0.896669,-0.490983][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.06155,0.0941749,0.943924][-0.554016,0.000170674,0.832506][0.129296,0.896669,-0.490983][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][-1.41561e-007,0.106101,-0.936309][-0.60615,0.495278,-0.62232][0.359422,0.903424,0.487023][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.106101,-0.936309][-0.60615,0.495278,-0.62232][0.359422,0.903424,0.487023][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.106101,-0.936309][-0.60615,0.495278,-0.62232][0.359422,0.903424,0.487023][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][-1.41561e-007,0.108197,-0.948815][0,-0.968945,-0.247277][0.359422,0.904611,0.493528][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][-1.41561e-007,0.198829,-0.923952][1,0,0][0.359422,0.955939,0.480595][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108197,-0.948815][0,-0.968945,-0.247277][0.359422,0.904611,0.493528][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.198829,-0.923952][1,0,0][0.359422,0.955939,0.480595][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.03125,0.910156,0.5][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.03125,0.785156,0.5][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.03125,0.785156,0.5][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.117188,0.683594,0.499886][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.117188,0.683594,0.499886][-0.0982667,-0.0524437,-0.960818][-0.0221669,-0.00568714,-3.37505][0.03125,0.542969,0.499771][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-0.0982667,-0.0524437,-0.960818][-0.0221669,-0.00568714,-3.37505][0.03125,0.542969,0.499771][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.0117188,0.351563,0.499542][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.0117188,0.351563,0.499542][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.996094,0.351563,0.424972][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.996094,0.351563,0.424972][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.996094,0.351563,0.424972][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.996094,0.570313,0.368113][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.996094,0.570313,0.368113][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.367188,0.660156,0.311255][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.367188,0.660156,0.311255][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.6875,0.75,0.197539][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.683594,0.914063,0.196887][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.6875,0.75,0.197539][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.957031,0.914063,-0.138794][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.683594,0.914063,0.196887][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.6875,0.75,0.197539][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.957031,0.914063,-0.138794][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.6875,0.75,0.197539][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.957031,0.75,-0.138797][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.0524031,0.0525956,-0.911516][0.516807,-0.238597,0.822181][0.370782,0.873121,0.474127][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.0524031,0.0525956,-0.911516][0.516807,-0.238597,0.822181][0.370782,0.873121,0.474127][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-1.41561e-007,0.200329,-0.936381][0.83975,0.0832138,-0.536559][0.359422,0.956789,0.48706][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.200329,-0.936381][0.83975,0.0832138,-0.536559][0.359422,0.956789,0.48706][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.200329,-0.936381][0.83975,0.0832138,-0.536559][0.359422,0.956789,0.48706][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.10756,0.198416,0.960823][0.122329,0.0034441,0.992484][0.599523,0.955705,-0.499774][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.597618,0.95519,0.196887][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.597618,0.95519,0.196887][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.516883,0.954567,0.424194][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.597618,0.95519,0.196887][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.516883,0.954567,0.424194][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.392307,0.954309,0.499806][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.516883,0.954567,0.424194][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.392307,0.954309,0.499806][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.385766,0.731717,0.499542][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.516303,0.73174,0.424972][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.385766,0.731717,0.499542][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.5303,0.803212,0.368113][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.516303,0.73174,0.424972][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.5303,0.803212,0.368113][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.59788,0.896698,0.197539][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.634768,0.896485,-0.138797][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.59788,0.896698,0.197539][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.06155,0.0941749,0.943924][0.554016,0.000170674,0.832506][0.589548,0.896669,-0.490983][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.5548,0.861635,0.311255][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.59788,0.896698,0.197539][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.5548,0.861635,0.311255][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.385766,0.731717,0.499542][-0.0982667,-0.0524437,-0.960818][-0.0221669,-0.00568714,-3.37505][0.380725,0.813633,0.499771][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.385766,0.731717,0.499542][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0524031,0.0525956,-0.911516][0.516807,-0.238597,0.822181][0.370782,0.873121,0.474127][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.371287,0.873112,0.499886][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.0982667,-0.0524437,-0.960818][-0.0221669,-0.00568714,-3.37505][0.380725,0.813633,0.499771][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.371287,0.873112,0.499886][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.0524031,0.0525956,-0.911516][0.516807,-0.238597,0.822181][0.370782,0.873121,0.474127][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-1.41561e-007,0.109642,-0.923957][1,0,0][0.359422,0.905429,0.480597][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.109642,-0.923957][1,0,0][0.359422,0.905429,0.480597][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.5303,0.803212,0.368113][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.5548,0.861635,0.311255][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.5303,0.803212,0.368113][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.634768,0.896485,-0.138797][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.10756,0.198416,0.960823][0.122329,0.0034441,0.992484][0.599523,0.955705,-0.499774][-1.10756,0.198416,0.960823][0.122329,0.0034441,0.992484][0.599523,0.955705,-0.499774][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.634768,0.896485,-0.138797][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.10756,0.198416,0.960823][0.122329,0.0034441,0.992484][0.599523,0.955705,-0.499774][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.06155,0.0941749,0.943924][0.554016,0.000170674,0.832506][0.589548,0.896669,-0.490983][-1.06155,0.0941749,0.943924][0.554016,0.000170674,0.832506][0.589548,0.896669,-0.490983][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.06155,0.0941749,0.943924][0.554016,0.000170674,0.832506][0.589548,0.896669,-0.490983][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.634768,0.896485,-0.138797][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.106101,-0.936309][0.606099,0.495327,-0.62233][0.359422,0.903424,0.487023][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.106101,-0.936309][0.606099,0.495327,-0.62233][0.359422,0.903424,0.487023][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-1.41561e-007,0.106101,-0.936309][0.606099,0.495327,-0.62233][0.359422,0.903424,0.487023][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][-1.41561e-007,0.108197,-0.948815][0,-0.968945,-0.247277][0.359422,0.904611,0.493528][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.371287,0.873112,0.499886][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.198829,-0.923952][1,0,0][0.359422,0.955939,0.480595][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-1.41561e-007,0.108197,-0.948815][0,-0.968945,-0.247277][0.359422,0.904611,0.493528][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-1.41561e-007,0.198829,-0.923952][1,0,0][0.359422,0.955939,0.480595][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/tophat.mesh b/charcustom/hats/fonts/tophat.mesh
new file mode 100644
index 0000000..b60e79c
--- /dev/null
+++ b/charcustom/hats/fonts/tophat.mesh
@@ -0,0 +1,3 @@
+version 1.00
+438
+[1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.878875,0.0784093,-0.24975][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.872899,0.0935805,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.15859,-0.723019,0.142153][0,-3.14159,0][0.889765,0.0793359,-0.24975][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.88682,0.0798023,-0.24975][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.878875,0.0784093,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.88682,0.0798023,-0.24975][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.872437,0.075129,-0.24975][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.869136,0.0718274,-0.24975][1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0865126,-0.24975][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.872437,0.075129,-0.24975][1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0865126,-0.24975][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.872899,0.0935805,-0.24975][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.872437,0.075129,-0.24975][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.872899,0.0935805,-0.24975][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.878875,0.0784093,-0.24975][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.867024,0.0697156,-0.24975][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.863449,0.0622699,-0.24975][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.075684,-0.24975][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.075684,-0.24975][1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0865126,-0.24975][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.869136,0.0718274,-0.24975][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.867024,0.0697156,-0.24975][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.075684,-0.24975][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.869136,0.0718274,-0.24975][0,-0.723019,-1.18107][0,-3.45575,0][0.862351,0.0553328,-0.24975][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.863501,0.0480724,-0.24975][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0624006,-0.24975][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0624006,-0.24975][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.075684,-0.24975][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.863449,0.0622699,-0.24975][0,-0.723019,-1.18107][0,-3.45575,0][0.862351,0.0553328,-0.24975][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0624006,-0.24975][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.863449,0.0622699,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0624006,-0.24975][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.863501,0.0480724,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.863501,0.0480724,-0.24975][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.867024,0.0409499,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.867024,0.0409499,-0.24975][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.872437,0.0355364,-0.24975][-1.1233,-0.723019,-0.364953][2.89893e-006,-3.45575,2.0209e-006][0.879259,0.0320608,-0.24975][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.883739,0.0313511,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.872437,0.0355364,-0.24975][-1.1233,-0.723019,-0.364953][2.89893e-006,-3.45575,2.0209e-006][0.879259,0.0320608,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.872437,0.0355364,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.0349815,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0241528,-0.24975][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.0349815,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.872899,0.0170849,-0.24975][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0241528,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.96464,-0.723019,2.62643e-005][0,-2.79253,0][0.88682,0.0146303,-0.24975][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.872899,0.0170849,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.92207,0.0349815,-0.24975][-1.505,-0.723019,1.26287][-4.58469e-007,-2.79253,5.46383e-007][0.912983,0.0241528,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.926904,0.0482648,-0.24975][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.92207,0.0349815,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][0.341156,-0.723019,1.93482][0,-2.79253,0][0.926904,0.0624006,-0.24975][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.926904,0.0482648,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][0.982319,-0.723019,1.70145][0,-2.79253,0][0.92207,0.075684,-0.24975][0.341156,-0.723019,1.93482][0,-2.79253,0][0.926904,0.0624006,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.904592,0.0389258,-0.24975][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.906616,0.0409499,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.906616,0.0409499,-0.24975][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.910092,0.0477712,-0.24975][0.364981,-0.723019,1.12332][0,-3.45575,0][0.910092,0.0628942,-0.24975][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.909146,0.064751,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.91129,0.0553328,-0.24975][0.364981,-0.723019,1.12332][0,-3.45575,0][0.910092,0.0628942,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.91129,0.0553328,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][0.982319,-0.723019,1.70145][0,-2.79253,0][0.92207,0.075684,-0.24975][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.910092,0.0477712,-0.24975][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.91129,0.0553328,-0.24975][0.982319,-0.723019,1.70145][0,-2.79253,0][0.92207,0.075684,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.910092,0.0477712,-0.24975][0.982319,-0.723019,1.70145][0,-2.79253,0][0.92207,0.075684,-0.24975][1.84615,-0.723019,0.671971][0,-1.75792,0][0.900741,0.0935805,-0.24975][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.900972,0.0752467,-0.24975][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.894382,0.0786047,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.84615,-0.723019,0.671971][0,-1.75792,0][0.900741,0.0935805,-0.24975][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.894382,0.0786047,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.894382,0.0786047,-0.24975][1.15859,-0.723019,0.142153][0,-3.14159,0][0.889765,0.0793359,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.156439,0.0330797,0.999001][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.192747,0.0330797,0.999001][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.192747,0.126404,0.999001][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.192747,0.126404,0.999001][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.156439,0.126404,0.999001][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.156439,0.0330797,0.999001][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.192747,0.0330797,0.999001][1.505,-0.723019,-1.26282][0,-2.79253,0][0.229055,0.0330797,0.999001][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.229055,0.126404,0.999001][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.229055,0.126404,0.999001][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.192747,0.126404,0.999001][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.192747,0.0330797,0.999001][1.505,-0.723019,-1.26282][0,-2.79253,0][0.229055,0.0330797,0.999001][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.265363,0.0330797,0.999001][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.265363,0.126404,0.999001][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.265363,0.126404,0.999001][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.229055,0.126404,0.999001][1.505,-0.723019,-1.26282][0,-2.79253,0][0.229055,0.0330797,0.999001][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.265363,0.0330797,0.999001][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.301671,0.0330797,0.999001][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.301671,0.126404,0.999001][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.301671,0.126404,0.999001][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.265363,0.126404,0.999001][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.265363,0.0330797,0.999001][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.301671,0.0330797,0.999001][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.337979,0.0330797,0.999001][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.337979,0.126404,0.999001][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.337979,0.126404,0.999001][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.301671,0.126404,0.999001][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.301671,0.0330797,0.999001][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.337979,0.0330797,0.999001][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.374287,0.0330797,0.999001][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.374287,0.126404,0.999001][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.374287,0.126404,0.999001][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.337979,0.126404,0.999001][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.337979,0.0330797,0.999001][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.374287,0.0330797,0.999001][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.410595,0.0330797,0.999001][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.410595,0.126404,0.999001][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.410595,0.126404,0.999001][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.374287,0.126404,0.999001][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.374287,0.0330797,0.999001][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.410595,0.0330797,0.999001][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.446903,0.0330797,0.999001][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.446903,0.126404,0.999001][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.446903,0.126404,0.999001][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.410595,0.126404,0.999001][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.410595,0.0330797,0.999001][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.446903,0.0330797,0.999001][-1.96464,-0.723019,2.62643e-005][0,-2.79253,0][0.483211,0.0330797,0.999001][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.483211,0.126404,0.999001][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.483211,0.126404,0.999001][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.446903,0.126404,0.999001][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.446903,0.0330797,0.999001][-1.96464,-0.723019,2.62643e-005][0,-2.79253,0][0.483211,0.0330797,0.999001][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.519519,0.0330797,0.999001][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.519519,0.126404,0.999001][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.519519,0.126404,0.999001][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.483211,0.126404,0.999001][-1.96464,-0.723019,2.62643e-005][0,-2.79253,0][0.483211,0.0330797,0.999001][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.519519,0.0330797,0.999001][-1.505,-0.723019,1.26287][-4.58469e-007,-2.79253,5.46383e-007][0.555827,0.0330797,0.999001][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.555827,0.126404,0.999001][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.555827,0.126404,0.999001][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.519519,0.126404,0.999001][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.519519,0.0330797,0.999001][-1.505,-0.723019,1.26287][-4.58469e-007,-2.79253,5.46383e-007][0.555827,0.0330797,0.999001][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.592135,0.0330797,0.999001][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.592135,0.126404,0.999001][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.592135,0.126404,0.999001][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.555827,0.126404,0.999001][-1.505,-0.723019,1.26287][-4.58469e-007,-2.79253,5.46383e-007][0.555827,0.0330797,0.999001][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.592135,0.0330797,0.999001][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.628442,0.0330797,0.999001][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.628442,0.126404,0.999001][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.628442,0.126404,0.999001][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.592135,0.126404,0.999001][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.592135,0.0330797,0.999001][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.628442,0.0330797,0.999001][0.341156,-0.723019,1.93482][0,-2.79253,0][0.66475,0.0330797,0.999001][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.66475,0.126404,0.999001][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.66475,0.126404,0.999001][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.628442,0.126404,0.999001][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.628442,0.0330797,0.999001][0.341156,-0.723019,1.93482][0,-2.79253,0][0.66475,0.0330797,0.999001][0.982319,-0.723019,1.70145][0,-2.79253,0][0.701058,0.0330797,0.999001][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.701058,0.126404,0.999001][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.701058,0.126404,0.999001][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.66475,0.126404,0.999001][0.341156,-0.723019,1.93482][0,-2.79253,0][0.66475,0.0330797,0.999001][0.982319,-0.723019,1.70145][0,-2.79253,0][0.701058,0.0330797,0.999001][1.505,-0.723019,1.26287][0,-0.872662,0][0.737366,0.0330797,0.999001][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.737366,0.126404,0.999001][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.737366,0.126404,0.999001][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.701058,0.126404,0.999001][0.982319,-0.723019,1.70145][0,-2.79253,0][0.701058,0.0330797,0.999001][1.505,-0.723019,1.26287][0,-0.872662,0][0.737366,0.0330797,0.999001][1.84615,-0.723019,0.671971][0,-1.75792,0][0.773674,0.0330797,0.999001][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.773674,0.126404,0.999001][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.773674,0.126404,0.999001][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.737366,0.126404,0.999001][1.505,-0.723019,1.26287][0,-0.872662,0][0.737366,0.0330797,0.999001][1.84615,-0.723019,0.671971][0,-1.75792,0][0.773674,0.0330797,0.999001][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.809982,0.0330797,0.999001][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.809982,0.126404,0.999001][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.809982,0.126404,0.999001][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.773674,0.126404,0.999001][1.84615,-0.723019,0.671971][0,-1.75792,0][0.773674,0.0330797,0.999001][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.0800584,0.136724,-0.178352][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.0599331,0.133176,-0.178352][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0671057,0.113469,-0.178352][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0671057,0.113469,-0.178352][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0800584,0.115753,-0.178352][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.0800584,0.136724,-0.178352][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.0599331,0.133176,-0.178352][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.0422353,0.122958,-0.178352][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.0557153,0.106893,-0.178352][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.0557153,0.106893,-0.178352][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0671057,0.113469,-0.178352][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.0599331,0.133176,-0.178352][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.0422353,0.122958,-0.178352][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.0290994,0.107303,-0.178352][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.0472611,0.0968175,-0.178352][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.0472611,0.0968175,-0.178352][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.0557153,0.106893,-0.178352][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.0422353,0.122958,-0.178352][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.0290994,0.107303,-0.178352][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.02211,0.0880999,-0.178352][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.0427627,0.0844583,-0.178352][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.0427627,0.0844583,-0.178352][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.0472611,0.0968175,-0.178352][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.0290994,0.107303,-0.178352][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.02211,0.0880999,-0.178352][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.02211,0.0676641,-0.178352][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.0427627,0.0713058,-0.178352][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.0427627,0.0713058,-0.178352][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.0427627,0.0844583,-0.178352][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.02211,0.0880999,-0.178352][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.02211,0.0676641,-0.178352][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.0290994,0.0484609,-0.178352][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.0472611,0.0589466,-0.178352][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.0472611,0.0589466,-0.178352][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.0427627,0.0713058,-0.178352][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.02211,0.0676641,-0.178352][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.0290994,0.0484609,-0.178352][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.0422353,0.0328062,-0.178352][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.0557153,0.0488711,-0.178352][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.0557153,0.0488711,-0.178352][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.0472611,0.0589466,-0.178352][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.0290994,0.0484609,-0.178352][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.0422353,0.0328062,-0.178352][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.0599331,0.0225884,-0.178352][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.0671057,0.0422949,-0.178352][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.0671057,0.0422949,-0.178352][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.0557153,0.0488711,-0.178352][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.0422353,0.0328062,-0.178352][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.0599331,0.0225884,-0.178352][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.0800583,0.0190398,-0.178352][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.0800583,0.040011,-0.178352][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.0800583,0.040011,-0.178352][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.0671057,0.0422949,-0.178352][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.0599331,0.0225884,-0.178352][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.0800583,0.0190398,-0.178352][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.100184,0.0225884,-0.178352][-1.18819,-0.474455,0.432491][0,3.49066,0][0.093011,0.0422949,-0.178352][-1.18819,-0.474455,0.432491][0,3.49066,0][0.093011,0.0422949,-0.178352][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.0800583,0.040011,-0.178352][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.0800583,0.0190398,-0.178352][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.100184,0.0225884,-0.178352][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.117881,0.0328062,-0.178352][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.104401,0.0488711,-0.178352][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.104401,0.0488711,-0.178352][-1.18819,-0.474455,0.432491][0,3.49066,0][0.093011,0.0422949,-0.178352][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.100184,0.0225884,-0.178352][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.117881,0.0328062,-0.178352][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.131017,0.0484609,-0.178352][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.112856,0.0589465,-0.178352][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.112856,0.0589465,-0.178352][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.104401,0.0488711,-0.178352][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.117881,0.0328062,-0.178352][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.131017,0.0484609,-0.178352][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.138007,0.0676641,-0.178352][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0713058,-0.178352][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0713058,-0.178352][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.112856,0.0589465,-0.178352][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.131017,0.0484609,-0.178352][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.138007,0.0676641,-0.178352][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.138007,0.0880999,-0.178352][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0844583,-0.178352][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0844583,-0.178352][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0713058,-0.178352][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.138007,0.0676641,-0.178352][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.138007,0.0880999,-0.178352][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.131017,0.107303,-0.178352][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.112856,0.0968175,-0.178352][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.112856,0.0968175,-0.178352][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0844583,-0.178352][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.138007,0.0880999,-0.178352][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.131017,0.107303,-0.178352][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.117881,0.122958,-0.178352][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.104401,0.106893,-0.178352][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.104401,0.106893,-0.178352][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.112856,0.0968175,-0.178352][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.131017,0.107303,-0.178352][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.117881,0.122958,-0.178352][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.100184,0.133176,-0.178352][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.093011,0.113469,-0.178352][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.093011,0.113469,-0.178352][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.104401,0.106893,-0.178352][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.117881,0.122958,-0.178352][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.100184,0.133176,-0.178352][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.0800584,0.136724,-0.178352][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0800584,0.115753,-0.178352][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0800584,0.115753,-0.178352][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.093011,0.113469,-0.178352][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.100184,0.133176,-0.178352][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0179743,0.156828,0.642959][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0714258,0.156828,0.642959][1.17314,1.01593,-0.426962][2.91057,0.0332832,-1.05936][0.0714258,0.980605,0.634815][1.17314,1.01593,-0.426962][2.91057,0.0332832,-1.05936][0.0714258,0.980605,0.634815][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0179743,0.980605,0.634815][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0179743,0.156828,0.642959][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0714258,0.156828,0.642959][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.124877,0.156828,0.642959][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.124877,0.980605,0.634815][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.124877,0.980605,0.634815][1.17314,1.01593,-0.426962][2.91057,0.0332832,-1.05936][0.0714258,0.980605,0.634815][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0714258,0.156828,0.642959][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.124877,0.156828,0.642959][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.178329,0.156828,0.642959][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.178329,0.980605,0.634815][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.178329,0.980605,0.634815][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.124877,0.980605,0.634815][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.124877,0.156828,0.642959][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.178329,0.156828,0.642959][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.23178,0.156828,0.642959][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.23178,0.980605,0.634815][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.23178,0.980605,0.634815][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.178329,0.980605,0.634815][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.178329,0.156828,0.642959][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.23178,0.156828,0.642959][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.285232,0.156828,0.642959][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.285232,0.980605,0.634815][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.285232,0.980605,0.634815][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.23178,0.980605,0.634815][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.23178,0.156828,0.642959][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.285232,0.156828,0.642959][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.338683,0.156828,0.642959][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.338683,0.980605,0.634815][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.338683,0.980605,0.634815][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.285232,0.980605,0.634815][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.285232,0.156828,0.642959][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.338683,0.156828,0.642959][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.392135,0.156828,0.642959][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.392135,0.980605,0.634815][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.392135,0.980605,0.634815][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.338683,0.980605,0.634815][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.338683,0.156828,0.642959][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.392135,0.156828,0.642959][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.445586,0.156828,0.642959][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.445586,0.980605,0.634815][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.445586,0.980605,0.634815][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.392135,0.980605,0.634815][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.392135,0.156828,0.642959][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.445586,0.156828,0.642959][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.499038,0.156828,0.642959][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.499038,0.980605,0.634815][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.499038,0.980605,0.634815][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.445586,0.980605,0.634815][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.445586,0.156828,0.642959][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.499038,0.156828,0.642959][-1.18819,-0.474455,0.432491][0,3.49066,0][0.55249,0.156828,0.642959][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.55249,0.980605,0.634815][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.55249,0.980605,0.634815][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.499038,0.980605,0.634815][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.499038,0.156828,0.642959][-1.18819,-0.474455,0.432491][0,3.49066,0][0.55249,0.156828,0.642959][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.605941,0.156828,0.642959][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.605941,0.980605,0.634815][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.605941,0.980605,0.634815][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.55249,0.980605,0.634815][-1.18819,-0.474455,0.432491][0,3.49066,0][0.55249,0.156828,0.642959][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.605941,0.156828,0.642959][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.659392,0.156828,0.642959][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.659393,0.980605,0.634815][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.659393,0.980605,0.634815][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.605941,0.980605,0.634815][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.605941,0.156828,0.642959][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.659392,0.156828,0.642959][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.712844,0.156828,0.642959][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.712844,0.980605,0.634815][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.712844,0.980605,0.634815][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.659393,0.980605,0.634815][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.659392,0.156828,0.642959][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.712844,0.156828,0.642959][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.766295,0.156828,0.642959][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.766295,0.980605,0.634815][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.766295,0.980605,0.634815][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.712844,0.980605,0.634815][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.712844,0.156828,0.642959][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.766295,0.156828,0.642959][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.819747,0.156828,0.642959][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.819747,0.980605,0.634815][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.819747,0.980605,0.634815][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.766295,0.980605,0.634815][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.766295,0.156828,0.642959][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.819747,0.156828,0.642959][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.873199,0.156828,0.642959][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.873199,0.980605,0.634815][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.873199,0.980605,0.634815][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.819747,0.980605,0.634815][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.819747,0.156828,0.642959][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.873199,0.156828,0.642959][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.92665,0.156828,0.642959][1.17314,1.01593,0.427013][2.91057,0.0332832,1.05936][0.92665,0.980605,0.634815][1.17314,1.01593,0.427013][2.91057,0.0332832,1.05936][0.92665,0.980605,0.634815][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.873199,0.980605,0.634815][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.873199,0.156828,0.642959][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.92665,0.156828,0.642959][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.980102,0.156828,0.642959][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.980102,0.980605,0.634815][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.980102,0.980605,0.634815][1.17314,1.01593,0.427013][2.91057,0.0332832,1.05936][0.92665,0.980605,0.634815][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.92665,0.156828,0.642959][1.17314,1.01593,0.427013][2.91057,0.0332832,1.05936][0.0928469,0.113018,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.104093,0.106525,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][1.17314,1.01593,-0.426962][2.91057,0.0332832,-1.05936][0.0672698,0.113018,0.24975][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.0560237,0.106525,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.0560237,0.106525,0.24975][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.0476765,0.0965777,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.0476765,0.0965777,0.24975][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.0432351,0.084375,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.0432351,0.084375,0.24975][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.0432351,0.0713891,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.0432351,0.0713891,0.24975][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.0476765,0.0591864,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.0476765,0.0591864,0.24975][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.0560237,0.0492386,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.0560237,0.0492386,0.24975][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.0672698,0.0427457,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.0672698,0.0427457,0.24975][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.0800583,0.0404907,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.0800583,0.0404907,0.24975][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.0928469,0.0427457,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.0928469,0.0427457,0.24975][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.104093,0.0492386,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.104093,0.0492386,0.24975][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.11244,0.0591864,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.11244,0.0591864,0.24975][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.116882,0.0713891,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.116882,0.0713891,0.24975][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.116882,0.084375,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.116882,0.084375,0.24975][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.11244,0.0965777,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.11244,0.0965777,0.24975][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.104093,0.106525,0.24975][-1.11387,-0.723019,0.383509][0,-3.40327,0][0.894765,0.0322561,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.892287,0.031729,-0.24975][-1.1811,-0.723019,2.79015e-005][0,-3.45575,0][0.88682,0.0308632,-0.24975][-1.16518,-0.723019,0.100565][0,-3.14159,0][0.888903,0.0311931,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.883739,0.0313511,-0.24975][-1.1811,-0.723019,2.79015e-005][0,-3.45575,0][0.88682,0.0308632,-0.24975][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.892287,0.031729,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.16518,-0.723019,0.100565][0,-3.14159,0][0.888903,0.0311931,-0.24975][-0.961211,-0.723019,0.683117][2.28766e-007,-3.43986,2.32108e-007][0.900972,0.0354188,-0.24975][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.904592,0.0389258,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.897794,0.0337995,-0.24975][-0.961211,-0.723019,0.683117][2.28766e-007,-3.43986,2.32108e-007][0.900972,0.0354188,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.909146,0.064751,-0.24975][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.906616,0.0697156,-0.24975][1.84615,-0.723019,0.671971][0,-1.75792,0][0.900741,0.0935805,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.906616,0.0697156,-0.24975][1.84615,-0.723019,0.671971][0,-1.75792,0][0.900741,0.0935805,-0.24975][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.906616,0.0697156,-0.24975][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.900972,0.0752467,-0.24975][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.897794,0.0337995,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.11387,-0.723019,0.383509][0,-3.40327,0][0.894765,0.0322561,-0.24975][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.880001,0.076321,0.116626][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.88682,0.0774012,0.116626][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.880001,0.076321,0.116626][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.873849,0.0731865,0.116626][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.880001,0.076321,0.116626][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.873849,0.0731865,0.116626][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.868966,0.0683042,0.116626][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.873849,0.0731865,0.116626][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.868966,0.0683042,0.116626][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.865832,0.0621522,0.116626][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.868966,0.0683042,0.116626][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.865832,0.0621522,0.116626][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.864752,0.0553328,0.116626][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.865832,0.0621522,0.116626][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.864752,0.0553328,0.116626][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.865832,0.0485132,0.116626][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.864752,0.0553328,0.116626][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.865832,0.0485132,0.116626][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.868966,0.0423612,0.116626][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.865832,0.0485132,0.116626][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.868966,0.0423612,0.116626][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.873849,0.037479,0.116626][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.868966,0.0423612,0.116626][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.873849,0.037479,0.116626][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.880001,0.0343444,0.116626][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.873849,0.037479,0.116626][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.880001,0.0343444,0.116626][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.88682,0.0332643,0.116626][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.880001,0.0343444,0.116626][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.88682,0.0332643,0.116626][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.89364,0.0343444,0.116626][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.88682,0.0332643,0.116626][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.89364,0.0343444,0.116626][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.899792,0.037479,0.116626][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.89364,0.0343444,0.116626][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.899792,0.037479,0.116626][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.904674,0.0423612,0.116626][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.899792,0.037479,0.116626][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.904674,0.0423612,0.116626][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.907809,0.0485132,0.116626][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.904674,0.0423612,0.116626][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.907809,0.0485132,0.116626][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.908889,0.0553328,0.116626][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.907809,0.0485132,0.116626][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.908889,0.0553328,0.116626][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.907809,0.0621522,0.116626][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.908889,0.0553328,0.116626][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.907809,0.0621522,0.116626][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.904674,0.0683042,0.116626][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.907809,0.0621522,0.116626][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.904674,0.0683042,0.116626][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.899792,0.0731865,0.116626][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.904674,0.0683042,0.116626][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.899792,0.0731865,0.116626][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.89364,0.076321,0.116626][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.899792,0.0731865,0.116626][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.89364,0.076321,0.116626][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.88682,0.0774012,0.116626][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.89364,0.076321,0.116626][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.88682,0.0774012,0.116626][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.907192,0.0664202,0.585478][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.907192,0.0743395,0.541647][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.907192,0.0743395,0.541647][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.911266,0.0743395,0.541647][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.911266,0.0743395,0.541647][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.911266,0.0743395,0.541647][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.91534,0.0743395,0.541647][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.91534,0.0743395,0.541647][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.91534,0.0743395,0.541647][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.919415,0.0743395,0.541647][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.919415,0.0743395,0.541647][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.919415,0.0743395,0.541647][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.923489,0.0743395,0.541646][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.923489,0.0743395,0.541646][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.923489,0.0743395,0.541646][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.927563,0.0743395,0.541646][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.931638,0.0664202,0.585477][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.927563,0.0743395,0.541646][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.927563,0.0743395,0.541646][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.931638,0.0743395,0.541646][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.931638,0.0664202,0.585477][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.935712,0.0664202,0.585477][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.931638,0.0664202,0.585477][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.931638,0.0743395,0.541646][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.931638,0.0743395,0.541646][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.935712,0.0743395,0.541647][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.935712,0.0664202,0.585477][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.939786,0.0664202,0.585477][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.935712,0.0664202,0.585477][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.935712,0.0743395,0.541647][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.935712,0.0743395,0.541647][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.939786,0.0743395,0.541647][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.939786,0.0664202,0.585477][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.943861,0.0664202,0.585477][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.939786,0.0664202,0.585477][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.939786,0.0743395,0.541647][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.939786,0.0743395,0.541647][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.943861,0.0743395,0.541647][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.943861,0.0664202,0.585477][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.947935,0.0664202,0.585478][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.943861,0.0664202,0.585477][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.943861,0.0743395,0.541647][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.943861,0.0743395,0.541647][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.947935,0.0743395,0.541647][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.947935,0.0664202,0.585478][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.952009,0.0664202,0.585478][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.947935,0.0664202,0.585478][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.947935,0.0743395,0.541647][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.947935,0.0743395,0.541647][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.952009,0.0743395,0.541648][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.952009,0.0664202,0.585478][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.956084,0.0664202,0.585478][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.952009,0.0664202,0.585478][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.952009,0.0743395,0.541648][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.952009,0.0743395,0.541648][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.956084,0.0743395,0.541648][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.956084,0.0664202,0.585478][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.960158,0.0664202,0.585478][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.956084,0.0664202,0.585478][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.956084,0.0743395,0.541648][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.956084,0.0743395,0.541648][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.960158,0.0743395,0.541648][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.960158,0.0664202,0.585478][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.964232,0.0664202,0.585478][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.960158,0.0664202,0.585478][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.960158,0.0743395,0.541648][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.960158,0.0743395,0.541648][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.964232,0.0743395,0.541648][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.964232,0.0664202,0.585478][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.968306,0.0664202,0.585479][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.964232,0.0664202,0.585478][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.964232,0.0743395,0.541648][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.964232,0.0743395,0.541648][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.968306,0.0743395,0.541648][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.968306,0.0664202,0.585479][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.972381,0.0664202,0.585478][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.968306,0.0664202,0.585479][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.968306,0.0743395,0.541648][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.968306,0.0743395,0.541648][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.972381,0.0743395,0.541648][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.972381,0.0664202,0.585478][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.976455,0.0664202,0.585478][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.972381,0.0664202,0.585478][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.972381,0.0743395,0.541648][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.972381,0.0743395,0.541648][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.976455,0.0743395,0.541648][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.976455,0.0664202,0.585478][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.980529,0.0664202,0.585478][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.976455,0.0664202,0.585478][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.976455,0.0743395,0.541648][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.976455,0.0743395,0.541648][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.980529,0.0743395,0.541648][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.980529,0.0664202,0.585478][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.984604,0.0664202,0.585478][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.980529,0.0664202,0.585478][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.980529,0.0743395,0.541648][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.980529,0.0743395,0.541648][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.984604,0.0743395,0.541648][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.984604,0.0664202,0.585478][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.988678,0.0664202,0.585478][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.984604,0.0664202,0.585478][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.984604,0.0743395,0.541648][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.984604,0.0743395,0.541648][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.988678,0.0743395,0.541647][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.988678,0.0664202,0.585478][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.907192,0.0664202,0.585478][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.907192,0.0664202,0.585478][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.931638,0.0576415,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.931638,0.0664202,0.585477][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.931638,0.0576415,0.60058][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.850151,0.0576415,0.60058][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.850151,0.0664202,0.585477][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.850151,0.0664202,0.585477][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.854226,0.0664202,0.585477][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.854226,0.0664202,0.585477][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.854226,0.0664202,0.585477][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.8583,0.0664202,0.585477][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.8583,0.0664202,0.585477][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.8583,0.0664202,0.585477][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.862374,0.0664202,0.585477][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.862374,0.0664202,0.585477][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.862374,0.0664202,0.585477][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.866449,0.0664202,0.585478][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.866449,0.0664202,0.585478][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.866449,0.0664202,0.585478][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.870523,0.0664202,0.585478][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.870523,0.0664202,0.585478][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.870523,0.0664202,0.585478][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.874597,0.0664202,0.585478][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.874597,0.0664202,0.585478][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.874597,0.0664202,0.585478][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.878672,0.0664202,0.585478][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.878672,0.0664202,0.585478][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.878672,0.0664202,0.585478][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.882746,0.0664202,0.585478][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.882746,0.0664202,0.585478][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.882746,0.0664202,0.585478][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.88682,0.0664202,0.585479][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.88682,0.0664202,0.585479][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.88682,0.0664202,0.585479][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.890895,0.0664202,0.585478][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.890895,0.0664202,0.585478][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.890895,0.0664202,0.585478][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.894969,0.0664202,0.585478][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.894969,0.0664202,0.585478][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.894969,0.0664202,0.585478][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.899043,0.0664202,0.585478][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.899043,0.0664202,0.585478][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.899043,0.0664202,0.585478][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.903117,0.0664202,0.585478][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.903117,0.0664202,0.585478][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.903117,0.0664202,0.585478][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.907192,0.0664202,0.585478][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.911492,0.0146303,0.599019][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.907192,0.0146303,0.60058][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.907192,0.0146303,0.60058][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.91534,0.0146303,0.60058][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.911492,0.0146303,0.599019][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.911492,0.0146303,0.599019][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][1.15859,-0.723019,0.142153][0,-3.14159,0][0.905609,0.0146303,0.59355][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.903117,0.0146303,0.600581][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.15859,-0.723019,0.142153][0,-3.14159,0][0.905609,0.0146303,0.59355][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.907192,0.0146303,0.60058][1.15859,-0.723019,0.142153][0,-3.14159,0][0.905609,0.0146303,0.59355][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.917829,0.0146303,0.593545][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.91534,0.0146303,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.917829,0.0146303,0.593545][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.917829,0.0146303,0.593545][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.919415,0.0146303,0.60058][-1.16518,-0.723019,0.100565][0,-3.14159,0][0.867565,0.0146303,0.594685][-1.1811,-0.723019,2.79015e-005][0,-3.45575,0][0.866449,0.0146303,0.60058][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.8694,0.0146303,0.594664][-1.16518,-0.723019,0.100565][0,-3.14159,0][0.867565,0.0146303,0.594685][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.8694,0.0146303,0.594664][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-1.11387,-0.723019,0.383509][0,-3.40327,0][0.870749,0.0146303,0.59902][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.8694,0.0146303,0.594664][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.923821,0.0146303,0.598349][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.919415,0.0146303,0.60058][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.919415,0.0146303,0.60058][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][0,-0.723019,-1.18107][0,-3.45575,0][0.927563,0.0146303,0.60058][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.923821,0.0146303,0.598349][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.923821,0.0146303,0.598349][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.849991,0.0146303,0.599454][0,-0.723019,-1.18107][0,-3.45575,0][0.846077,0.0146303,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.846077,0.0576415,0.60058][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.849991,0.0146303,0.599454][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.846077,0.0576415,0.60058][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.850151,0.0576415,0.60058][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.849991,0.0146303,0.599454][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.850151,0.0576415,0.60058][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.849991,0.0146303,0.599454][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.854226,0.0146303,0.60058][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.864792,0.0146303,0.593441][-1.1233,-0.723019,-0.364953][2.89893e-006,-3.45575,2.0209e-006][0.862374,0.0146303,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.864792,0.0146303,0.593441][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1811,-0.723019,2.79015e-005][0,-3.45575,0][0.866449,0.0146303,0.60058][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.864792,0.0146303,0.593441][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.8583,0.0146303,0.60058][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.854226,0.0146303,0.60058][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.854226,0.0146303,0.60058][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.1233,-0.723019,-0.364953][2.89893e-006,-3.45575,2.0209e-006][0.862374,0.0146303,0.60058][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.8583,0.0146303,0.60058][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.8583,0.0146303,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.872561,0.0146303,0.593187][-1.11387,-0.723019,0.383509][0,-3.40327,0][0.870749,0.0146303,0.59902][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.872561,0.0146303,0.593187][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.961211,-0.723019,0.683117][2.28766e-007,-3.43986,2.32108e-007][0.874461,0.0146303,0.599619][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.872561,0.0146303,0.593187][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.877152,0.0146303,0.59366][-0.961211,-0.723019,0.683117][2.28766e-007,-3.43986,2.32108e-007][0.874461,0.0146303,0.599619][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.877152,0.0146303,0.59366][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.878672,0.0146303,0.600581][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.877152,0.0146303,0.59366][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.882746,0.0146303,0.600581][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.878672,0.0146303,0.600581][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.878672,0.0146303,0.600581][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.88682,0.0146303,0.600581][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.882746,0.0146303,0.600581][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.882746,0.0146303,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.364981,-0.723019,1.12332][0,-3.45575,0][0.890895,0.0146303,0.600581][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.88682,0.0146303,0.600581][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.88682,0.0146303,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.891997,0.0146303,0.59473][0.364981,-0.723019,1.12332][0,-3.45575,0][0.890895,0.0146303,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.891997,0.0146303,0.59473][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.891997,0.0146303,0.59473][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.894969,0.0146303,0.600581][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.899179,0.0146303,0.599619][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.894969,0.0146303,0.600581][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.894969,0.0146303,0.600581][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.903117,0.0146303,0.600581][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.899179,0.0146303,0.599619][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.899179,0.0146303,0.599619][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581]
\ No newline at end of file
diff --git a/charcustom/hats/fonts/visor.mesh b/charcustom/hats/fonts/visor.mesh
new file mode 100644
index 0000000..b7ee9f1
--- /dev/null
+++ b/charcustom/hats/fonts/visor.mesh
@@ -0,0 +1,3 @@
+version 1.00
+140
+[-1.16827,-0.222815,0.838872][-0.889406,-0.022847,0.456547][0.914968,0.669096,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.265,-0.198513,0.353227][-0.999957,0.00705972,-0.00604897][0.827077,0.669095,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.16827,-0.222815,0.838872][-0.889406,-0.022847,0.456547][0.914968,0.669096,0][-0.835923,-0.240536,1.19293][-0.729535,-0.0341841,0.683089][0.994891,0.669096,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-1.16827,-0.222815,0.838872][-0.889406,-0.022847,0.456547][0.914968,0.669096,0][-0.835923,0.166824,1.21332][-0.722543,0.0736519,0.687391][0.997126,0.98377,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-0.835923,-0.240536,1.19293][-0.729535,-0.0341841,0.683089][0.994891,0.669096,0][-0.480607,-0.139844,-0.819226][-0.375961,0.191381,-0.906657][0.581744,0.669094,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.00231891,-0.135008,-0.915828][1.32402e-007,0.199593,-0.979879][0.49974,0.669094,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.480607,-0.139844,-0.819226][-0.375961,0.191381,-0.906657][0.581744,0.669094,0][-0.892834,-0.153606,-0.54413][-0.691817,0.147639,-0.706818][0.662171,0.669094,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.480607,-0.139844,-0.819226][-0.375961,0.191381,-0.906657][0.581744,0.669094,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.892834,-0.153606,-0.54413][-0.691817,0.147639,-0.706818][0.662171,0.669094,0][-1.16827,-0.174209,-0.13242][-0.915255,0.0748559,-0.395861][0.740664,0.669095,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-0.892834,-0.153606,-0.54413][-0.691817,0.147639,-0.706818][0.662171,0.669094,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-1.16827,-0.174209,-0.13242][-0.915255,0.0748559,-0.395861][0.740664,0.669095,0][-1.265,-0.198513,0.353227][-0.999957,0.00705972,-0.00604897][0.827077,0.669095,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-1.16827,-0.174209,-0.13242][-0.915255,0.0748559,-0.395861][0.740664,0.669095,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-1.265,-0.198513,0.353227][-0.999957,0.00705972,-0.00604897][0.827077,0.669095,0][-0.00231882,-0.140126,-1.4768][0,0.975373,-0.220561][0.247364,0.00758553,0][-0.478721,-0.0197334,-0.766954][-0.148815,0.964585,-0.217786][0.348543,0.158344,0][-0.00231891,0.00904279,-0.881366][0,0.970023,-0.243013][0.247364,0.134044,0][-0.478721,-0.0197334,-0.766954][-0.148815,0.964585,-0.217786][0.348543,0.158344,0][-0.00231882,-0.140126,-1.4768][0,0.975373,-0.220561][0.247364,0.00758553,0][-0.464728,-0.167507,-1.46919][-0.125935,0.970269,-0.206685][0.345571,0.00920022,0][-1.03628,-0.227365,-1.05844][-0.327162,0.917302,-0.226984][0.466959,0.096438,0][-1.16904,-0.074008,-0.095268][-0.406445,0.891954,-0.19804][0.49431,0.300998,0][-0.89375,-0.0391302,-0.503164][-0.34227,0.91653,-0.206939][0.436688,0.214368,0][-1.1789,-0.198513,0.353227][0.999954,-0.00738394,0.0061888][0.810588,0.54171,0][-1.1789,0.244922,0.375417][0.99968,-0.00126465,0.0252735][0.810588,0.622187,0][-1.08873,-0.221171,0.805966][0.925957,0.0188742,-0.377158][0.915862,0.541828,0][-1.08873,-0.221171,0.805966][0.925957,0.0188742,-0.377158][0.915862,0.541828,0][-1.1789,0.244922,0.375417][0.99968,-0.00126465,0.0252735][0.810588,0.622187,0][-1.08873,0.204109,0.827249][0.927759,0.0186518,-0.372713][0.915862,0.622336,0][-1.08873,-0.221171,0.805966][0.925957,0.0188742,-0.377158][0.915862,0.541828,0][-1.08873,0.204109,0.827249][0.927759,0.0186518,-0.372713][0.915862,0.622336,0][-0.835923,-0.240536,1.19293][0.837491,0.0273122,-0.545768][0.997967,0.541928,0][-0.835923,-0.240536,1.19293][0.837491,0.0273122,-0.545768][0.997967,0.541928,0][-1.08873,0.204109,0.827249][0.927759,0.0186518,-0.372713][0.915862,0.622336,0][-0.835923,0.166824,1.21332][0.837491,0.0273122,-0.545768][0.997967,0.622463,0][-0.00231892,-0.139316,-0.829837][-1.3311e-007,-0.199589,0.97988][0.500246,0.541402,0][-0.00231894,0.535151,-0.692457][-1.74607e-007,-0.206064,0.978539][0.500246,0.621834,0][-0.447659,-0.143819,-0.739783][0.376114,-0.191251,0.906621][0.566581,0.541425,0][-0.447659,-0.143819,-0.739783][0.376114,-0.191251,0.906621][0.566581,0.541425,0][-0.00231894,0.535151,-0.692457][-1.74607e-007,-0.206064,0.978539][0.500246,0.621834,0][-0.447659,0.503231,-0.600726][0.378718,-0.19234,0.905306][0.566581,0.621865,0][-0.447659,-0.143819,-0.739783][0.376114,-0.191251,0.906621][0.566581,0.541425,0][-0.447659,0.503231,-0.600726][0.378718,-0.19234,0.905306][0.566581,0.621865,0][-0.831954,-0.156648,-0.483327][0.691787,-0.147735,0.706827][0.635874,0.541492,0][-0.831954,-0.156648,-0.483327][0.691787,-0.147735,0.706827][0.635874,0.541492,0][-0.447659,0.503231,-0.600726][0.378718,-0.19234,0.905306][0.566581,0.621865,0][-0.831954,0.412685,-0.366461][0.688935,-0.141872,0.710803][0.635874,0.621942,0][-0.831954,-0.156648,-0.483327][0.691787,-0.147735,0.706827][0.635874,0.541492,0][-0.831954,0.412685,-0.366461][0.688935,-0.141872,0.710803][0.635874,0.621942,0][-1.08873,-0.175856,-0.0995118][0.915215,-0.0750618,0.395913][0.704967,0.541592,0][-1.08873,-0.175856,-0.0995118][0.915215,-0.0750618,0.395913][0.704967,0.541592,0][-0.831954,0.412685,-0.366461][0.688935,-0.141872,0.710803][0.635874,0.621942,0][-1.08873,0.310916,-0.0132849][0.914428,-0.0638842,0.399675][0.704967,0.622059,0][-1.08873,-0.175856,-0.0995118][0.915215,-0.0750618,0.395913][0.704967,0.541592,0][-1.08873,0.310916,-0.0132849][0.914428,-0.0638842,0.399675][0.704967,0.622059,0][-1.1789,-0.198513,0.353227][0.999954,-0.00738394,0.0061888][0.810588,0.54171,0][-1.1789,-0.198513,0.353227][0.999954,-0.00738394,0.0061888][0.810588,0.54171,0][-1.08873,0.310916,-0.0132849][0.914428,-0.0638842,0.399675][0.704967,0.622059,0][-1.1789,0.244922,0.375417][0.99968,-0.00126465,0.0252735][0.810588,0.622187,0][-0.464728,-0.167507,-1.46919][-0.125935,0.970269,-0.206685][0.345571,0.00920022,0][-0.719989,-0.209883,-1.41966][-0.232421,0.948444,-0.215487][0.399784,0.0197193,0][-0.478721,-0.0197334,-0.766954][-0.148815,0.964585,-0.217786][0.348543,0.158344,0][-0.719989,-0.209883,-1.41966][-0.232421,0.948444,-0.215487][0.399784,0.0197193,0][-0.89375,-0.0391302,-0.503164][-0.34227,0.91653,-0.206939][0.436688,0.214368,0][-0.478721,-0.0197334,-0.766954][-0.148815,0.964585,-0.217786][0.348543,0.158344,0][-0.719989,-0.209883,-1.41966][-0.232421,0.948444,-0.215487][0.399784,0.0197193,0][-0.922601,-0.246137,-1.28676][-0.315779,0.920169,-0.231458][0.442815,0.0479453,0][-0.89375,-0.0391302,-0.503164][-0.34227,0.91653,-0.206939][0.436688,0.214368,0][-1.03628,-0.227365,-1.05844][-0.327162,0.917302,-0.226984][0.466959,0.096438,0][-0.89375,-0.0391302,-0.503164][-0.34227,0.91653,-0.206939][0.436688,0.214368,0][-0.922601,-0.246137,-1.28676][-0.315779,0.920169,-0.231458][0.442815,0.0479453,0][1.26036,-0.198513,0.353227][0.980785,-0.00975045,0.194847][0.172892,0.669095,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][1.16364,-0.222815,0.838873][0.980785,-0.00975045,0.194847][0.0837499,0.669096,0][1.16364,-0.222815,0.838873][0.846664,-0.0265961,0.531462][0.0837485,0.669096,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][1.16364,-0.222815,0.838873][0.846664,-0.0265961,0.531462][0.0837485,0.669096,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][0.831285,-0.240536,1.19293][0.729535,-0.0341841,0.683089][0.00178784,0.669096,0][0.831285,-0.240536,1.19293][0.729535,-0.0341841,0.683089][0.00178784,0.669096,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][0.831285,0.166824,1.21332][0.722543,0.0736518,0.687391][-0.000446641,0.98377,0][-0.00231891,-0.135008,-0.915828][1.32402e-007,0.199593,-0.979879][0.49974,0.669094,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][0.47597,-0.139844,-0.819226][0.375961,0.191381,-0.906657][0.417736,0.669094,0][0.47597,-0.139844,-0.819226][0.375961,0.191381,-0.906657][0.417736,0.669094,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.47597,-0.139844,-0.819226][0.375961,0.191381,-0.906657][0.417736,0.669094,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.888196,-0.153606,-0.54413][0.691817,0.147639,-0.706818][0.33733,0.669094,0][0.888196,-0.153606,-0.54413][0.691817,0.147639,-0.706818][0.33733,0.669094,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][0.888196,-0.153606,-0.54413][0.691817,0.147639,-0.706818][0.33733,0.669094,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][1.16364,-0.174209,-0.132419][0.915255,0.0748562,-0.39586][0.258882,0.669095,0][1.16364,-0.174209,-0.132419][0.915255,0.0748562,-0.39586][0.258882,0.669095,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.16364,-0.174209,-0.132419][0.915255,0.0748562,-0.39586][0.258882,0.669095,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.26036,-0.198513,0.353227][0.978123,0.0235798,-0.206687][0.172891,0.669095,0][1.26036,-0.198513,0.353227][0.978123,0.0235798,-0.206687][0.172891,0.669095,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][-0.00231891,0.00904279,-0.881366][0,0.970023,-0.243013][0.247364,0.134044,0][0.474083,-0.0197334,-0.766953][0.148815,0.964585,-0.217786][0.146184,0.158344,0][-0.00231882,-0.140126,-1.4768][0,0.975373,-0.220561][0.247364,0.00758553,0][0.460091,-0.167507,-1.46919][0.125935,0.970269,-0.206685][0.149156,0.00920022,0][-0.00231882,-0.140126,-1.4768][0,0.975373,-0.220561][0.247364,0.00758553,0][0.474083,-0.0197334,-0.766953][0.148815,0.964585,-0.217786][0.146184,0.158344,0][0.889112,-0.0391302,-0.503164][0.344776,0.915787,-0.206068][0.0580394,0.214368,0][1.16043,-0.074008,-0.0952677][0.41011,0.890586,-0.196636][0.000417214,0.300998,0][1.03164,-0.227365,-1.05844][0.327605,0.917182,-0.22683][0.0277683,0.096438,0][1.08409,-0.221171,0.805967][-0.925957,0.0188742,-0.377158][0.0846315,0.541828,0][1.17426,0.244922,0.375417][-0.99968,-0.00126463,0.0252733][0.189906,0.622187,0][1.17426,-0.198513,0.353227][-0.999954,-0.00738404,0.00618839][0.189906,0.54171,0][1.08409,0.204109,0.827249][-0.927759,0.0186519,-0.372713][0.0846315,0.622336,0][1.17426,0.244922,0.375417][-0.99968,-0.00126463,0.0252733][0.189906,0.622187,0][1.08409,-0.221171,0.805967][-0.925957,0.0188742,-0.377158][0.0846315,0.541828,0][0.831285,-0.240536,1.19293][-0.837491,0.0273122,-0.545769][0.00252654,0.541928,0][1.08409,0.204109,0.827249][-0.927759,0.0186519,-0.372713][0.0846315,0.622336,0][1.08409,-0.221171,0.805967][-0.925957,0.0188742,-0.377158][0.0846315,0.541828,0][0.831285,0.166824,1.21332][-0.837491,0.0273122,-0.545769][0.00252654,0.622463,0][1.08409,0.204109,0.827249][-0.927759,0.0186519,-0.372713][0.0846315,0.622336,0][0.831285,-0.240536,1.19293][-0.837491,0.0273122,-0.545769][0.00252654,0.541928,0][0.443022,-0.143819,-0.739783][-0.376115,-0.191251,0.906621][0.433912,0.541425,0][-0.00231894,0.535151,-0.692457][-1.74607e-007,-0.206064,0.978539][0.500246,0.621834,0][-0.00231892,-0.139316,-0.829837][-1.3311e-007,-0.199589,0.97988][0.500246,0.541402,0][0.443022,0.503231,-0.600726][-0.378718,-0.19234,0.905305][0.433912,0.621865,0][-0.00231894,0.535151,-0.692457][-1.74607e-007,-0.206064,0.978539][0.500246,0.621834,0][0.443022,-0.143819,-0.739783][-0.376115,-0.191251,0.906621][0.433912,0.541425,0][0.827316,-0.156648,-0.483326][-0.691787,-0.147735,0.706827][0.364619,0.541492,0][0.443022,0.503231,-0.600726][-0.378718,-0.19234,0.905305][0.433912,0.621865,0][0.443022,-0.143819,-0.739783][-0.376115,-0.191251,0.906621][0.433912,0.541425,0][0.827316,0.412685,-0.366461][-0.688935,-0.141872,0.710803][0.364619,0.621942,0][0.443022,0.503231,-0.600726][-0.378718,-0.19234,0.905305][0.433912,0.621865,0][0.827316,-0.156648,-0.483326][-0.691787,-0.147735,0.706827][0.364619,0.541492,0][1.08409,-0.175856,-0.0995115][-0.915215,-0.075062,0.395913][0.295526,0.541592,0][0.827316,0.412685,-0.366461][-0.688935,-0.141872,0.710803][0.364619,0.621942,0][0.827316,-0.156648,-0.483326][-0.691787,-0.147735,0.706827][0.364619,0.541492,0][1.08409,0.310916,-0.0132846][-0.914428,-0.0638844,0.399674][0.295526,0.622059,0][0.827316,0.412685,-0.366461][-0.688935,-0.141872,0.710803][0.364619,0.621942,0][1.08409,-0.175856,-0.0995115][-0.915215,-0.075062,0.395913][0.295526,0.541592,0][1.17426,-0.198513,0.353227][-0.999954,-0.00738404,0.00618839][0.189906,0.54171,0][1.08409,0.310916,-0.0132846][-0.914428,-0.0638844,0.399674][0.295526,0.622059,0][1.08409,-0.175856,-0.0995115][-0.915215,-0.075062,0.395913][0.295526,0.541592,0][1.17426,0.244922,0.375417][-0.99968,-0.00126463,0.0252733][0.189906,0.622187,0][1.08409,0.310916,-0.0132846][-0.914428,-0.0638844,0.399674][0.295526,0.622059,0][1.17426,-0.198513,0.353227][-0.999954,-0.00738404,0.00618839][0.189906,0.54171,0][0.474083,-0.0197334,-0.766953][0.148815,0.964585,-0.217786][0.146184,0.158344,0][0.715352,-0.209883,-1.41966][0.232421,0.948444,-0.215487][0.094943,0.0197193,0][0.460091,-0.167507,-1.46919][0.125935,0.970269,-0.206685][0.149156,0.00920022,0][0.474083,-0.0197334,-0.766953][0.148815,0.964585,-0.217786][0.146184,0.158344,0][0.889112,-0.0391302,-0.503164][0.344776,0.915787,-0.206068][0.0580394,0.214368,0][0.715352,-0.209883,-1.41966][0.232421,0.948444,-0.215487][0.094943,0.0197193,0][0.889112,-0.0391302,-0.503164][0.344776,0.915787,-0.206068][0.0580394,0.214368,0][0.917963,-0.246137,-1.28676][0.315779,0.920169,-0.231458][0.0519119,0.0479453,0][0.715352,-0.209883,-1.41966][0.232421,0.948444,-0.215487][0.094943,0.0197193,0][0.917963,-0.246137,-1.28676][0.315779,0.920169,-0.231458][0.0519119,0.0479453,0][0.889112,-0.0391302,-0.503164][0.344776,0.915787,-0.206068][0.0580394,0.214368,0][1.03164,-0.227365,-1.05844][0.327605,0.917182,-0.22683][0.0277683,0.096438,0][-1.16827,-0.174209,-0.13242][-0.986192,0.0509162,-0.157586][0.998356,0.634735,0][-1.16904,-0.074008,-0.095268][-0.987226,0.0388345,-0.154523][0.997727,0.662808,0][-1.03359,-0.320723,-1.02265][-0.961557,-0.106183,-0.253247][0.786448,0.634655,0][-1.16904,-0.074008,-0.095268][-0.987226,0.0388345,-0.154523][0.997727,0.662808,0][-1.03628,-0.227365,-1.05844][-0.943294,-0.142208,-0.299957][0.786144,0.662778,0][-1.03359,-0.320723,-1.02265][-0.961557,-0.106183,-0.253247][0.786448,0.634655,0][-0.464728,-0.167507,-1.46919][-0.0640033,-0.276286,-0.958942][0.605156,0.662765,0][-0.00231883,-0.229035,-1.4533][1.24436e-007,-0.25841,-0.966035][0.499322,0.634618,0][-0.468023,-0.25198,-1.44448][-0.0777739,-0.267738,-0.960348][0.605136,0.634619,0][-0.00231883,-0.229035,-1.4533][1.24436e-007,-0.25841,-0.966035][0.499322,0.634618,0][-0.464728,-0.167507,-1.46919][-0.0640033,-0.276286,-0.958942][0.605156,0.662765,0][-0.00231882,-0.140126,-1.4768][1.2461e-007,-0.255464,-0.966819][0.499322,0.662765,0][-0.468023,-0.25198,-1.44448][-0.0777739,-0.267738,-0.960348][0.605136,0.634619,0][-0.719989,-0.209883,-1.41966][-0.305715,-0.190442,-0.932883][0.671138,0.662767,0][-0.464728,-0.167507,-1.46919][-0.0640033,-0.276286,-0.958942][0.605156,0.662765,0][-0.719989,-0.209883,-1.41966][-0.305715,-0.190442,-0.932883][0.671138,0.662767,0][-0.468023,-0.25198,-1.44448][-0.0777739,-0.267738,-0.960348][0.605136,0.634619,0][-0.717953,-0.297612,-1.40341][-0.355271,-0.173886,-0.918447][0.670793,0.634624,0][-0.717953,-0.297612,-1.40341][-0.355271,-0.173886,-0.918447][0.670793,0.634624,0][-0.922601,-0.246137,-1.28676][-0.724862,-0.113006,-0.679562][0.73531,0.662771,0][-0.719989,-0.209883,-1.41966][-0.305715,-0.190442,-0.932883][0.671138,0.662767,0][-0.922601,-0.246137,-1.28676][-0.724862,-0.113006,-0.679562][0.73531,0.662771,0][-0.717953,-0.297612,-1.40341][-0.355271,-0.173886,-0.918447][0.670793,0.634624,0][-0.925783,-0.333562,-1.2714][-0.779616,-0.0807744,-0.621027][0.735263,0.634635,0][-0.925783,-0.333562,-1.2714][-0.779616,-0.0807744,-0.621027][0.735263,0.634635,0][-1.03359,-0.320723,-1.02265][-0.961557,-0.106183,-0.253247][0.786448,0.634655,0][-0.922601,-0.246137,-1.28676][-0.724862,-0.113006,-0.679562][0.73531,0.662771,0][-1.03628,-0.227365,-1.05844][-0.943294,-0.142208,-0.299957][0.786144,0.662778,0][-0.922601,-0.246137,-1.28676][-0.724862,-0.113006,-0.679562][0.73531,0.662771,0][-1.03359,-0.320723,-1.02265][-0.961557,-0.106183,-0.253247][0.786448,0.634655,0][1.02895,-0.320723,-1.02265][0.962252,-0.104101,-0.251465][0.213371,0.634654,0][1.16043,-0.074008,-0.0952677][0.984172,0.0764671,-0.159871][-0.000451628,0.662808,0][1.16364,-0.174209,-0.132419][0.982181,0.0921938,-0.163772][0.000975841,0.634733,0][1.02895,-0.320723,-1.02265][0.962252,-0.104101,-0.251465][0.213371,0.634654,0][1.03164,-0.227365,-1.05844][0.943866,-0.141637,-0.298423][0.212166,0.662778,0][1.16043,-0.074008,-0.0952677][0.984172,0.0764671,-0.159871][-0.000451628,0.662808,0][0.463385,-0.25198,-1.44448][0.077774,-0.267738,-0.960348][0.393281,0.634619,0][-0.00231883,-0.229035,-1.4533][1.24436e-007,-0.25841,-0.966035][0.499322,0.634618,0][0.460091,-0.167507,-1.46919][0.0640035,-0.276286,-0.958942][0.393487,0.662765,0][-0.00231882,-0.140126,-1.4768][1.2461e-007,-0.255464,-0.966819][0.499322,0.662765,0][0.460091,-0.167507,-1.46919][0.0640035,-0.276286,-0.958942][0.393487,0.662765,0][-0.00231883,-0.229035,-1.4533][1.24436e-007,-0.25841,-0.966035][0.499322,0.634618,0][0.460091,-0.167507,-1.46919][0.0640035,-0.276286,-0.958942][0.393487,0.662765,0][0.715352,-0.209883,-1.41966][0.305715,-0.190442,-0.932883][0.327433,0.662767,0][0.463385,-0.25198,-1.44448][0.077774,-0.267738,-0.960348][0.393281,0.634619,0][0.713315,-0.297612,-1.40341][0.355272,-0.173886,-0.918447][0.327368,0.634623,0][0.463385,-0.25198,-1.44448][0.077774,-0.267738,-0.960348][0.393281,0.634619,0][0.715352,-0.209883,-1.41966][0.305715,-0.190442,-0.932883][0.327433,0.662767,0][0.715352,-0.209883,-1.41966][0.305715,-0.190442,-0.932883][0.327433,0.662767,0][0.917963,-0.246137,-1.28676][0.724862,-0.113006,-0.679562][0.263144,0.662771,0][0.713315,-0.297612,-1.40341][0.355272,-0.173886,-0.918447][0.327368,0.634623,0][0.921145,-0.333562,-1.2714][0.779616,-0.0807743,-0.621026][0.263348,0.634635,0][0.713315,-0.297612,-1.40341][0.355272,-0.173886,-0.918447][0.327368,0.634623,0][0.917963,-0.246137,-1.28676][0.724862,-0.113006,-0.679562][0.263144,0.662771,0][0.917963,-0.246137,-1.28676][0.724862,-0.113006,-0.679562][0.263144,0.662771,0][1.02895,-0.320723,-1.02265][0.962252,-0.104101,-0.251465][0.213371,0.634654,0][0.921145,-0.333562,-1.2714][0.779616,-0.0807743,-0.621026][0.263348,0.634635,0][1.02895,-0.320723,-1.02265][0.962252,-0.104101,-0.251465][0.213371,0.634654,0][0.917963,-0.246137,-1.28676][0.724862,-0.113006,-0.679562][0.263144,0.662771,0][1.03164,-0.227365,-1.05844][0.943866,-0.141637,-0.298423][0.212166,0.662778,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.08873,0.204109,0.827249][0.0139899,0.996228,0.0856393][0.914968,0.99904,0][-1.1789,0.244922,0.375417][-0.00250797,0.99222,0.12447][0.826384,0.998966,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-1.08873,0.204109,0.827249][0.0139899,0.996228,0.0856393][0.914968,0.99904,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-0.835923,0.166824,1.21332][-0.722543,0.0736519,0.687391][0.997126,0.98377,0][-1.08873,0.204109,0.827249][0.0139899,0.996228,0.0856393][0.914968,0.99904,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.447659,0.503231,-0.600726][-0.106671,0.989978,0.0925457][0.581993,0.998807,0][-0.00231894,0.535151,-0.692457][0,0.998751,0.0499672][0.49974,0.998792,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.447659,0.503231,-0.600726][-0.106671,0.989978,0.0925457][0.581993,0.998807,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.831954,0.412685,-0.366461][-0.127217,0.976941,0.171472][0.662221,0.998845,0][-0.447659,0.503231,-0.600726][-0.106671,0.989978,0.0925457][0.581993,0.998807,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-0.831954,0.412685,-0.366461][-0.127217,0.976941,0.171472][0.662221,0.998845,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-1.08873,0.310916,-0.0132849][-0.0601806,0.980949,0.184712][0.740812,0.998903,0][-0.831954,0.412685,-0.366461][-0.127217,0.976941,0.171472][0.662221,0.998845,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-1.08873,0.310916,-0.0132849][-0.0601806,0.980949,0.184712][0.740812,0.998903,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-1.1789,0.244922,0.375417][-0.00250797,0.99222,0.12447][0.826384,0.998966,0][-1.08873,0.310916,-0.0132849][-0.0601806,0.980949,0.184712][0.740812,0.998903,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.1789,0.244922,0.375417][-0.00250797,0.99222,0.12447][0.826384,0.998966,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][1.17426,0.244922,0.375417][0.00250792,0.99222,0.12447][0.172935,0.998966,0][1.08409,0.204109,0.827249][-0.0139899,0.996228,0.0856393][0.0837742,0.99904,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][1.08409,0.204109,0.827249][-0.0139899,0.996228,0.0856393][0.0837742,0.99904,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][1.08409,0.204109,0.827249][-0.0139899,0.996228,0.0856393][0.0837742,0.99904,0][0.831285,0.166824,1.21332][0.722543,0.0736518,0.687391][-0.000446641,0.98377,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][-0.00231894,0.535151,-0.692457][0,0.998751,0.0499672][0.49974,0.998792,0][0.443022,0.503231,-0.600726][0.106671,0.989978,0.0925457][0.416532,0.998807,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][0.443022,0.503231,-0.600726][0.106671,0.989978,0.0925457][0.416532,0.998807,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.443022,0.503231,-0.600726][0.106671,0.989978,0.0925457][0.416532,0.998807,0][0.827316,0.412685,-0.366461][0.127217,0.976941,0.171472][0.337498,0.998845,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.827316,0.412685,-0.366461][0.127217,0.976941,0.171472][0.337498,0.998845,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][0.827316,0.412685,-0.366461][0.127217,0.976941,0.171472][0.337498,0.998845,0][1.08409,0.310916,-0.0132846][0.0601806,0.980949,0.184712][0.259003,0.998903,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][1.08409,0.310916,-0.0132846][0.0601806,0.980949,0.184712][0.259003,0.998903,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.08409,0.310916,-0.0132846][0.0601806,0.980949,0.184712][0.259003,0.998903,0][1.17426,0.244922,0.375417][0.00250792,0.99222,0.12447][0.172935,0.998966,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.17426,0.244922,0.375417][0.00250792,0.99222,0.12447][0.172935,0.998966,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][-1.1789,-0.198513,0.353227][0,-0.99875,-0.0499838][0.979184,0.360958,0][-1.08873,-0.221171,0.805966][-3.51524e-005,-0.998751,-0.0499636][0.961426,0.450122,0][-1.265,-0.198513,0.353227][-2.50904e-006,-0.99875,-0.0499828][0.99614,0.360958,0][-1.265,-0.198513,0.353227][-2.50904e-006,-0.99875,-0.0499828][0.99614,0.360958,0][-1.08873,-0.221171,0.805966][-3.51524e-005,-0.998751,-0.0499636][0.961426,0.450122,0][-1.16827,-0.222815,0.838872][-3.72844e-005,-0.998751,-0.0499632][0.977091,0.456603,0][-1.08873,-0.221171,0.805966][-3.51524e-005,-0.998751,-0.0499636][0.961426,0.450122,0][-0.835923,-0.240536,1.19293][-3.44508e-005,-0.998751,-0.0499564][0.911637,0.526333,0][-1.16827,-0.222815,0.838872][-3.72844e-005,-0.998751,-0.0499632][0.977091,0.456603,0][-0.00231892,-0.139316,-0.829837][0,-0.998748,-0.0500327][0.747464,0.127961,0][-0.447659,-0.143819,-0.739783][-1.47793e-006,-0.99875,-0.0499749][0.835171,0.145697,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][-0.447659,-0.143819,-0.739783][-1.47793e-006,-0.99875,-0.0499749][0.835171,0.145697,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.447659,-0.143819,-0.739783][-1.47793e-006,-0.99875,-0.0499749][0.835171,0.145697,0][-0.831954,-0.156648,-0.483327][9.27321e-006,-0.998751,-0.0499663][0.910855,0.196204,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.831954,-0.156648,-0.483327][9.27321e-006,-0.998751,-0.0499663][0.910855,0.196204,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-0.831954,-0.156648,-0.483327][9.27321e-006,-0.998751,-0.0499663][0.910855,0.196204,0][-1.08873,-0.175856,-0.0995118][-9.74166e-007,-0.99875,-0.049981][0.961426,0.271794,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-1.08873,-0.175856,-0.0995118][-9.74166e-007,-0.99875,-0.049981][0.961426,0.271794,0][-1.16827,-0.174209,-0.13242][0.0567499,-0.998316,-0.0119917][0.977091,0.265313,0][-1.08873,-0.175856,-0.0995118][-9.74166e-007,-0.99875,-0.049981][0.961426,0.271794,0][-1.1789,-0.198513,0.353227][0,-0.99875,-0.0499838][0.979184,0.360958,0][-1.16827,-0.174209,-0.13242][0.0567499,-0.998316,-0.0119917][0.977091,0.265313,0][-1.16827,-0.174209,-0.13242][0.0567499,-0.998316,-0.0119917][0.977091,0.265313,0][-1.1789,-0.198513,0.353227][0,-0.99875,-0.0499838][0.979184,0.360958,0][-1.265,-0.198513,0.353227][-2.50904e-006,-0.99875,-0.0499828][0.99614,0.360958,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][-0.468023,-0.25198,-1.44448][0.122772,-0.976688,0.176087][0.839181,0.00691217,0][-0.00231883,-0.229035,-1.4533][0,-0.98504,0.172326][0.747464,0.00517374,0][-0.468023,-0.25198,-1.44448][0.122772,-0.976688,0.176087][0.839181,0.00691217,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-1.16827,-0.174209,-0.13242][0.0567499,-0.998316,-0.0119917][0.977091,0.265313,0][-1.03359,-0.320723,-1.02265][0.371099,-0.905231,0.206984][0.950565,0.0899884,0][-1.03359,-0.320723,-1.02265][0.371099,-0.905231,0.206984][0.950565,0.0899884,0][-0.925783,-0.333562,-1.2714][0.261474,-0.94746,0.184257][0.929334,0.0409992,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-0.925783,-0.333562,-1.2714][0.261474,-0.94746,0.184257][0.929334,0.0409992,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.717953,-0.297612,-1.40341][0.23429,-0.9583,0.163616][0.888403,0.0149998,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.925783,-0.333562,-1.2714][0.261474,-0.94746,0.184257][0.929334,0.0409992,0][-0.717953,-0.297612,-1.40341][0.23429,-0.9583,0.163616][0.888403,0.0149998,0][-0.468023,-0.25198,-1.44448][0.122772,-0.976688,0.176087][0.839181,0.00691217,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][1.26036,-0.198513,0.353227][2.52752e-006,-0.99875,-0.0499828][0.498788,0.360958,0][1.08409,-0.221171,0.805967][3.51854e-005,-0.998751,-0.0499636][0.533502,0.450122,0][1.17426,-0.198513,0.353227][0,-0.99875,-0.0499838][0.515744,0.360958,0][1.16364,-0.222815,0.838873][3.73184e-005,-0.998751,-0.0499632][0.517836,0.456603,0][1.08409,-0.221171,0.805967][3.51854e-005,-0.998751,-0.0499636][0.533502,0.450122,0][1.26036,-0.198513,0.353227][2.52752e-006,-0.99875,-0.0499828][0.498788,0.360958,0][1.16364,-0.222815,0.838873][3.73184e-005,-0.998751,-0.0499632][0.517836,0.456603,0][0.831285,-0.240536,1.19293][3.44828e-005,-0.998751,-0.0499563][0.583291,0.526333,0][1.08409,-0.221171,0.805967][3.51854e-005,-0.998751,-0.0499636][0.533502,0.450122,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][0.443022,-0.143819,-0.739783][1.48984e-006,-0.99875,-0.0499749][0.659757,0.145697,0][-0.00231892,-0.139316,-0.829837][0,-0.998748,-0.0500327][0.747464,0.127961,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.443022,-0.143819,-0.739783][1.48984e-006,-0.99875,-0.0499749][0.659757,0.145697,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.827316,-0.156648,-0.483326][-9.26523e-006,-0.998751,-0.0499663][0.584072,0.196204,0][0.443022,-0.143819,-0.739783][1.48984e-006,-0.99875,-0.0499749][0.659757,0.145697,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][0.827316,-0.156648,-0.483326][-9.26523e-006,-0.998751,-0.0499663][0.584072,0.196204,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][1.08409,-0.175856,-0.0995115][9.92512e-007,-0.99875,-0.049981][0.533502,0.271794,0][0.827316,-0.156648,-0.483326][-9.26523e-006,-0.998751,-0.0499663][0.584072,0.196204,0][1.16364,-0.174209,-0.132419][-0.0567498,-0.998316,-0.0119917][0.517836,0.265313,0][1.08409,-0.175856,-0.0995115][9.92512e-007,-0.99875,-0.049981][0.533502,0.271794,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][1.16364,-0.174209,-0.132419][-0.0567498,-0.998316,-0.0119917][0.517836,0.265313,0][1.17426,-0.198513,0.353227][0,-0.99875,-0.0499838][0.515744,0.360958,0][1.08409,-0.175856,-0.0995115][9.92512e-007,-0.99875,-0.049981][0.533502,0.271794,0][1.26036,-0.198513,0.353227][2.52752e-006,-0.99875,-0.0499828][0.498788,0.360958,0][1.17426,-0.198513,0.353227][0,-0.99875,-0.0499838][0.515744,0.360958,0][1.16364,-0.174209,-0.132419][-0.0567498,-0.998316,-0.0119917][0.517836,0.265313,0][-0.00231883,-0.229035,-1.4533][0,-0.98504,0.172326][0.747464,0.00517374,0][0.463385,-0.25198,-1.44448][-0.122772,-0.976688,0.176087][0.655746,0.00691217,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][0.463385,-0.25198,-1.44448][-0.122772,-0.976688,0.176087][0.655746,0.00691217,0][1.02895,-0.320723,-1.02265][-0.371099,-0.905231,0.206984][0.544362,0.0899884,0][1.16364,-0.174209,-0.132419][-0.0567498,-0.998316,-0.0119917][0.517836,0.265313,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][0.921145,-0.333562,-1.2714][-0.261474,-0.94746,0.184257][0.565593,0.0409992,0][1.02895,-0.320723,-1.02265][-0.371099,-0.905231,0.206984][0.544362,0.0899884,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.921145,-0.333562,-1.2714][-0.261474,-0.94746,0.184257][0.565593,0.0409992,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][0.921145,-0.333562,-1.2714][-0.261474,-0.94746,0.184257][0.565593,0.0409992,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.713315,-0.297612,-1.40341][-0.23429,-0.9583,0.163615][0.606524,0.0149998,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.463385,-0.25198,-1.44448][-0.122772,-0.976688,0.176087][0.655746,0.00691217,0][0.713315,-0.297612,-1.40341][-0.23429,-0.9583,0.163615][0.606524,0.0149998,0]
\ No newline at end of file
diff --git a/charcustom/hats/headphones.rbxm b/charcustom/hats/headphones.rbxm
new file mode 100644
index 0000000..ce7def2
--- /dev/null
+++ b/charcustom/hats/headphones.rbxm
@@ -0,0 +1,118 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.300000012
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ Headphones
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ 22.8933411
+ 1.19915128
+ 0.0744339004
+ 0.00410806853
+ 0.000436081347
+ -0.999991357
+ -0.0018205964
+ 0.999998271
+ 0.000428605301
+ 0.999989808
+ 0.00181882014
+ 0.00410885504
+
+ true
+ true
+ 0
+ true
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 1.60000002
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/headphones.mesh
+ 5
+ Mesh
+
+ 1
+ 1
+ 1
+
+ rbxasset://charcustom/hats/textures/headphones.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
\ No newline at end of file
diff --git a/charcustom/hats/shades.rbxm b/charcustom/hats/shades.rbxm
new file mode 100644
index 0000000..4de0a86
--- /dev/null
+++ b/charcustom/hats/shades.rbxm
@@ -0,0 +1,116 @@
+
+ null
+ nil
+ -
+
+
+ 0
+ 0.25999999
+ 0.150000006
+ 1
+ 0
+ 0
+ 0
+ 1
+ 0
+ 0
+ 0
+ 1
+
+ 2
+ ClockworksShades
+ true
+
+
-
+
+ false
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ 194
+
+ 21.5
+ 22.7000008
+ 18.5
+ -1
+ 0
+ -0
+ -0
+ 1
+ -0
+ -0
+ 0
+ -1
+
+ true
+ 0
+ true
+ false
+ 0.5
+ 2
+ 0.300000012
+ -0.5
+ 0.5
+ 0
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+ true
+ Handle
+ 0
+ -0.5
+ 0.5
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ -0.5
+ 0.5
+ 0
+ 0
+ 0
+
+ 0
+ 0
+ 0
+
+ true
+ 1
+
+ 1
+ 1.60000002
+ 1
+
+
+
-
+
+ rbxasset://charcustom/hats/fonts/shades.mesh
+ 5
+ Mesh
+
+ 1
+ 1.29999995
+ 1
+
+ rbxasset://charcustom/hats/textures/shades.png
+
+ 1
+ 1
+ 1
+
+ true
+
+
+
+
+
diff --git a/charcustom/hats/textures/BaseballCapRed.png b/charcustom/hats/textures/BaseballCapRed.png
new file mode 100644
index 0000000..ef4b355
Binary files /dev/null and b/charcustom/hats/textures/BaseballCapRed.png differ
diff --git a/charcustom/hats/textures/BlueBaseballCap.png b/charcustom/hats/textures/BlueBaseballCap.png
new file mode 100644
index 0000000..2a79a4e
Binary files /dev/null and b/charcustom/hats/textures/BlueBaseballCap.png differ
diff --git a/charcustom/hats/textures/BlueROBLOXVisor.png b/charcustom/hats/textures/BlueROBLOXVisor.png
new file mode 100644
index 0000000..6ff7ae2
Binary files /dev/null and b/charcustom/hats/textures/BlueROBLOXVisor.png differ
diff --git a/charcustom/hats/textures/BlueSteelBatHelm.png b/charcustom/hats/textures/BlueSteelBatHelm.png
new file mode 100644
index 0000000..83dbec7
Binary files /dev/null and b/charcustom/hats/textures/BlueSteelBatHelm.png differ
diff --git a/charcustom/hats/textures/Darkseed.png b/charcustom/hats/textures/Darkseed.png
new file mode 100644
index 0000000..4faaa28
Binary files /dev/null and b/charcustom/hats/textures/Darkseed.png differ
diff --git a/charcustom/hats/textures/DominoCrown.png b/charcustom/hats/textures/DominoCrown.png
new file mode 100644
index 0000000..5e182e1
Binary files /dev/null and b/charcustom/hats/textures/DominoCrown.png differ
diff --git a/charcustom/hats/textures/GreenPumpkinHead.png b/charcustom/hats/textures/GreenPumpkinHead.png
new file mode 100644
index 0000000..8f68bf3
Binary files /dev/null and b/charcustom/hats/textures/GreenPumpkinHead.png differ
diff --git a/charcustom/hats/textures/GreenTopHat.png b/charcustom/hats/textures/GreenTopHat.png
new file mode 100644
index 0000000..cb173d0
Binary files /dev/null and b/charcustom/hats/textures/GreenTopHat.png differ
diff --git a/charcustom/hats/textures/NinjaMaskOfAwesomeness.png b/charcustom/hats/textures/NinjaMaskOfAwesomeness.png
new file mode 100644
index 0000000..8f25889
Binary files /dev/null and b/charcustom/hats/textures/NinjaMaskOfAwesomeness.png differ
diff --git a/charcustom/hats/textures/NinjaMaskOfLight.png b/charcustom/hats/textures/NinjaMaskOfLight.png
new file mode 100644
index 0000000..28671fe
Binary files /dev/null and b/charcustom/hats/textures/NinjaMaskOfLight.png differ
diff --git a/charcustom/hats/textures/PoliceCap.png b/charcustom/hats/textures/PoliceCap.png
new file mode 100644
index 0000000..75e20d8
Binary files /dev/null and b/charcustom/hats/textures/PoliceCap.png differ
diff --git a/charcustom/hats/textures/PumpkinHead.png b/charcustom/hats/textures/PumpkinHead.png
new file mode 100644
index 0000000..9c0fcd7
Binary files /dev/null and b/charcustom/hats/textures/PumpkinHead.png differ
diff --git a/charcustom/hats/textures/ROBLOXVisor.png b/charcustom/hats/textures/ROBLOXVisor.png
new file mode 100644
index 0000000..4a785b9
Binary files /dev/null and b/charcustom/hats/textures/ROBLOXVisor.png differ
diff --git a/charcustom/hats/textures/RedTopHat.png b/charcustom/hats/textures/RedTopHat.png
new file mode 100644
index 0000000..ae28ae7
Binary files /dev/null and b/charcustom/hats/textures/RedTopHat.png differ
diff --git a/charcustom/hats/textures/ShadowNinjaMask.png b/charcustom/hats/textures/ShadowNinjaMask.png
new file mode 100644
index 0000000..efbd6fa
Binary files /dev/null and b/charcustom/hats/textures/ShadowNinjaMask.png differ
diff --git a/charcustom/hats/textures/Sombrero.png b/charcustom/hats/textures/Sombrero.png
new file mode 100644
index 0000000..52727f0
Binary files /dev/null and b/charcustom/hats/textures/Sombrero.png differ
diff --git a/charcustom/hats/textures/SparkleTimeFedora.png b/charcustom/hats/textures/SparkleTimeFedora.png
new file mode 100644
index 0000000..9f1c588
Binary files /dev/null and b/charcustom/hats/textures/SparkleTimeFedora.png differ
diff --git a/charcustom/hats/textures/StrawHat.png b/charcustom/hats/textures/StrawHat.png
new file mode 100644
index 0000000..2df5798
Binary files /dev/null and b/charcustom/hats/textures/StrawHat.png differ
diff --git a/charcustom/hats/textures/TheDusekkar.png b/charcustom/hats/textures/TheDusekkar.png
new file mode 100644
index 0000000..f9cccc2
Binary files /dev/null and b/charcustom/hats/textures/TheDusekkar.png differ
diff --git a/charcustom/hats/textures/TopHatPurple.png b/charcustom/hats/textures/TopHatPurple.png
new file mode 100644
index 0000000..1387bd6
Binary files /dev/null and b/charcustom/hats/textures/TopHatPurple.png differ
diff --git a/charcustom/hats/textures/VoidStar.png b/charcustom/hats/textures/VoidStar.png
new file mode 100644
index 0000000..962cc0e
Binary files /dev/null and b/charcustom/hats/textures/VoidStar.png differ
diff --git a/charcustom/hats/textures/WhiteTopHat.png b/charcustom/hats/textures/WhiteTopHat.png
new file mode 100644
index 0000000..5464c06
Binary files /dev/null and b/charcustom/hats/textures/WhiteTopHat.png differ
diff --git a/charcustom/hats/textures/YellowROBLOXVisor.png b/charcustom/hats/textures/YellowROBLOXVisor.png
new file mode 100644
index 0000000..31bd0d7
Binary files /dev/null and b/charcustom/hats/textures/YellowROBLOXVisor.png differ
diff --git a/charcustom/hats/textures/fedora.png b/charcustom/hats/textures/fedora.png
new file mode 100644
index 0000000..86ce089
Binary files /dev/null and b/charcustom/hats/textures/fedora.png differ
diff --git a/charcustom/hats/textures/hardhat_bc.png b/charcustom/hats/textures/hardhat_bc.png
new file mode 100644
index 0000000..08d6d7c
Binary files /dev/null and b/charcustom/hats/textures/hardhat_bc.png differ
diff --git a/charcustom/hats/textures/hardhat_obc.png b/charcustom/hats/textures/hardhat_obc.png
new file mode 100644
index 0000000..26d57ed
Binary files /dev/null and b/charcustom/hats/textures/hardhat_obc.png differ
diff --git a/charcustom/hats/textures/hardhat_tbc.png b/charcustom/hats/textures/hardhat_tbc.png
new file mode 100644
index 0000000..16b8532
Binary files /dev/null and b/charcustom/hats/textures/hardhat_tbc.png differ
diff --git a/charcustom/hats/textures/headphones.png b/charcustom/hats/textures/headphones.png
new file mode 100644
index 0000000..a1f1903
Binary files /dev/null and b/charcustom/hats/textures/headphones.png differ
diff --git a/charcustom/hats/textures/pirate.png b/charcustom/hats/textures/pirate.png
new file mode 100644
index 0000000..789bc0b
Binary files /dev/null and b/charcustom/hats/textures/pirate.png differ
diff --git a/charcustom/hats/textures/shades.png b/charcustom/hats/textures/shades.png
new file mode 100644
index 0000000..b8f4aca
Binary files /dev/null and b/charcustom/hats/textures/shades.png differ
diff --git a/charcustom/hats/textures/viking.png b/charcustom/hats/textures/viking.png
new file mode 100644
index 0000000..2c7e374
Binary files /dev/null and b/charcustom/hats/textures/viking.png differ
diff --git a/sky/darksky512_bk.png b/sky/darksky512_bk.png
new file mode 100644
index 0000000..33fc5e2
Binary files /dev/null and b/sky/darksky512_bk.png differ
diff --git a/sky/darksky512_dn.png b/sky/darksky512_dn.png
new file mode 100644
index 0000000..a94d098
Binary files /dev/null and b/sky/darksky512_dn.png differ
diff --git a/sky/darksky512_ft.png b/sky/darksky512_ft.png
new file mode 100644
index 0000000..87edc89
Binary files /dev/null and b/sky/darksky512_ft.png differ
diff --git a/sky/darksky512_lf.png b/sky/darksky512_lf.png
new file mode 100644
index 0000000..897c709
Binary files /dev/null and b/sky/darksky512_lf.png differ
diff --git a/sky/darksky512_rt.png b/sky/darksky512_rt.png
new file mode 100644
index 0000000..5649f18
Binary files /dev/null and b/sky/darksky512_rt.png differ
diff --git a/sky/darksky512_up.png b/sky/darksky512_up.png
new file mode 100644
index 0000000..892d9b7
Binary files /dev/null and b/sky/darksky512_up.png differ
diff --git a/sky/redsky512_bk.png b/sky/redsky512_bk.png
new file mode 100644
index 0000000..acef02e
Binary files /dev/null and b/sky/redsky512_bk.png differ
diff --git a/sky/redsky512_dn.png b/sky/redsky512_dn.png
new file mode 100644
index 0000000..c8d5494
Binary files /dev/null and b/sky/redsky512_dn.png differ
diff --git a/sky/redsky512_ft.png b/sky/redsky512_ft.png
new file mode 100644
index 0000000..490fc65
Binary files /dev/null and b/sky/redsky512_ft.png differ
diff --git a/sky/redsky512_lf.png b/sky/redsky512_lf.png
new file mode 100644
index 0000000..093afb5
Binary files /dev/null and b/sky/redsky512_lf.png differ
diff --git a/sky/redsky512_rt.png b/sky/redsky512_rt.png
new file mode 100644
index 0000000..7391b01
Binary files /dev/null and b/sky/redsky512_rt.png differ
diff --git a/sky/redsky512_up.png b/sky/redsky512_up.png
new file mode 100644
index 0000000..8b3bf16
Binary files /dev/null and b/sky/redsky512_up.png differ
diff --git a/sky/tshirt.png b/sky/tshirt.png
new file mode 100644
index 0000000..e2197c1
Binary files /dev/null and b/sky/tshirt.png differ
diff --git a/tshirt.png b/tshirt.png
new file mode 100644
index 0000000..e2197c1
Binary files /dev/null and b/tshirt.png differ
diff --git a/tshirt_2006.png b/tshirt_2006.png
new file mode 100644
index 0000000..b3a267a
Binary files /dev/null and b/tshirt_2006.png differ