diff --git a/NovetusLauncher/NovetusLauncher/ItemMaker.Designer.cs b/NovetusLauncher/NovetusLauncher/ItemMaker.Designer.cs index e2ea660..4108135 100644 --- a/NovetusLauncher/NovetusLauncher/ItemMaker.Designer.cs +++ b/NovetusLauncher/NovetusLauncher/ItemMaker.Designer.cs @@ -44,6 +44,7 @@ namespace NovetusLauncher this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); + this.comboBox1 = new System.Windows.Forms.ComboBox(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit(); this.SuspendLayout(); // @@ -56,7 +57,7 @@ namespace NovetusLauncher // // button1 // - this.button1.Location = new System.Drawing.Point(12, 93); + this.button1.Location = new System.Drawing.Point(12, 120); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(212, 23); this.button1.TabIndex = 1; @@ -107,12 +108,26 @@ namespace NovetusLauncher this.label3.TabIndex = 7; this.label3.Text = "Item Version"; // + // comboBox1 + // + this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox1.FormattingEnabled = true; + this.comboBox1.Items.AddRange(new object[] { + "http://www.roblox.com/", + "http://assetgame.roblox.com/"}); + this.comboBox1.Location = new System.Drawing.Point(12, 93); + this.comboBox1.Name = "comboBox1"; + this.comboBox1.Size = new System.Drawing.Size(212, 21); + this.comboBox1.TabIndex = 8; + this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.ComboBox1SelectedIndexChanged); + // // ItemMaker // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlLightLight; - this.ClientSize = new System.Drawing.Size(236, 125); + this.ClientSize = new System.Drawing.Size(236, 152); + this.Controls.Add(this.comboBox1); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); @@ -125,10 +140,12 @@ namespace NovetusLauncher this.MaximizeBox = false; this.Name = "ItemMaker"; this.Text = "Novetus Item SDK"; + this.Load += new System.EventHandler(this.ItemMakerLoad); ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } + private System.Windows.Forms.ComboBox comboBox1; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; diff --git a/NovetusLauncher/NovetusLauncher/ItemMaker.cs b/NovetusLauncher/NovetusLauncher/ItemMaker.cs index 3fd6c09..bf6028b 100644 --- a/NovetusLauncher/NovetusLauncher/ItemMaker.cs +++ b/NovetusLauncher/NovetusLauncher/ItemMaker.cs @@ -12,6 +12,7 @@ using System.Windows.Forms; using System.Net; using System.IO; using System.Reflection; +using System.ComponentModel; namespace NovetusLauncher { @@ -20,6 +21,8 @@ namespace NovetusLauncher /// public partial class ItemMaker : Form { + private static string url = "http://www.roblox.com/asset?id="; + public ItemMaker() { // @@ -34,10 +37,38 @@ namespace NovetusLauncher void Button1Click(object sender, EventArgs e) { - WebClient Client = new WebClient(); - string version = (numericUpDown1.Value != 0) ? "&version=" + numericUpDown1.Value : ""; - Client.DownloadFile("http://www.roblox.com/asset?id=" + textBox2.Text + version, GlobalVars.BasePath + "\\" + textBox1.Text + ".rbxm"); - MessageBox.Show("Item downloaded into your Novetus directory! In order for the item to work in Novetus, you'll need to find an icon for your item (it must be a .png file), then name it the same name as your item.\n\nIf you want to create a local (offline) item, you'll have to download the meshes/textures from the links in the rbxm file, then replace the links in the file pointing to where they are using rbxasset://. Look at the directory in the 'charcustom' folder that best suits your item type, then look at the rbxm for any one of the items.","Novetus Item SDK", MessageBoxButtons.OK, MessageBoxIcon.Information); + try + { + string version = (numericUpDown1.Value != 0) ? "&version=" + numericUpDown1.Value : ""; + + using (WebClient wc = new WebClient()) + { + wc.DownloadFile(url + textBox2.Text + version, GlobalVars.BasePath + "\\" + textBox1.Text + ".rbxm"); + } + + MessageBox.Show("Item downloaded into your Novetus directory! In order for the item to work in Novetus, you'll need to find an icon for your item (it must be a .png file), then name it the same name as your item.\n\nIf you want to create a local (offline) item, you'll have to download the meshes/textures from the links in the rbxm file, then replace the links in the file pointing to where they are using rbxasset://. Look at the directory in the 'charcustom' folder that best suits your item type, then look at the rbxm for any one of the items. If you get a corrupted file, change the URL using the drop down box.","Novetus Item SDK", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + catch(Exception) + { + MessageBox.Show("Error: Unable to download the file. Try using a different file name or ID.","Novetus Item SDK | Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + void ComboBox1SelectedIndexChanged(object sender, EventArgs e) + { + if (comboBox1.SelectedText == "http://www.roblox.com/") + { + url = "http://www.roblox.com/asset?id="; + } + else if (comboBox1.SelectedText == "http://assetgame.roblox.com/") + { + url = "http://assetgame.roblox.com/asset/?id="; + } + } + + void ItemMakerLoad(object sender, EventArgs e) + { + comboBox1.Text = "http://www.roblox.com/"; } } } diff --git a/NovetusLauncher/NovetusLauncher/LauncherFuncs.cs b/NovetusLauncher/NovetusLauncher/LauncherFuncs.cs index 6037597..6abb79c 100644 --- a/NovetusLauncher/NovetusLauncher/LauncherFuncs.cs +++ b/NovetusLauncher/NovetusLauncher/LauncherFuncs.cs @@ -733,35 +733,48 @@ namespace NovetusLauncher Studio = 3 } - public static string GetScriptFuncForType(ScriptType type) + public static string GetScriptFuncForType(ScriptType type, string client) { + string rbxexe = ""; + if (GlobalVars.LegacyMode == true) + { + rbxexe = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\clients\\" + client + @"\\RobloxApp.exe"; + } + else + { + rbxexe = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\clients\\" + client + @"\\RobloxApp_client.exe"; + } + string md5dir = SecurityFuncs.CalculateMD5(Assembly.GetExecutingAssembly().Location); + string md5script = SecurityFuncs.CalculateMD5(GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\content\\scripts\\" + GlobalVars.ScriptName + ".lua"); + string md5exe = SecurityFuncs.CalculateMD5(rbxexe); + string md5s = "'" + md5exe + "','" + md5dir + "','" + md5script + "'"; if (type == ScriptType.Client) { if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true) { - return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "')"; + return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + "," + md5s + ")"; } else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true) { - return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "')"; + return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + GlobalVars.loadtext + "," + md5s + ")"; } else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false) { - return "_G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "')"; + return "_G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + "," + md5s + ")"; } else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false) { - return "_G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "')"; + return "_G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + GlobalVars.loadtext + "," + md5s + ")"; } else { - return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "')"; + return "_G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + "," + md5s + ")"; } } else if (type == ScriptType.Server) { - return "_G.CSServer(" + GlobalVars.RobloxPort + "," + GlobalVars.PlayerLimit + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "'," + GlobalVars.DisableTeapotTurret.ToString().ToLower() + ")"; + return "_G.CSServer(" + GlobalVars.RobloxPort + "," + GlobalVars.PlayerLimit + "," + md5s + "," + GlobalVars.DisableTeapotTurret.ToString().ToLower() + ")"; } else if (type == ScriptType.Solo) { @@ -818,7 +831,7 @@ namespace NovetusLauncher LauncherFuncs.ReadConfigValues(GlobalVars.BasePath + "\\config.txt"); } - public static void GenerateScriptForClient(ScriptType type) + public static void GenerateScriptForClient(ScriptType type, string client) { //next, generate the header functions. @@ -830,7 +843,7 @@ namespace NovetusLauncher "--Load Script", //scriptcontents, "dofile('rbxasset://scripts/" + GlobalVars.ScriptName + ".lua')", - GetScriptFuncForType(type) + GetScriptFuncForType(type, client) ); List list = new List(Regex.Split(code, Environment.NewLine)); @@ -958,7 +971,7 @@ namespace NovetusLauncher //vars for loader public static bool ReadyToLaunch = false; //server settings. - public static string Map = "Baseplate.rbxl"; + public static string Map = ""; public static int RobloxPort = 53640; public static int DefaultRobloxPort = 53640; public static int PlayerLimit = 12; @@ -972,6 +985,7 @@ namespace NovetusLauncher //client shit public static string SelectedClient = ""; public static string DefaultClient = ""; + public static string DefaultMap = ""; public static bool UsesPlayerName = false; public static bool UsesID = true; public static string SelectedClientDesc = ""; diff --git a/NovetusLauncher/NovetusLauncher/LoaderForm.cs b/NovetusLauncher/NovetusLauncher/LoaderForm.cs index 9715ca3..e81e36c 100644 --- a/NovetusLauncher/NovetusLauncher/LoaderForm.cs +++ b/NovetusLauncher/NovetusLauncher/LoaderForm.cs @@ -38,9 +38,11 @@ namespace NovetusLauncher void LoaderFormLoad(object sender, EventArgs e) { - string[] defaultclient = File.ReadAllLines(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\info.txt"); - string defcl = defaultclient[1]; - GlobalVars.DefaultClient = defcl; + string[] lines = File.ReadAllLines(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\info.txt"); + GlobalVars.DefaultClient = lines[1]; + GlobalVars.DefaultMap = lines[2]; + GlobalVars.SelectedClient = GlobalVars.DefaultClient; + GlobalVars.Map = GlobalVars.DefaultMap; QuickConfigure main = new QuickConfigure(); main.ShowDialog(); System.Threading.Timer timer = new System.Threading.Timer(new TimerCallback(CheckIfFinished), null, 1, 0); @@ -75,29 +77,13 @@ namespace NovetusLauncher } string quote = "\""; string args = ""; - string md5dir = SecurityFuncs.CalculateMD5(Assembly.GetExecutingAssembly().Location); if (!GlobalVars.FixScriptMapMode) { - if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true) - { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + ip + "'," + port + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "');" + quote; - } - else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true) - { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + ip + "'," + port + ",'Player','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "');" + quote; - } - else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false) - { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(0,'" + ip + "'," + port + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "');" + quote; - } - else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false) - { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(0,'" + ip + "'," + port + ",'Player','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "');" + quote; - } + args = "-script " + quote + "dofile('" + luafile + "'); " + ScriptGenerator.GetScriptFuncForType(ScriptGenerator.ScriptType.Client, client) + quote; } else { - ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Client); + ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Client, client); args = "-script " + quote + luafile + quote; } try diff --git a/NovetusLauncher/NovetusLauncher/MainForm.Designer.cs b/NovetusLauncher/NovetusLauncher/MainForm.Designer.cs index 835a52d..972b44f 100644 --- a/NovetusLauncher/NovetusLauncher/MainForm.Designer.cs +++ b/NovetusLauncher/NovetusLauncher/MainForm.Designer.cs @@ -54,6 +54,7 @@ namespace NovetusLauncher this.label3 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.tabPage2 = new System.Windows.Forms.TabPage(); + this.checkBox2 = new System.Windows.Forms.CheckBox(); this.label2 = new System.Windows.Forms.Label(); this.button23 = new System.Windows.Forms.Button(); this.button22 = new System.Windows.Forms.Button(); @@ -122,7 +123,6 @@ namespace NovetusLauncher this.label27 = new System.Windows.Forms.Label(); this.label28 = new System.Windows.Forms.Label(); this.textBox5 = new System.Windows.Forms.TextBox(); - this.checkBox2 = new System.Windows.Forms.CheckBox(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); @@ -372,6 +372,16 @@ namespace NovetusLauncher this.tabPage2.ToolTipText = "Start a server for other players to play"; this.tabPage2.UseVisualStyleBackColor = true; // + // checkBox2 + // + this.checkBox2.Location = new System.Drawing.Point(293, 180); + this.checkBox2.Name = "checkBox2"; + this.checkBox2.Size = new System.Drawing.Size(104, 36); + this.checkBox2.TabIndex = 53; + this.checkBox2.Text = "Disable Teapot Turret"; + this.checkBox2.UseVisualStyleBackColor = true; + this.checkBox2.CheckedChanged += new System.EventHandler(this.CheckBox2CheckedChanged); + // // label2 // this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; @@ -1081,16 +1091,6 @@ namespace NovetusLauncher this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.textBox5.TextChanged += new System.EventHandler(this.TextBox5TextChanged); // - // checkBox2 - // - this.checkBox2.Location = new System.Drawing.Point(293, 180); - this.checkBox2.Name = "checkBox2"; - this.checkBox2.Size = new System.Drawing.Size(104, 36); - this.checkBox2.TabIndex = 53; - this.checkBox2.Text = "Disable Teapot Turret"; - this.checkBox2.UseVisualStyleBackColor = true; - this.checkBox2.CheckedChanged += new System.EventHandler(this.CheckBox2CheckedChanged); - // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); diff --git a/NovetusLauncher/NovetusLauncher/MainForm.cs b/NovetusLauncher/NovetusLauncher/MainForm.cs index 50b0ef5..c9727a3 100644 --- a/NovetusLauncher/NovetusLauncher/MainForm.cs +++ b/NovetusLauncher/NovetusLauncher/MainForm.cs @@ -177,10 +177,10 @@ namespace NovetusLauncher { string[] lines = File.ReadAllLines("info.txt"); //File is in System.IO string version = lines[0]; - string[] defaultclient = File.ReadAllLines("info.txt"); - string defcl = defaultclient[1]; - GlobalVars.DefaultClient = defcl; + GlobalVars.DefaultClient = lines[1]; + GlobalVars.DefaultMap = lines[2]; GlobalVars.SelectedClient = GlobalVars.DefaultClient; + GlobalVars.Map = GlobalVars.DefaultMap; ConsolePrint("Novetus version " + version + " loaded. Initializing config.", 4); if (File.Exists("changelog.txt")) { @@ -195,14 +195,19 @@ namespace NovetusLauncher ConsolePrint("WARNING 1 - config.txt not found. Creating one with default values.", 5); WriteConfigValues(); } + if (!File.Exists("config_customization.txt")) + { + ConsolePrint("WARNING 2 - config_customization.txt not found. Creating one with default values.", 5); + WriteCustomizationValues(); + } if (!File.Exists("servers.txt")) { - ConsolePrint("WARNING 2 - servers.txt not found. Creating empty file.", 5); + ConsolePrint("WARNING 3 - servers.txt not found. Creating empty file.", 5); File.Create("servers.txt").Dispose(); } if (!File.Exists("ports.txt")) { - ConsolePrint("WARNING 3 - ports.txt not found. Creating empty file.", 5); + ConsolePrint("WARNING 4 - ports.txt not found. Creating empty file.", 5); File.Create("ports.txt").Dispose(); } label5.Text = GlobalVars.BasePath; @@ -275,6 +280,12 @@ namespace NovetusLauncher ConsolePrint("Config Saved.", 3); } + void WriteCustomizationValues() + { + LauncherFuncs.WriteCustomizationValues("config_customization.txt"); + ConsolePrint("Config Saved.", 3); + } + void ReadClientValues(string ClientName) { string clientpath = GlobalVars.ClientDir + @"\\" + ClientName + @"\\clientinfo.txt"; @@ -625,29 +636,13 @@ namespace NovetusLauncher } string quote = "\""; string args = ""; - string md5dir = SecurityFuncs.CalculateMD5(Assembly.GetExecutingAssembly().Location); if (!GlobalVars.FixScriptMapMode) { - if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true) - { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "');" + quote; - } - else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true) - { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "');" + quote; - } - else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false) - { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "');" + quote; - } - else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false) - { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + GlobalVars.loadtext + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "');" + quote; - } + args = "-script " + quote + "dofile('" + luafile + "'); " + ScriptGenerator.GetScriptFuncForType(ScriptGenerator.ScriptType.Client, GlobalVars.SelectedClient) + quote; } else { - ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Client); + ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Client, GlobalVars.SelectedClient); args = "-script " + quote + luafile + quote; } try @@ -734,26 +729,11 @@ namespace NovetusLauncher string args = ""; if (!GlobalVars.FixScriptMapMode) { - if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true) - { - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSSolo(" + GlobalVars.UserID + ",'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ");" + quote; - } - else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true) - { - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSSolo(" + GlobalVars.UserID + ",'Player','" + GlobalVars.loadtext + ");" + quote; - } - else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false) - { - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSSolo(0,'" + GlobalVars.PlayerName + "','" + GlobalVars.loadtext + ");" + quote; - } - else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false ) - { - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSSolo(0,'Player','" + GlobalVars.loadtext + ");" + quote; - } + args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); " + ScriptGenerator.GetScriptFuncForType(ScriptGenerator.ScriptType.Solo, GlobalVars.SelectedClient) + quote; } else { - ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Solo); + ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Solo, GlobalVars.SelectedClient); args = "-script " + quote + luafile + quote + " " + quote + mapfile + quote; } try @@ -803,14 +783,13 @@ namespace NovetusLauncher } string quote = "\""; string args = ""; - string md5dir = SecurityFuncs.CalculateMD5(Assembly.GetExecutingAssembly().Location); if (!GlobalVars.FixScriptMapMode) { - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + "," + GlobalVars.PlayerLimit + ",'" + GlobalVars.SelectedClientMD5 + "','" + md5dir + "','" + GlobalVars.SelectedClientScriptMD5 + "'," + GlobalVars.DisableTeapotTurret.ToString().ToLower() + "); " + quote + (no3d ? " -no3d" : ""); + args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); " + ScriptGenerator.GetScriptFuncForType(ScriptGenerator.ScriptType.Server, GlobalVars.SelectedClient) + quote + (no3d ? " -no3d" : ""); } else { - ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Server); + ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Server, GlobalVars.SelectedClient); args = "-script " + quote + luafile + quote + (no3d ? " -no3d" : "") + " " + quote + mapfile + quote; } try @@ -851,11 +830,11 @@ namespace NovetusLauncher string args = ""; if (!GlobalVars.FixScriptMapMode) { - args = quote + mapfile + "\" -script \"dofile('" + luafile + "');" + quote; + args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); " + ScriptGenerator.GetScriptFuncForType(ScriptGenerator.ScriptType.Studio, GlobalVars.SelectedClient) + quote; } else { - ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Studio); + ScriptGenerator.GenerateScriptForClient(ScriptGenerator.ScriptType.Studio, GlobalVars.SelectedClient); args = "-script " + quote + luafile + quote + " " + quote + mapfile + quote; } try diff --git a/clients/2006S/content/fonts/character.rbxm b/clients/2006S/content/fonts/character.rbxm deleted file mode 100644 index f0301be..0000000 --- a/clients/2006S/content/fonts/character.rbxm +++ /dev/null @@ -1,795 +0,0 @@ - - null - nil - - - 7 - true - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - erik.cassel - RBX1 - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 24 - - 0 - 9.5 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - true - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Head - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 1 - 1 - - - - - - 0 - Mesh - - 1.25 - 1.25 - 1.25 - - - - 1 - 1 - 1 - - true - - - - - 5 - face - 20 - 0 - rbxasset://textures\face.png - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 23 - - 0 - 8 - -0.5 - -1 - 0 - -0 - -0 - 1 - -0 - -0 - 0 - -1 - - true - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - 0 - 0 - 2 - 0 - true - Torso - 0 - 0 - 0 - 2 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 2 - 1 - - - - - 5 - roblox - 20 - 0 - iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAAK3RFWHRDcmVhdGlvbiBUaW1l -AFR1ZSA0IE9jdCAyMDA1IDEyOjA4OjU2IC0wODAwjyq8YAAAAAd0SU1FB9UKBBMOFj/CLTwA -AAAJcEhZcwAAHsIAAB7CAW7QdT4AAAAEZ0FNQQAAsY8L/GEFAAAYfklEQVR42u3dCXxU1b0H -8N+dfTKTZLKRPWxhE0UUQVllrSDu2LovrQjPSi2tW6346mtdWhG1reKG9VVFrX70U1d8FhG0 -LCqoqICyJkACJCRkkpnMPvedc2cymSSzhKWl4O/7+QwzmTn33nPv3HPO/5x75gIQERERERER -ERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERER -EREREREREREREREREREREREREREREREREREdX5SDSbxzzs9U75NPAIHA0c53WrqBA1Ewfz6y -zjkHYbcbe267Fa0LHz/a2Tpqsh955OeFc+f+Kf69qkmTWvwffGBPtkz/gzw/6NijO9oZIKKj -p1s1vOv11wy1F81wiZdm+bcqF9QdwbojHO763uGsP259+unTzwu9996TCIWKoYjdVY5Qo6aq -kUfnt8X6lc7bSJL2sPazm8dMFenachPfom85+eRl6vr1E7osG5dXRgDHv259wVUjRy7zr16t -nSwhmw2GVavgGDTwyORAnGsH7PZYt8LTpxLlb/4dof79Dn2nGhvh/tlN8L36avtmdHrkOJug -mE1HJNvh5ma4z78AwZUrY+8Fsx3Ir9vbpQJQfT64LpqB4D/+0f5eaSnsr70G4ylDu1YY3eCe -dxf8oovTVlgbX1iMvj+6uGu6d96Ff8YMrcLIeeRhR8HcXzj3PbPoTOd1Mz+Uh0oufUCk6Ttl -UiRf7lY05eVp6VkBHP+69QVvjjT68OsNaK6uwaDSHkc0Ew1z5iD82GPw6I3Y9MEqnHXmaYe9 -zrDfj/3iRFZcLi3zX//qbky6/zcplwlC7d7Ko7yr18AzapT2utVkgXf5P9F35KkJ06p796Gp -pEQrsHV2B/QbNqB/RTHCB7PBTpqvuRah556DV7yu/exrnHXaiWgQ+9B5L7yzZsPz9NMwDh26 -unjhYxN3jjvzAIJBi/zsk+kzMO3NV6BviwB8XtRbMwCDwdc/ELAc9hdB/9EMB5P4yx7lOCs3 -K2WaLd9uSb8iGWUaDKis7AWdbP127dLeDouT0KA7Mo2O6vHEoooWgxl5E8YnTysK5e7t1Wht -9aZdb2HvctjtGdprpaGhfb9LemFEn4qky/nlPkZb66qhwzEp13HY+2gZMwZuUQEYxeutr76G -iacMEn2ert0A46xZ8Ih0wW3b+u+64MIXRHdILoJmWxb6z/1Z5DuIav7VHVo+zcOG3YE1a47I -d0H/udJWAP5f/1qpuu8+7fU+ezbyrBY4U6RvbDiQfqviBFONcaG4CKc14kTUHaEKQJzkUKL9 -5ICIXDJ690qZvKXJiRanK+1qc8uKY68Vb3uF0ZjlQKYo1KEky4VbWmKvncWlcGRY0XqYu2jo -2VN71ovHgY3fIpwkgNGfNky26FBbWvJgNs9oq4j8JjMKR57eoQvi/+AD7dnx+/uXYfwE0PEt -bQVg3LEj9rr6hJPTrnDAmNO7teGarBzsr61BD5sV/u82axmx+UX4ef0svDtvHsr69TnknTIH -fMhf8PtYBOC2Z6LckZk0fbjpAApPG4qSbqz740efwbQbfxxZrqYm9r6+rAyZRiOaknQjdFVV -7ce0uARGraKLpA2Liuq7NZ/DWVefdLtBoxknjTsd2Zm22Htq3b7Y66nvvIpVX92JkaeeCFeC -PJhuvQX+u/8H2L9f+zskCn3dG+9ikK09yvc++ijUr7+GeerU/80eP2H9IX8BdMxI3wW4//5c -vPSSdkqZ+/RKm7y7MwR8op/psJgjmWjYH3t/wqZ10F9xYdKWtLvi+9bN9iwUZNmTJxYFL9xp -mUS8oiLJOXFw+zailaPWfhaVpDyY4Wg3R6YJZ2drrXbb9jy/vBlFf/wjytNsf/FlszHzhYUi -yo+02IGq6thn2WoI7/3Xz3HGP5dAMRm7VAG2O++MVABRn//0l5g6Zljsb7W+Hi033QTFbt9X -seipn6CsAnT8S1sBOHdW95fPsmfZo8+ht8od5ObCeeNNMLX1V/3+9s9EK6obNgy6nJxDW3dr -K4Lr1kF1tYfz4bw82M0muJMsEmhsTLlKJT8fuquugkNEJsW5cfmKFmpZmNWKcvhSrCO0ZWvs -taOsqOP2lyyJPKfbtz21CIloQa/Ta38G6ztGDBd9tgzLVqzBpCnjukYBhvaveuuAkzDuwXs7 -9P0bhgyRXbNQ3pIlw5WyioMbDaVjVtoKINjQoI36yVPFkJGRspVU1TTnjSjUSu/eMJw0BAWD -BnT5OKzXIzRhIjJkn9VmwyHx+bTtBN56SxsHkEImc+plvIkH/1SrFRCVnlFWSCcPgc5o7Jhf -OdCISCCvs6TbRiStPH56U6dLkaFuxjudLmGq7o5VmvyOmtd/jdDE0QkHAyG2GxTdIsOoke2j -/oL/q6+gimOg5OR8Y9DrD3dogo4haSsAT+0ebaRJtjm2wh6HftlKnHBK30oYZ16HjJnX48QE -J2jQbIHvnvtQMvzUQ9hAO/+WzXC+/74WDWjrzUoz4u5MMqwpWn710stg/cVc6G0ZXfN7IDLg -KSsAU07qbeiaImnl8bNmd7qSEh8BpVqH7DrEHTe1UwQgv8zaF15C4MbroFjNXboBiljef6AJ -GbfeAqupvTJzLX4RaGqC4fLLX8kaNaoB9L2RdhpaeN06rTSGRPvSq29ZyjA30ey0cE4ulMsv -R+6XXyL/s0+RPXs2jPrEm/3kqutx8mEWfsnUrz9MM2fGdtBdVJwyfTBuMC2mb19kbN6MvHm/ -Tlj41WAQ4d2RQUAZumcWF4rn5BFQKFpYZVsvK4sOMYcr/dUHyS72Qx8/aSjaBYl3wfqVeP31 -JUjUgcpYsABbH1qIfgP7xt7zbd2K0IPzoRQWbum1ePH9h33w6ZiSNgIIbdqkTflrFSder4Kc -1BGAKBQakVZ/6qmitZ+JjGuugV6G0km0VShySdcpw7t8LrfnbPWJvm+CMFl0OUTICkdG1/kq -pgwrZLsqi6RFFM5U+VbiRuiDontive02WC+9BHqDvmt+RbjetKsG9scehbJ7V3QfFGQXFyGV -cHPkMqCsLGQEEIqrLDqH8onI9lonIpIOEkQucj+V229Hw3lToM+0ddhv01VX4sz4tOKYNo84 -XXvR89lnRymKwr7/90zaCiC8bZvWWXfr9CjIzITsySaLAmSr6DOaYHz2L7COHYuQwwG3uWvf -2O8PoXHPXug+W4vARysgT2tV0SFTKxiiHxuX1vPGG9j758eh+BJvtcWWCfMDD6D/kI5TkwP7 -6rRnuT5fSUmX9XbId02t9vm+W+9A5ZwbANFCh+R4RPRzryhF3poatK5YCeXdt2H77BP46+ti -yzebMpBls2kVTqJgXg2IaCHaXXAZTDCJiCIQn7at4kzDXFLcYf2hJMdk+N4dWPL6e5hyzYyk -MYncvuemn4tKpAnm6dNvNo4enXoklI5LaSsAUagjPwCSrboI3WWhSHZSqdF0KC6BrrRUK0Rq -gjRyHYFgCDoR+gbarn1r69fH0rQJudwIigKq8yUeqPPbs0UJ7xp8q/EDawZjl/V2INOK7Ydy -87Tr+eFOk5HCYsmQyG+wpQW6vXtFy787Nqinfa7TRQfVUkxiinaPZEXX/kOqg5v0pDMaurWc -NRSEWxw3NUVa+Vm4rk7Ll65Xr3olO/twZiXTMSp9BdDUpHUnm+wOmEUFIK/YJ4sAFNGSLT9x -BG6YOAEdJgSLs62lsQm+L7+E+533YF2xAgUb18MYV4iCegOMZaXapbq2YWhdQwOMV16BVFek -y8TjnWeew4Dh8ztcRtPX79dO/YD411FRoc1eTDa8bd63D1WOHii4/Ap4Rdn0xH0WWrYcLffc -D8fqj5Hn9SRcfn+mA4WOLBFhqGLZBAVufwMM0TDfabKi3GLV0rUF8AZ5dcGXcnQF++1ZKB92 -ElrEcm0lVe/3JyzeTqMZFaOHi/woKX/doAZCWtdCDQTSTUGg41T6iUDRlqtaVADy92LNqc4o -VysOiMIgk/ji0qnbqgDRp85b9ymS9ZSDovU3ZWdqy7UVBaXFhQyk5xL971a140SezJrd2t9e -owVZ+XnwqMkrLpNo0bO8bqzduAPnlBehKf7DkWfA8ueHEFy7DoYPlgLLl3cZfGvJykam1QKX -qiTchr66GobocWzMykHPDKs4jqo2diB5P/0MxuqqlPvoG3IK8spLtf1oY0tw9UDGUBseWojB -QwbB2+m7qq+qQV5FMXRtEcgLz8PoeBPeRYt+q86du0B55JHu9UXouNHtHwPtKSjRCpQ7RfTp -21mDUV+uxkfba1DcuxQH2tJW9gLWrETL6jUwPf887M8/1+Xau8dogkMUpGaxTNuQmEGE/ekq -AHnGmop6aMuEo9tTRbhuFa2uPM09JhPshflaXhJ1ImT/3FZfjx4eFyovuwDLpkxF89nTUXLG -CJQM6IWgKNgYPFh7NF9ztYhyQlA3bUL25ZfB/M032jq8ubkI2SxoURJXMsq3m9E2TOkX++k3 -6CEnJjuV6Bcw5KTII434+EPx+WEVx7Dz9ZTlk89Fn+uvhEe790HHzwpGn44Pn3sFIyaNinxm -y4D1+lnQPb7QtKu6+l7xzu3dPR/o+NDtu1G0ZjsQUCOFKJDgIdsi/Z4aODxu+BcuxM5tuyAn -38bSi1bH16sX3BddiAN3zkPzVVcj2Kf9cpQWAVgM2npi6+3G4Jjs6YfsmV2WU1oj1YjXZIHR -bNIii4T59ooi6/FoUYtDVAI9v1qHylcWI+uRh7DrpddQu3Y9XPVNCIZUrbLx6RQEigrhmzKl -Pe+OHG1WnSfJNpSW9uHHHJcTu/Y3a6F3jogCbDj4h1U8DMuWaV2ueG5rBvQXX6iNvSTKh7HZ -ifCS9+APhWLvNZ57LlTx3QQ++WSsesMNvEPU90y3IwCfaJ1lYZMFzZjgc1mArPX7kOX3oHbx -YuyffgEqK8tR25Zehp3lZdrDe8YoGEUobZGDadu3acuH9AZYRQUgT8q201rpxgw5VfZzRQUQ -iGvt1FA49ks9v9msVQCtceuNF/YHYhNxsnytcHy3AUHxaDbbsLHZC/2UEAxZuTDmZGtpZEWm -LyiAf8xY4OGHI3kXx0bOz/eriQcarXGX+RytLdjc5MZpIr+OaLfkYK+9yaPiXb26y/HxWkQF -MG0qVBFhJNpXk9sF9aOPEFTVWHDgmzwZefKKR23tCHEcZAXAwcDvkZQVQKC29uMdJSXaCXpg -8DC4xFnTmuJszRF9XXliDdpbjfpzpuCNu+7BxbfPwdrOCeVMuPPPQ8O558Dx1CKU/3Q2fKKv -XmC1olGsv21wzOFsRjp+oxlKjgPOuHxZ5E9vo4NqXpsNVrsdstfuT5D3jLq9HS7DybNflgKH -z42zX3oafvFoyshCVc++sL3+GgoG9NYqtZDbq12+1CYalZRpy8rpPMEE28jati32uszrwtbL -foQn5/038vr1OaRb7thEAR71+65zdj5a+Cwqy4o6HIs2mdE7F12wdgVeXLoKJ04dF6l4DAY0 -iIgs/+7f6Hds3/5X8c4Vh5AlOkalrACaP/98jHyWLXhWSb7oAqjwpZi16t24BcVPPTXHP3/+ -rIItW4ZMnfcLLNr4HWY8MR/bdXp4lc6bU7D34hmoEBVAY6YDlXoFTn9QhOt6qKJkBPelv7dA -q8UKS74IyeNKd0i2uNHfJXjyCmAy69HiS1xzmVLcvyAcPUD5rSJk37oJm51uZImugE80vDnR -gUCtABeWal0dd4IaJqQXlcT29p9UyxTjN38B/9UXad2eQ/rS1DB0nWZdvj/japReOA3eQNtW -Oho8fXps+5k3zYX3609F5iPb/+7Ou5B77z0Ifvjhpf5ly24wTZyYvual40LKCsC/Y7v2LE/y -zNJCuDziJPclbrPkBafsT1ehYMF9b5kqKp7e9eCDj2Lp0uuvfP4xvL9hA0qefwZ5PXtip79j -N9Ma/UFNi2iljWEVjV7Rfw1FtrF3xGgUnDEGmQ37Em7TKULzDdfeCFtRGdxx1/hyozffkGtp -zOuhNcvu1sT5tlbVxl439x+EQHFpwnRVpT1R1LsCDa2RcQ11527tfW1qb1EPNPvlNhJ0ocVb -u2fNQVAWtm5O+OmOvBVLY6/r8ovg/cMCeDw6Ue913E+dDRg6YSz0ze2zBs/b+gUe+OuHGH7J -5Fj6LQ8/gQFzrtNtu/mW18SfU7qVCTrmpawAWlet1p5lo+8or0SrX4E78aVw5Jh9sDTUw9S3 -crdS2S+sqursnZde9oXvby8vnPb5h9g0YRxWPfUWzp58ElY741q+2kioLmf0ycarydV+ArsN -ufjo9Y8Td5JlCy+TKl2H9827I3Pr5cfuknKERLlLlG+LUbSi22q1MP7j6Rej8KXF+M6V/Kah -e7X5yqLbYFVh3ROpOGTu/dnF2kWNZMfGPe48VInHkTRx/EBYN3+nvX7rsTdQbM2XV2G7sC9+ -DlmrV3Z4T8YOw3/7UzRP2wCdIbK/Oy77CfrNnQ39F59Pdi1dmm2fPNmZLg907OOoL9H3WMoK -ILxqlfYsxwC+rtYj3xKCKRC5hB//KFdUeJoio+mKomidU/nDkp5/e/lx67XXjhZttX9g3W6c -f8loPPHAIkzKCsWW9Ud/iOMJ6lHdqmJchgq9P279nq7b0x6iK+L1Kgk/t3zRfjNLd51L++FN -b33HNOaAiiIRPdhXvq9FCtUnDEO+YoysL9lDLJchuhMOEQnY1n+hrV+2nwcOuJBjVJEXTpJX -z5F/NAzThmfwpylXYvyEYfJmvl22G2j2Yuwts2PjIearr44dl8m1W7Hu2Rdjad1NwIonX9Q+ -2ztr1vKjfWLSv0fKQei224HLf54Z/gPYnn0TZxaaYYnrOMibgKxpDGLUDwYjZ/uWhPeSr71r -Xqlr/oMbxZmWJefCP3PWJTjl4fmoN5fA+MQ9mPTAf8NpsWH+rx7HxB9fiQEZ6NKXTUde2vrW -FUZIFMxpPxoJXbS/vSsrDy//5hlcevV5sBna17nFrSK46EGMvvt2bQ+XDhwGy4uvYnDv3ikv -y21yqci/fSYGvPiX2HvvDR2DugUv4AdDK2A6Ujc1TcEjdi1/YA+YRZfrngtuQL97/4jpFQbE -b3qNCOBHjB0A+/b2Sdm9a2qMO3r1qkMgoE3v/ia3BKv/71voojcoyXS68MNx+doX2PebDSX6 -Ewfv+ZfvDB1VKc/WLb/7naredVfs7/0mC/ZkF3ZIk6EG0bOpDoZgZCZ+sv9MYv+rr9oa77jj -E2zdqt1Uz2U0o8bRA/3374YSbaF8onLYbc9BqyXF/ftSqPA0Iae1RbvJJrKzYz+X9ej0Yr25 -8Joj8woNohdc1uqE3d0cy6x8bjBaRJ4Kk67fKJYrd9ZrNy+NJ3PfIvrS1Y6iI/c/D6VgFjFN -//rIIKRO5HxDThGCho5jF33dDbC2uuK/DL/4bszON98Yue+881dGdxk7xbF2ZuZpCU5o2gN9 -IHKZRzds2KrKdetG/8t3ho6qlGerr6FBrR4tzoFvv9X+ljcFCen0nVagwhCWn0DVnXDC6sqN -GxOeNKrPp2wdPLjUfNpp13pffvl3sp8QFOsyRpaNpJHviUpARgmHwqCGoBOViWnWLBTdfDN2 -T5uG8Pbt2qBXqMN6Ve1SmhI3ISbZ/nXaC21Ov65TjKC25V1b9t/xn+mIfYy7P4I/wXblsYjf -P/s555xd8vbbS9TlH5qrbrn174G1a6dCO94KwtHLgcZwMJY+8/bb5hX/4YF7/w07Q0dRyqsA -Rnljzrjf88sf9+rDKS5lWa1J/2cNxWyWZWT3rh/+ULvllCyKpk43+ZAnn1EUTKiHNxlN53DA -2LMnlGhoK7el68Z60+5fsn2LPkzhw72X8aHpznZNY8fW4u23oYyf4KsaPz52vcCg/V+AXfdZ -n5ub/i4lRERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERE -RERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERE -RERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERE -RERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERE -RERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERE -RERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERE -REREREREREREREREREREREREREREREREREREREREREREREREREREREREx6v/B5qI37vMmLq3 -AAAAAElFTkSuQmCC - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 24 - - 1.5 - 8 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - false - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Left Arm - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 2 - 1 - - - - - false - - Script - while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide = false -end - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 24 - - -1.5 - 8 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - false - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Right Arm - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 2 - 1 - - - - - false - - Script - while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide = false -end - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 119 - - 0.5 - 6 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - false - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Left Leg - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 2 - 1 - - - - - false - - Script - while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses . -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide=false--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -end -while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses . -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide=false--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -end - - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 119 - - -0.5 - 6 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - false - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Right Leg - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 2 - 1 - - - - - false - - Script - while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses . -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide=false--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -end -while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses . -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide=false--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -end - - - true - - - - - - 100 - false - 100 - Humanoid - false - false - - 0 - 0 - 0 - - - 0 - 0 - 0 - - 0 - null - - 0 - 0 - 0 - - true - - - - - false - - Script - function newSound(id) - local sound = Instance.new("Sound") - sound.SoundId = id - sound.Parent = script.Parent.Head - return sound -end - -sFallingDown = newSound("rbxasset://sounds/splat.wav") -sFreeFalling = newSound("rbxasset://sounds/swoosh.wav") -sGettingUp = newSound("rbxasset://sounds/hit.wav") -sJumping = newSound("rbxasset://sounds/button.wav") -sRunning = newSound("rbxasset://sounds/bfsl-minifigfoots1.mp3") -sRunning.Looped = true - -function onState(state, sound) - if state then - sound:play() - else - sound:pause() - end -end - -function onRunning(speed) - if speed>0 then - sRunning:play() - else - sRunning:pause() - end -end - -local h = script.Parent.Humanoid -h.Died:connect(onDied) -h.Running:connect(onRunning) -h.Jumping:connect(function(state) onState(state, sJumping) end) -h.GettingUp:connect(function(state) onState(state, sGettingUp) end) -h.FreeFalling:connect(function(state) onState(state, sFreeFalling) end) -h.FallingDown:connect(function(state) onState(state, sFallingDown) end) - --- regeneration -while true do - local s = wait(1) - local health=h.Health - if health>0 and health<h.MaxHealth then - health = health + 0.01*s*h.MaxHealth - if health*1.05 < h.MaxHealth then - h.Health = health - else - h.Health = h.MaxHealth - end - end -end - - true - - - - \ No newline at end of file diff --git a/clients/2006S/content/scripts/CSMPFunctions.lua b/clients/2006S/content/scripts/CSMPFunctions.lua index 9ed8b13..9519e7e 100644 --- a/clients/2006S/content/scripts/CSMPFunctions.lua +++ b/clients/2006S/content/scripts/CSMPFunctions.lua @@ -17,6 +17,24 @@ function newWaitForChild(newParent,name) end function LoadCharacterNew(playerApp,newChar,RemoveTeapotTurret) + if (playerApp==nil) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + else + if ((playerApp:GetChildren() == 0) or (playerApp:GetChildren() == nil)) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + end + end + local charparts = {[1] = newWaitForChild(newChar,"Head"),[2] = newWaitForChild(newChar,"Torso"),[3] = newWaitForChild(newChar,"Left Arm"),[4] = newWaitForChild(newChar,"Right Arm"),[5] = newWaitForChild(newChar,"Left Leg"),[6] = newWaitForChild(newChar,"Right Leg")} for _,newVal in pairs(playerApp:GetChildren()) do local customtype = newVal.CustomizationType.Value diff --git a/clients/2007M/content/scripts/CSMPFunctions.lua b/clients/2007M/content/scripts/CSMPFunctions.lua index 6d237b3..7bcedf1 100644 --- a/clients/2007M/content/scripts/CSMPFunctions.lua +++ b/clients/2007M/content/scripts/CSMPFunctions.lua @@ -13,6 +13,24 @@ function newWaitForChild(newParent,name) end function LoadCharacterNew(playerApp,newChar,RemoveTeapotTurret) + if (playerApp==nil) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + else + if ((playerApp:GetChildren() == 0) or (playerApp:GetChildren() == nil)) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + end + end + local charparts = {[1] = newWaitForChild(newChar,"Head"),[2] = newWaitForChild(newChar,"Torso"),[3] = newWaitForChild(newChar,"Left Arm"),[4] = newWaitForChild(newChar,"Right Arm"),[5] = newWaitForChild(newChar,"Left Leg"),[6] = newWaitForChild(newChar,"Right Leg")} for _,newVal in pairs(playerApp:GetChildren()) do local customtype = newVal.CustomizationType.Value diff --git a/clients/2007S/content/fonts/character.rbxm b/clients/2007S/content/fonts/character.rbxm deleted file mode 100644 index 4a463ef..0000000 --- a/clients/2007S/content/fonts/character.rbxm +++ /dev/null @@ -1,688 +0,0 @@ - - null - nil - - - 7 - true - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - erik.cassel - RBX1 - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 24 - - 0 - 4.5 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - true - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Head - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 1 - 1 - - - - - - 0 - Mesh - - 1.25 - 1.25 - 1.25 - - - - 1 - 1 - 1 - - true - - - - - 5 - face - 20 - 0 - rbxasset://textures\face.png - true - - - - - - 0 - 0.5 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 0 - -0.200000003 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - HeadWeld - RBX1 - null - true - - - - - - 0 - 0.5 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 0 - -0.200000003 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - HeadWeld - RBX1 - null - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 23 - - 0 - 3 - -0.5 - -1 - 0 - -0 - -0 - 1 - -0 - -0 - 0 - -1 - - true - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - 0 - 0 - 2 - 0 - true - Torso - 0 - 0 - 0 - 2 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 2 - 1 - - - - - 5 - roblox - 20 - 0 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 24 - - 1.5 - 3 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - true - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Left Arm - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 2 - 1 - - - - - false - - Script - while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide = false -end - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 24 - - -1.5 - 3 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - true - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Right Arm - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 2 - 1 - - - - - false - - Script - while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide = false -end - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 119 - - 0.5 - 1 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - false - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Left Leg - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 2 - 1 - - - - - false - - Script - while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses . -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide=false--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -end -while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses . -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide=false--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -end - - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 119 - - -0.5 - 1 - -0.5 - -1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - -1 - - false - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Right Leg - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 3 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 2 - 1 - - - - - false - - Script - while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses . -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide=false--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -end -while true do--while its told its true it will happen -script.Parent.CanCollide=true--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses . -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -script.Parent.CanCollide=false--script.Parent.(whatever) meens that its talking about the script effecting the ---parent, which is the brick, changing whatever setting in the brick its told too change. and the true/false is ---setting the setting to something else useing whatever unit it uses. -wait(0)--this is how long it will wait until going to the next piece of the script below it or will restart it. -end - - - true - - - - - - 100 - false - 100 - Humanoid - false - false - - 0 - 0 - 0 - - - 0 - 0 - 0 - - 0 - null - - 0 - 0 - 0 - - true - - - - \ No newline at end of file diff --git a/clients/2007S/content/fonts/humanoidAnimate.rbxm b/clients/2007S/content/fonts/humanoidAnimate.rbxm deleted file mode 100644 index d64cc10..0000000 --- a/clients/2007S/content/fonts/humanoidAnimate.rbxm +++ /dev/null @@ -1,285 +0,0 @@ - - null - nil - - - false - - Animate - -- Now with exciting TeamColors HACK! - -function waitForChild(parent, childName) - local child = parent:findFirstChild(childName) - if child then return child end - while true do - child = parent.ChildAdded:wait() - if child.Name==childName then return child end - end -end - ------------------------------ TEAM COLORS - - -function onTeamChanged(player) - - wait(1) - - local char = player.Character - if char == nil then return end - - if player.Neutral then - -- Replacing the current BodyColor object will force a reset - local old = char:findFirstChild("Body Colors") - if not old then return end - old:clone().Parent = char - old.Parent = nil - else - local head = char:findFirstChild("Head") - local torso = char:findFirstChild("Torso") - local left_arm = char:findFirstChild("Left Arm") - local right_arm = char:findFirstChild("Right Arm") - local left_leg = char:findFirstChild("Left Leg") - local right_leg = char:findFirstChild("Right Leg") - - if head then head.BrickColor = BrickColor.new(24) end - if torso then torso.BrickColor = player.TeamColor end - if left_arm then left_arm.BrickColor = BrickColor.new(26) end - if right_arm then right_arm.BrickColor = BrickColor.new(26) end - if left_leg then left_leg.BrickColor = BrickColor.new(26) end - if right_leg then right_leg.BrickColor = BrickColor.new(26) end - end -end - -function onPlayerPropChanged(property, player) - if property == "Character" then - onTeamChanged(player) - end - if property== "TeamColor" or property == "Neutral" then - onTeamChanged(player) - end -end - - -local cPlayer = game.Players:GetPlayerFromCharacter(script.Parent) -cPlayer.Changed:connect(function(property) onPlayerPropChanged(property, cPlayer) end ) -onTeamChanged(cPlayer) - - ------------------------------ ANIMATION - --- declarations - -local Figure = script.Parent -local Torso = waitForChild(Figure, "Torso") -local RightShoulder = waitForChild(Torso, "Right Shoulder") -local LeftShoulder = waitForChild(Torso, "Left Shoulder") -local RightHip = waitForChild(Torso, "Right Hip") -local LeftHip = waitForChild(Torso, "Left Hip") -local Neck = waitForChild(Torso, "Neck") -local Humanoid = waitForChild(Figure, "Humanoid") -local pose = "Standing" - -local toolAnim = "None" -local toolAnimTime = 0 - -local isSeated = false - --- functions - -function onRunning(speed) - if isSeated then return end - - if speed>0 then - pose = "Running" - else - pose = "Standing" - end -end - -function onDied() - pose = "Dead" -end - -function onJumping() - isSeated = false - pose = "Jumping" -end - -function onClimbing() - pose = "Climbing" -end - -function onGettingUp() - pose = "GettingUp" -end - -function onFreeFall() - pose = "FreeFall" -end - -function onSeated() - isSeated = true - pose = "Seated" -end - -function moveJump() - RightShoulder.MaxVelocity = 0.6 - LeftShoulder.MaxVelocity = 0.6 - RightShoulder.DesiredAngle = 3.14 - LeftShoulder.DesiredAngle = -3.14 - RightHip.DesiredAngle = 0 - LeftHip.DesiredAngle = 0 - wait(0.1) - RightShoulder.MaxVelocity = 0.15 - LeftShoulder.MaxVelocity = 0.15 - RightShoulder.DesiredAngle = 3.14 - LeftShoulder.DesiredAngle = -3.14 - RightHip.DesiredAngle = 0 - LeftHip.DesiredAngle = 0 -end - - --- same as jump for now - -function moveSit() - RightShoulder.MaxVelocity = 0.15 - LeftShoulder.MaxVelocity = 0.15 - RightShoulder.DesiredAngle = 3.14 /2 - LeftShoulder.DesiredAngle = -3.14 /2 - RightHip.DesiredAngle = 3.14 /2 - LeftHip.DesiredAngle = -3.14 /2 -end - -function getTool() - for _, kid in ipairs(Figure:GetChildren()) do - if kid.className == "Tool" then return kid end - end - return nil -end - -function getToolAnim(tool) - for _, c in ipairs(tool:GetChildren()) do - if c.Name == "toolanim" and c.className == "StringValue" then - return c - end - end - return nil -end - -function animateTool() - - if (toolAnim == "None") then - RightShoulder.DesiredAngle = 1.57 - return - end - - if (toolAnim == "Slash") then - RightShoulder.MaxVelocity = 0.5 - RightShoulder.DesiredAngle = 0 - return - end - - if (toolAnim == "Lunge") then - RightShoulder.MaxVelocity = 0.5 - LeftShoulder.MaxVelocity = 0.5 - RightHip.MaxVelocity = 0.5 - LeftHip.MaxVelocity = 0.5 - RightShoulder.DesiredAngle = 1.57 - LeftShoulder.DesiredAngle = 1.0 - RightHip.DesiredAngle = 1.57 - LeftHip.DesiredAngle = 1.0 - return - end -end - -function move(time) - local amplitude - local frequency - - if (pose == "Jumping") then - moveJump() - return - end - - if (pose == "Seated") then - moveSit() - return - end - - local climbFudge = 0 - - if (pose == "Running") then - RightShoulder.MaxVelocity = 0.15 - LeftShoulder.MaxVelocity = 0.15 - amplitude = 1 - frequency = 9 - elseif (pose == "Climbing") then - RightShoulder.MaxVelocity = 0.5 - LeftShoulder.MaxVelocity = 0.5 - amplitude = 0 - frequency = 0 - climbFudge = -3.14 - else - amplitude = 0.1 - frequency = 1 - end - - desiredAngle = amplitude * math.sin(time*frequency) - - RightShoulder.DesiredAngle = desiredAngle + climbFudge - LeftShoulder.DesiredAngle = desiredAngle - climbFudge - RightHip.DesiredAngle = -desiredAngle - LeftHip.DesiredAngle = -desiredAngle - - - local tool = getTool() - - if tool then - - animStringValueObject = getToolAnim(tool) - - if animStringValueObject then - toolAnim = animStringValueObject.Value - -- message recieved, delete StringValue - animStringValueObject.Parent = nil - toolAnimTime = time + .3 - end - - if time > toolAnimTime then - toolAnimTime = 0 - toolAnim = "None" - end - - animateTool() - - - else - toolAnim = "None" - toolAnimTime = 0 - end -end - - --- connect events - -Humanoid.Died:connect(onDied) -Humanoid.Running:connect(onRunning) -Humanoid.Jumping:connect(onJumping) -Humanoid.Climbing:connect(onClimbing) -Humanoid.GettingUp:connect(onGettingUp) -Humanoid.FallingDown:connect(onFallingDown) -Humanoid.Seated:connect(onSeated) - --- main program - -local runService = game:service("RunService"); - -while Figure.Parent~=nil do - local _, time = wait(0.1) - move(time) -end - - true - - - \ No newline at end of file diff --git a/clients/2007S/content/fonts/libraries.rbxm b/clients/2007S/content/fonts/libraries.rbxm deleted file mode 100644 index 56601b2..0000000 --- a/clients/2007S/content/fonts/libraries.rbxm +++ /dev/null @@ -1,28 +0,0 @@ - - null - nil - - - false - - ResetCommand - function onChatted(msg, speaker) - - source = string.lower(speaker.Name) - msg = string.lower(msg) - -- Note: This one is NOT caps sensitive - - if msg == "!!!reset" then - speaker.Character.Humanoid.Health = 0 - end -end - -function onPlayerEntered(newPlayer) - newPlayer.Chatted:connect(function(msg) onChatted(msg, newPlayer) end) -end - -game.Players.ChildAdded:connect(onPlayerEntered) - true - - - diff --git a/clients/2007S/content/scripts/CSMPFunctions.lua b/clients/2007S/content/scripts/CSMPFunctions.lua deleted file mode 100644 index 58090cd..0000000 --- a/clients/2007S/content/scripts/CSMPFunctions.lua +++ /dev/null @@ -1,420 +0,0 @@ -settings().Rendering.frameRateManager = 2 -settings().Rendering.graphicsMode = 2 -settings().Network.MaxSendBuffer = 1000000 -settings().Network.PhysicsReplicationUpdateRate = 1000000 -settings().Network.SendRate = 1000000 -settings().Network.PhysicsSend = 1 -- 1==RoundRobin - ---function made by rbxbanland -function newWaitForChild(newParent,name) - local returnable = nil - if newParent:FindFirstChild(name) then - returnable = newParent:FindFirstChild(name) - else - repeat wait() returnable = newParent:FindFirstChild(name) until returnable ~= nil - end - return returnable -end - -function LoadCharacterNew(playerApp,newChar,RemoveTeapotTurret) - local charparts = {[1] = newWaitForChild(newChar,"Head"),[2] = newWaitForChild(newChar,"Torso"),[3] = newWaitForChild(newChar,"Left Arm"),[4] = newWaitForChild(newChar,"Right Arm"),[5] = newWaitForChild(newChar,"Left Leg"),[6] = newWaitForChild(newChar,"Right Leg")} - for _,newVal in pairs(playerApp:GetChildren()) do - local customtype = newVal.CustomizationType.Value - if (customtype == 1) then - pcall(function() - charparts[newVal.ColorIndex.Value].BrickColor = newVal.Value - end) - elseif (customtype == 2) then - pcall(function() - local newHat = game.Workspace:InsertContent("rbxasset://../../../charcustom/hats/"..newVal.Value) - if newHat[1] then - if newHat[1].className == "Hat" then - if (RemoveTeapotTurret == true) then - if (newHat[1].Name ~= "TeapotTurret.rbxm") then - newHat[1].Parent = newChar - else - newHat[1]:remove() - end - else - newHat[1].Parent = newChar - end - else - newHat[1]:remove() - end - end - end) - elseif (customtype == 3) then - pcall(function() - local newTShirt = game.Workspace:InsertContent("rbxasset://../../../charcustom/tshirts/"..newVal.Value) - if newTShirt[1] then - if newTShirt[1].className == "ShirtGraphic" then - newTShirt[1].Parent = newChar - else - newTShirt[1]:remove() - end - end - end) - end - end -end - -function InitalizeClientAppearance(Player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID) - local newCharApp = Instance.new("IntValue",Player) - newCharApp.Name = "Appearance" - --BODY COLORS - for i=1,6,1 do - local BodyColor = Instance.new("BrickColorValue",newCharApp) - if (i == 1) then - if (HeadColorID ~= nil) then - BodyColor.Value = BrickColor.new(HeadColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "HeadColor" - elseif (i == 2) then - if (TorsoColorID ~= nil) then - BodyColor.Value = BrickColor.new(TorsoColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "TorsoColor" - elseif (i == 3) then - if (LeftArmColorID ~= nil) then - BodyColor.Value = BrickColor.new(LeftArmColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "LeftArmColor" - elseif (i == 4) then - if (RightArmColorID ~= nil) then - BodyColor.Value = BrickColor.new(RightArmColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "RightArmColor" - elseif (i == 5) then - if (LeftLegColorID ~= nil) then - BodyColor.Value = BrickColor.new(LeftLegColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "LeftLegColor" - elseif (i == 6) then - if (RightLegColorID ~= nil) then - BodyColor.Value = BrickColor.new(RightLegColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "RightLegColor" - end - local indexValue = Instance.new("NumberValue") - indexValue.Name = "ColorIndex" - indexValue.Parent = BodyColor - indexValue.Value = i - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = BodyColor - typeValue.Value = 1 - end - --HATS - for i=1,3,1 do - local newHat = Instance.new("StringValue",newCharApp) - if (i == 1) then - if (RightLegColorID ~= nil) then - newHat.Value = Hat1ID - newHat.Name = Hat1ID - else - newHat.Value = "NoHat.rbxm" - newHat.Name = "NoHat.rbxm" - end - elseif (i == 2) then - if (RightLegColorID ~= nil) then - newHat.Value = Hat2ID - newHat.Name = Hat2ID - else - newHat.Value = "NoHat.rbxm" - newHat.Name = "NoHat.rbxm" - end - elseif (i == 3) then - if (RightLegColorID ~= nil) then - newHat.Value = Hat3ID - newHat.Name = Hat3ID - else - newHat.Value = "NoHat.rbxm" - newHat.Name = "NoHat.rbxm" - end - end - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = newHat - typeValue.Value = 2 - end - --T-SHIRT - local newTShirt = Instance.new("StringValue",newCharApp) - if (TShirtID ~= nil) then - newTShirt.Value = TShirtID - newTShirt.Name = TShirtID - else - newTShirt.Value = "NoTShirt.rbxm" - newTShirt.Name = "NoTShirt.rbxm" - end - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = newTShirt - typeValue.Value = 3 -end - -function LoadSecurity(playerApp,Player,ServerSecurityLocation) - if (playerApp==nil) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - else - if ((playerApp:GetChildren() ~= 0) or (playerApp:GetChildren() ~= nil)) then - for _,newVal in pairs(playerApp:GetChildren()) do - if (playerApp:FindFirstChild("ClientEXEMD5")) then - if ((newVal.Name == "ClientEXEMD5")) then - if ((newVal.Value ~= ServerSecurityLocation.Security.ClientEXEMD5.Value) or (newVal.Value == nil) or (newVal.Value == "")) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end - else - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - - if (playerApp:FindFirstChild("LauncherMD5")) then - if ((newVal.Name == "LauncherMD5")) then - if ((newVal.Value ~= ServerSecurityLocation.Security.LauncherMD5.Value) or (newVal.Value == nil) or (newVal.Value == "")) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end - else - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - - if (playerApp:FindFirstChild("ClientScriptMD5")) then - if ((newVal.Name == "ClientScriptMD5")) then - if ((newVal.Value ~= ServerSecurityLocation.Security.ClientScriptMD5.Value) or (newVal.Value == nil) or (newVal.Value == "")) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end - else - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end - else - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end -end - -function InitalizeSecurityValues(Location,ClientEXEMD5,LauncherMD5,ClientScriptMD5) - local newCharApp = Instance.new("IntValue",Location) - newCharApp.Name = "Security" - local newClientMD5 = Instance.new("StringValue",newCharApp) - if (ClientEXEMD5 ~= nil) then - newClientMD5.Value = ClientEXEMD5 - else - newClientMD5.Value = "" - end - newClientMD5.Name = "ClientEXEMD5" - local newLauncherMD5 = Instance.new("StringValue",newCharApp) - if (LauncherMD5 ~= nil) then - newLauncherMD5.Value = LauncherMD5 - else - newLauncherMD5.Value = "" - end - newLauncherMD5.Name = "LauncherMD5" - local newClientScriptMD5 = Instance.new("StringValue",newCharApp) - if (ClientScriptMD5 ~= nil) then - newClientScriptMD5.Value = ClientScriptMD5 - else - newClientScriptMD5.Value = "" - end - newClientScriptMD5.Name = "ClientScriptMD5" -end - -rbxversion = version() -print("ROBLOX Client version '" .. rbxversion .. "' loaded.") - -function CSServer(Port,PlayerLimit,ClientEXEMD5,LauncherMD5,ClientScriptMD5,RemoveTeapotTurret) - Server = game:GetService("NetworkServer") - RunService = game:GetService("RunService") - Server:start(Port, 20) - RunService:run() - game.Workspace:InsertContent("rbxasset://Fonts//libraries.rbxm") - game:GetService("Players").MaxPlayers = PlayerLimit - game:GetService("Players").PlayerAdded:connect(function(Player) - if (game:GetService("Players").NumPlayers > game:GetService("Players").MaxPlayers) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Too many players on server." - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Too many players on server.") - else - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' added") - Player:LoadCharacter() - LoadSecurity(newWaitForChild(Player,"Security"),Player,game.Lighting) - if (Player.Character ~= nil) then - LoadCharacterNew(newWaitForChild(Player,"Appearance"),Player.Character,RemoveTeapotTurret) - end - end - while true do - wait(0.001) - if (Player.Character ~= nil) then - if (Player.Character.Humanoid.Health == 0) then - wait(5) - Player:LoadCharacter() - LoadCharacterNew(newWaitForChild(Player,"Appearance"),Player.Character,RemoveTeapotTurret) - elseif (Player.Character.Parent == nil) then - wait(5) - Player:LoadCharacter() -- to make sure nobody is deleted. - LoadCharacterNew(newWaitForChild(Player,"Appearance"),Player.Character,RemoveTeapotTurret) - 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() - pcall(function() game.Close:connect(function() Server:Stop() end) end) - InitalizeSecurityValues(game.Lighting,LauncherMD5,ClientEXEMD5,ClientScriptMD5) - Server.IncommingConnection:connect(IncommingConnection) -end - -function CSConnect(UserID,ServerIP,ServerPort,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID,IconType,ClientEXEMD5,LauncherMD5,ClientScriptMD5,Ticket) - local suc, err = pcall(function() - client = game:GetService("NetworkClient") - player = game:GetService("Players"):CreateLocalPlayer(UserID) - player:SetSuperSafeChat(false) - pcall(function() player:SetUnder13(false) end) - pcall(function() player:SetMembershipType(Enum.MembershipType.BuildersClub) end) - pcall(function() player:SetAccountAge(365) end) - player.CharacterAppearance=0 - pcall(function() player.Name=PlayerName or "" end) - game:GetService("Visit") - InitalizeClientAppearance(player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID) - InitalizeSecurityValues(player,LauncherMD5,ClientEXEMD5,ClientScriptMD5) - end) - - local function dieerror(errmsg) - game:SetMessage(errmsg) - wait(math.huge) - end - - if not suc then - dieerror(err) - end - - local function disconnect(peer,lostconnection) - game:SetMessage("You have lost connection to the game") - end - - local function connected(url, replicator) - replicator.Disconnection:connect(disconnect) - local marker = nil - local suc, err = pcall(function() - game:SetMessageBrickCount() - marker = replicator:SendMarker() - end) - if not suc then - dieerror(err) - end - marker.Received:connect(function() - local suc, err = pcall(function() - game:ClearMessage() - end) - if not suc then - dieerror(err) - end - end) - end - - local function rejected() - dieerror("Failed to connect to the Game. (Connection rejected)") - end - - local function failed(peer, errcode, why) - dieerror("Failed to connect to the Game. (ID="..errcode.." ["..why.."])") - end - - local suc, err = pcall(function() - game:SetMessage("Connecting to server...") - client.ConnectionAccepted:connect(connected) - client.ConnectionRejected:connect(rejected) - client.ConnectionFailed:connect(failed) - client:Connect(ServerIP,ServerPort, 0, 20) - game.GuiRoot.RightPalette.ReportAbuse:Remove() - game.GuiRoot.ChatMenuPanel:Remove() - end) - - if not suc then - local x = Instance.new("Message") - x.Text = err - x.Parent = workspace - wait(math.huge) - end -end - -function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID,IconType) - local plr = game.Players:CreateLocalPlayer(UserID) - game:GetService("RunService"):run() - game.Workspace:InsertContent("rbxasset://Fonts//libraries.rbxm") - plr.Name = PlayerName - plr:LoadCharacter() - plr.CharacterAppearance=0 - InitalizeClientAppearance(plr,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID) - LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character,false) - game:GetService("Visit") - while true do wait() - if (plr.Character.Humanoid.Health == 0) then - wait(5) - plr:LoadCharacter() - LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character,false) - end - end -end - -_G.CSServer=CSServer -_G.CSConnect=CSConnect -_G.CSSolo=CSSolo \ No newline at end of file diff --git a/clients/2008M/content/scripts/CSMPFunctions.lua b/clients/2008M/content/scripts/CSMPFunctions.lua index 136d840..34b819e 100644 --- a/clients/2008M/content/scripts/CSMPFunctions.lua +++ b/clients/2008M/content/scripts/CSMPFunctions.lua @@ -17,6 +17,24 @@ function newWaitForChild(newParent,name) end function LoadCharacterNew(playerApp,newChar,RemoveTeapotTurret) + if (playerApp==nil) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + else + if ((playerApp:GetChildren() == 0) or (playerApp:GetChildren() == nil)) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + end + end + local charparts = {[1] = newWaitForChild(newChar,"Head"),[2] = newWaitForChild(newChar,"Torso"),[3] = newWaitForChild(newChar,"Left Arm"),[4] = newWaitForChild(newChar,"Right Arm"),[5] = newWaitForChild(newChar,"Left Leg"),[6] = newWaitForChild(newChar,"Right Leg")} for _,newVal in pairs(playerApp:GetChildren()) do local customtype = newVal.CustomizationType.Value diff --git a/clients/2009E/content/scripts/CSMPFunctions.lua b/clients/2009E/content/scripts/CSMPFunctions.lua index 698ef0c..7204964 100644 --- a/clients/2009E/content/scripts/CSMPFunctions.lua +++ b/clients/2009E/content/scripts/CSMPFunctions.lua @@ -14,6 +14,24 @@ function newWaitForChild(newParent,name) end function LoadCharacterNew(playerApp,newChar,RemoveTeapotTurret) + if (playerApp==nil) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + else + if ((playerApp:GetChildren() == 0) or (playerApp:GetChildren() == nil)) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + end + end + local charparts = {[1] = newWaitForChild(newChar,"Head"),[2] = newWaitForChild(newChar,"Torso"),[3] = newWaitForChild(newChar,"Left Arm"),[4] = newWaitForChild(newChar,"Right Arm"),[5] = newWaitForChild(newChar,"Left Leg"),[6] = newWaitForChild(newChar,"Right Leg")} for _,newVal in pairs(playerApp:GetChildren()) do local customtype = newVal.CustomizationType.Value diff --git a/clients/2009L/content/fonts/libraries.rbxm b/clients/2009L/content/fonts/libraries.rbxm deleted file mode 100644 index 56601b2..0000000 --- a/clients/2009L/content/fonts/libraries.rbxm +++ /dev/null @@ -1,28 +0,0 @@ - - null - nil - - - false - - ResetCommand - function onChatted(msg, speaker) - - source = string.lower(speaker.Name) - msg = string.lower(msg) - -- Note: This one is NOT caps sensitive - - if msg == "!!!reset" then - speaker.Character.Humanoid.Health = 0 - end -end - -function onPlayerEntered(newPlayer) - newPlayer.Chatted:connect(function(msg) onChatted(msg, newPlayer) end) -end - -game.Players.ChildAdded:connect(onPlayerEntered) - true - - - diff --git a/clients/2009L/content/scripts/CSMPFunctions.lua b/clients/2009L/content/scripts/CSMPFunctions.lua deleted file mode 100644 index 0ffe996..0000000 --- a/clients/2009L/content/scripts/CSMPFunctions.lua +++ /dev/null @@ -1,545 +0,0 @@ -settings().Rendering.FrameRateManager = 2 -settings().Network.DataSendRate = 30 -settings().Network.PhysicsSendRate = 20 -settings().Network.ReceiveRate = 60 - ---function made by rbxbanland -function newWaitForChild(newParent,name) - local returnable = nil - if newParent:FindFirstChild(name) then - returnable = newParent:FindFirstChild(name) - else - repeat wait() returnable = newParent:FindFirstChild(name) until returnable ~= nil - end - return returnable -end - -function LoadCharacterNew(playerApp,newChar,RemoveTeapotTurret) - local charparts = {[1] = newWaitForChild(newChar,"Head"),[2] = newWaitForChild(newChar,"Torso"),[3] = newWaitForChild(newChar,"Left Arm"),[4] = newWaitForChild(newChar,"Right Arm"),[5] = newWaitForChild(newChar,"Left Leg"),[6] = newWaitForChild(newChar,"Right Leg")} - for _,newVal in pairs(playerApp:GetChildren()) do - local customtype = newVal.CustomizationType.Value - if (customtype == 1) then - pcall(function() - charparts[newVal.ColorIndex.Value].BrickColor = newVal.Value - end) - elseif (customtype == 2) then - pcall(function() - local newHat = game.Workspace:InsertContent("rbxasset://../../../charcustom/hats/"..newVal.Value) - if newHat[1] then - if newHat[1].className == "Hat" then - if (RemoveTeapotTurret == true) then - if (newHat[1].Name ~= "TeapotTurret.rbxm") then - newHat[1].Parent = newChar - else - newHat[1]:remove() - end - else - newHat[1].Parent = newChar - end - else - newHat[1]:remove() - end - end - end) - elseif (customtype == 3) then - pcall(function() - local newTShirt = game.Workspace:InsertContent("rbxasset://../../../charcustom/tshirts/"..newVal.Value) - if newTShirt[1] then - if newTShirt[1].className == "ShirtGraphic" then - newTShirt[1].Parent = newChar - else - newTShirt[1]:remove() - end - end - end) - elseif (customtype == 4) then - pcall(function() - local newShirt = game.Workspace:InsertContent("rbxasset://../../../charcustom/shirts/"..newVal.Value) - if newShirt[1] then - if newShirt[1].className == "Shirt" then - newShirt[1].Parent = newChar - else - newShirt[1]:remove() - end - end - end) - elseif (customtype == 5) then - pcall(function() - local newPants = game.Workspace:InsertContent("rbxasset://../../../charcustom/pants/"..newVal.Value) - if newPants[1] then - if newPants[1].className == "Pants" then - newPants[1].Parent = newChar - else - newPants[1]:remove() - end - end - end) - elseif (customtype == 6) then - pcall(function() - local newFace = game.Workspace:InsertContent("rbxasset://../../../charcustom/faces/"..newVal.Value) - if newFace[1] then - if newFace[1].className == "Decal" then - newWaitForChild(charparts[1],"face"):remove() - newFace[1].Parent = charparts[1] - newFace[1].Face = "Front" - else - newFace[1]:remove() - end - end - end) - elseif (customtype == 7) then - pcall(function() - local newPart = game.Workspace:InsertContent("rbxasset://../../../charcustom/heads/"..newVal.Value) - if newPart[1] then - if newPart[1].className == "SpecialMesh" or newPart[1].className == "CylinderMesh" or newPart[1].className == "BlockMesh" then - newWaitForChild(charparts[1],"Mesh"):remove() - newPart[1].Parent = charparts[1] - else - newPart[1]:remove() - end - end - end) - end - end -end - -function InitalizeClientAppearance(Player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID) - local newCharApp = Instance.new("IntValue",Player) - newCharApp.Name = "Appearance" - --BODY COLORS - for i=1,6,1 do - local BodyColor = Instance.new("BrickColorValue",newCharApp) - if (i == 1) then - if (HeadColorID ~= nil) then - BodyColor.Value = BrickColor.new(HeadColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "HeadColor" - elseif (i == 2) then - if (TorsoColorID ~= nil) then - BodyColor.Value = BrickColor.new(TorsoColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "TorsoColor" - elseif (i == 3) then - if (LeftArmColorID ~= nil) then - BodyColor.Value = BrickColor.new(LeftArmColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "LeftArmColor" - elseif (i == 4) then - if (RightArmColorID ~= nil) then - BodyColor.Value = BrickColor.new(RightArmColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "RightArmColor" - elseif (i == 5) then - if (LeftLegColorID ~= nil) then - BodyColor.Value = BrickColor.new(LeftLegColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "LeftLegColor" - elseif (i == 6) then - if (RightLegColorID ~= nil) then - BodyColor.Value = BrickColor.new(RightLegColorID) - else - BodyColor.Value = BrickColor.new(1) - end - BodyColor.Name = "RightLegColor" - end - local indexValue = Instance.new("NumberValue") - indexValue.Name = "ColorIndex" - indexValue.Parent = BodyColor - indexValue.Value = i - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = BodyColor - typeValue.Value = 1 - end - --HATS - for i=1,3,1 do - local newHat = Instance.new("StringValue",newCharApp) - if (i == 1) then - if (RightLegColorID ~= nil) then - newHat.Value = Hat1ID - newHat.Name = Hat1ID - else - newHat.Value = "NoHat.rbxm" - newHat.Name = "NoHat.rbxm" - end - elseif (i == 2) then - if (RightLegColorID ~= nil) then - newHat.Value = Hat2ID - newHat.Name = Hat2ID - else - newHat.Value = "NoHat.rbxm" - newHat.Name = "NoHat.rbxm" - end - elseif (i == 3) then - if (RightLegColorID ~= nil) then - newHat.Value = Hat3ID - newHat.Name = Hat3ID - else - newHat.Value = "NoHat.rbxm" - newHat.Name = "NoHat.rbxm" - end - end - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = newHat - typeValue.Value = 2 - end - --T-SHIRT - local newTShirt = Instance.new("StringValue",newCharApp) - if (TShirtID ~= nil) then - newTShirt.Value = TShirtID - newTShirt.Name = TShirtID - else - newTShirt.Value = "NoTShirt.rbxm" - newTShirt.Name = "NoTShirt.rbxm" - end - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = newTShirt - typeValue.Value = 3 - --SHIRT - local newShirt = Instance.new("StringValue",newCharApp) - if (ShirtID ~= nil) then - newShirt.Value = ShirtID - newShirt.Name = ShirtID - else - newShirt.Value = "NoShirt.rbxm" - newShirt.Name = "NoShirt.rbxm" - end - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = newShirt - typeValue.Value = 4 - --PANTS - local newPants = Instance.new("StringValue",newCharApp) - if (PantsID ~= nil) then - newPants.Value = PantsID - newPants.Name = PantsID - else - newPants.Value = "NoPants.rbxm" - newPants.Name = "NoPants.rbxm" - end - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = newPants - typeValue.Value = 5 - --FACE - local newFace = Instance.new("StringValue",newCharApp) - if (FaceID ~= nil) then - newFace.Value = FaceID - newFace.Name = FaceID - else - newFace.Value = "DefaultFace.rbxm" - newFace.Name = "DefaultFace.rbxm" - end - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = newFace - typeValue.Value = 6 - --HEADS - local newHead = Instance.new("StringValue",newCharApp) - if (HeadID ~= nil) then - newHead.Value = HeadID - newHead.Name = HeadID - else - newHead.Value = "DefaultHead.rbxm" - newHead.Name = "DefaultHead.rbxm" - end - local typeValue = Instance.new("NumberValue") - typeValue.Name = "CustomizationType" - typeValue.Parent = newHead - typeValue.Value = 7 -end - -function LoadSecurity(playerApp,Player,ServerSecurityLocation) - if (playerApp==nil) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - else - if ((playerApp:GetChildren() ~= 0) or (playerApp:GetChildren() ~= nil)) then - for _,newVal in pairs(playerApp:GetChildren()) do - if (playerApp:FindFirstChild("ClientEXEMD5")) then - if ((newVal.Name == "ClientEXEMD5")) then - if ((newVal.Value ~= ServerSecurityLocation.Security.ClientEXEMD5.Value) or (newVal.Value == nil) or (newVal.Value == "")) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end - else - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - - if (playerApp:FindFirstChild("LauncherMD5")) then - if ((newVal.Name == "LauncherMD5")) then - if ((newVal.Value ~= ServerSecurityLocation.Security.LauncherMD5.Value) or (newVal.Value == nil) or (newVal.Value == "")) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end - else - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - - if (playerApp:FindFirstChild("ClientScriptMD5")) then - if ((newVal.Name == "ClientScriptMD5")) then - if ((newVal.Value ~= ServerSecurityLocation.Security.ClientScriptMD5.Value) or (newVal.Value == nil) or (newVal.Value == "")) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end - else - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end - else - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Modified Client" - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") - end - end -end - -function InitalizeSecurityValues(Location,ClientEXEMD5,LauncherMD5,ClientScriptMD5) - local newCharApp = Instance.new("IntValue",Location) - newCharApp.Name = "Security" - local newClientMD5 = Instance.new("StringValue",newCharApp) - if (ClientEXEMD5 ~= nil) then - newClientMD5.Value = ClientEXEMD5 - else - newClientMD5.Value = "" - end - newClientMD5.Name = "ClientEXEMD5" - local newLauncherMD5 = Instance.new("StringValue",newCharApp) - if (LauncherMD5 ~= nil) then - newLauncherMD5.Value = LauncherMD5 - else - newLauncherMD5.Value = "" - end - newLauncherMD5.Name = "LauncherMD5" - local newClientScriptMD5 = Instance.new("StringValue",newCharApp) - if (ClientScriptMD5 ~= nil) then - newClientScriptMD5.Value = ClientScriptMD5 - else - newClientScriptMD5.Value = "" - end - newClientScriptMD5.Name = "ClientScriptMD5" -end - -rbxversion = version() -print("ROBLOX Client version '" .. rbxversion .. "' loaded.") - -function CSServer(Port,PlayerLimit,ClientEXEMD5,LauncherMD5,ClientScriptMD5,RemoveTeapotTurret) - 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").MaxPlayers = PlayerLimit - game:GetService("Players").PlayerAdded:connect(function(Player) - if (game:GetService("Players").NumPlayers > game:GetService("Players").MaxPlayers) then - local message = Instance.new("Message") - message.Text = "You were kicked. Reason: Too many players on server." - message.Parent = Player - wait(2) - Player:remove() - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Too many players on server.") - else - print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' added") - Player:LoadCharacter() - end - Player.CharacterAdded:connect(function(char) - LoadSecurity(newWaitForChild(Player,"Security"),Player,game.Lighting) - if (Player.Character ~= nil) then - LoadCharacterNew(newWaitForChild(Player,"Appearance"),Player.Character,RemoveTeapotTurret) - end - 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() LoadCharacterNew(newWaitForChild(Player,"Appearance"),Player.Character,RemoveTeapotTurret) 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//libraries.rbxm") - InitalizeSecurityValues(game.Lighting,LauncherMD5,ClientEXEMD5,ClientScriptMD5) - pcall(function() game.Close:connect(function() NetworkServer:Stop() end) end) - NetworkServer.IncommingConnection:connect(IncommingConnection) -end - -function CSConnect(UserID,ServerIP,ServerPort,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID,IconType,ClientEXEMD5,LauncherMD5,ClientScriptMD5,Ticket) - 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 - - InitalizeClientAppearance(Player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID) - InitalizeSecurityValues(Player,LauncherMD5,ClientEXEMD5,ClientScriptMD5) - pcall(function() Player:SetUnder13(false) end) - pcall(function() Player:SetMembershipType(Enum.MembershipType.BuildersClub) end) - pcall(function() Player:SetAccountAge(365) end) - Player:SetSuperSafeChat(false) - Player.CharacterAppearance=0 - pcall(function() Player.Name=PlayerName or "" end) - pcall(function() Visit:SetUploadUrl("") end) - game:GetService("Visit") -end - -function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID,IconType) - local plr = game.Players:CreateLocalPlayer(UserID) - game:GetService("RunService"):run() - game.Workspace:InsertContent("rbxasset://Fonts//libraries.rbxm") - plr.Name = PlayerName - plr:LoadCharacter() - plr.CharacterAppearance=0 - InitalizeClientAppearance(plr,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID) - LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character,false) - game:GetService("Visit") - while true do wait() - if (plr.Character.Humanoid.Health == 0) then - wait(5) - plr:LoadCharacter() - LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character,false) - end - end -end - -_G.CSServer=CSServer -_G.CSConnect=CSConnect -_G.CSSolo=CSSolo \ No newline at end of file diff --git a/clients/2010L/content/scripts/CSMPFunctions.lua b/clients/2010L/content/scripts/CSMPFunctions.lua index b620cb1..edfa771 100644 --- a/clients/2010L/content/scripts/CSMPFunctions.lua +++ b/clients/2010L/content/scripts/CSMPFunctions.lua @@ -16,6 +16,24 @@ function newWaitForChild(newParent,name) end function LoadCharacterNew(playerApp,newChar,RemoveTeapotTurret) + if (playerApp==nil) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + else + if ((playerApp:GetChildren() == 0) or (playerApp:GetChildren() == nil)) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + end + end + local charparts = {[1] = newWaitForChild(newChar,"Head"),[2] = newWaitForChild(newChar,"Torso"),[3] = newWaitForChild(newChar,"Left Arm"),[4] = newWaitForChild(newChar,"Right Arm"),[5] = newWaitForChild(newChar,"Left Leg"),[6] = newWaitForChild(newChar,"Right Leg")} for _,newVal in pairs(playerApp:GetChildren()) do local customtype = newVal.CustomizationType.Value diff --git a/clients/2011E/content/scripts/CSMPFunctions.lua b/clients/2011E/content/scripts/CSMPFunctions.lua index d9989a9..fb536e4 100644 --- a/clients/2011E/content/scripts/CSMPFunctions.lua +++ b/clients/2011E/content/scripts/CSMPFunctions.lua @@ -31,6 +31,24 @@ function newWaitForChild(newParent,name) end function LoadCharacterNew(playerApp,newChar,RemoveTeapotTurret) + if (playerApp==nil) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + else + if ((playerApp:GetChildren() == 0) or (playerApp:GetChildren() == nil)) then + local message = Instance.new("Message") + message.Text = "You were kicked. Reason: Modified Client" + message.Parent = Player + wait(2) + Player:remove() + print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' kicked. Reason: Modified Client") + end + end + local charparts = {[1] = newWaitForChild(newChar,"Head"),[2] = newWaitForChild(newChar,"Torso"),[3] = newWaitForChild(newChar,"Left Arm"),[4] = newWaitForChild(newChar,"Right Arm"),[5] = newWaitForChild(newChar,"Left Leg"),[6] = newWaitForChild(newChar,"Right Leg")} for _,newVal in pairs(playerApp:GetChildren()) do local customtype = newVal.CustomizationType.Value @@ -525,6 +543,7 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,Hat1ID,Hat2ID,Hat3ID,He end end pcall(function() Player:SetUnder13(false) end) + game.GuiRoot.ScoreHud:Remove() if (IconType == "BC") then Player:SetMembershipType(Enum.MembershipType.BuildersClub) elseif (IconType == "TBC") then @@ -534,8 +553,6 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,Hat1ID,Hat2ID,Hat3ID,He elseif (IconType == "NBC") then Player:SetMembershipType(Enum.MembershipType.None) end - game.GuiRoot.ScoreHud:Remove() - pcall(function() Player:SetMembershipType(Enum.MembershipType.BuildersClub) end) pcall(function() Player:SetAccountAge(365) end) Player:SetSuperSafeChat(false) Player.CharacterAppearance=0 diff --git a/shareddata/fonts/RiddlingSkull.mesh b/shareddata/fonts/RiddlingSkull.mesh new file mode 100644 index 0000000..a4fdfe1 --- /dev/null +++ b/shareddata/fonts/RiddlingSkull.mesh @@ -0,0 +1,3 @@ +version 1.00 +986 +[0.00113318,-0.27091,0.416806][-4.49128e-007,-0.985382,-0.17036][0.423027,0.162056,0][0.134999,-0.27091,0.395006][-0.0805193,-0.994264,-0.0704018][0.384664,0.162056,0][0.00113318,-0.231407,0.443991][-4.18238e-007,-0.523725,0.851887][0.423027,0.150735,0][0.00113317,0.388426,0.245271][1.51657e-007,0.958468,0.285201][0.124629,0.0669663,0][0.0226698,0.40625,0.063752][0.0173844,0.99836,0.0545404][0.142484,0.116214,0][0.00113319,0.40625,0.0668464][0,0.99845,0.0556613][0.136273,0.116756,0][0.487311,-0.140154,-0.0278449][0.919496,-0.357152,-0.164226][0.662374,0.124584,0][0.48352,-0.110251,0.168491][0.951216,-0.216041,0.220261][0.71864,0.116015,0][0.466388,-0.179971,0.153611][0.914751,-0.355768,0.191467][0.714376,0.135995,0][0.461369,-0.170056,-0.0360382][0.70643,-0.65349,-0.271859][0.660026,0.133153,0][0.487311,-0.140154,-0.0278449][0.919496,-0.357152,-0.164226][0.662374,0.124584,0][0.466388,-0.179971,0.153611][0.914751,-0.355768,0.191467][0.714376,0.135995,0][0.487311,-0.140154,-0.0278449][0.919496,-0.357152,-0.164226][0.662374,0.124584,0][0.494101,-0.110251,-0.0196517][0.980482,-0.180022,-0.0790386][0.664722,0.116015,0][0.48352,-0.110251,0.168491][0.951216,-0.216041,0.220261][0.71864,0.116015,0][0.494101,-0.110251,-0.0196517][0.980482,-0.180022,-0.0790386][0.664722,0.116015,0][0.487311,-0.140154,-0.0278449][0.919496,-0.357152,-0.164226][0.662374,0.124584,0][0.469763,-0.157819,-0.0638324][0.963167,-0.262884,-0.0565703][0.652061,0.129647,0][0.441315,-0.154088,-0.315017][0.944647,0.0294692,-0.326762][0.580077,0.128577,0][0.468286,-0.179663,-0.144581][0.821385,-0.568666,0.0440982][0.62892,0.135907,0][0.444352,-0.210538,-0.286361][0.647408,-0.742014,-0.174007][0.588289,0.144755,0][0.00113325,0.275856,-0.447723][4.86438e-007,0.57469,-0.818371][0.169854,0.260345,0][0.00113324,0.344422,-0.376793][5.84935e-007,0.825141,-0.564926][0.165225,0.240552,0][0.167354,0.334571,-0.368584][0.184144,0.773178,-0.606866][0.211073,0.227414,0][0.134519,0.257407,-0.437539][0.198608,0.476941,-0.856202][0.168099,0.534796,0][0.00113325,0.275856,-0.447723][4.86438e-007,0.57469,-0.818371][0.129874,0.529509,0][0.167354,0.334571,-0.368584][0.184144,0.773178,-0.606866][0.177509,0.512682,0][0.22712,0.228101,-0.427593][0.277279,0.409337,-0.869229][0.194637,0.543194,0][0.134519,0.257407,-0.437539][0.198608,0.476941,-0.856202][0.168099,0.534796,0][0.167354,0.334571,-0.368584][0.184144,0.773178,-0.606866][0.177509,0.512682,0][0.22712,0.228101,-0.427593][0.277279,0.409337,-0.869229][0.194637,0.543194,0][0.167354,0.334571,-0.368584][0.184144,0.773178,-0.606866][0.177509,0.512682,0][0.279658,0.300339,-0.358637][0.408538,0.680051,-0.608792][0.209693,0.522492,0][0.167354,0.334571,-0.368584][0.184144,0.773178,-0.606866][0.211073,0.227414,0][0.00113324,0.344422,-0.376793][5.84935e-007,0.825141,-0.564926][0.165225,0.240552,0][0.00113323,0.384615,-0.289312][3.44836e-007,0.965611,-0.25999][0.159516,0.216141,0][0.167354,0.334571,-0.368584][0.184144,0.773178,-0.606866][0.211073,0.227414,0][0.00113323,0.384615,-0.289312][3.44836e-007,0.965611,-0.25999][0.159516,0.216141,0][0.199438,0.367548,-0.288561][0.231637,0.932835,-0.275978][0.214803,0.20299,0][0.279658,0.300339,-0.358637][0.408538,0.680051,-0.608792][0.241762,0.21731,0][0.167354,0.334571,-0.368584][0.184144,0.773178,-0.606866][0.211073,0.227414,0][0.199438,0.367548,-0.288561][0.231637,0.932835,-0.275978][0.214803,0.20299,0][0.279658,0.300339,-0.358637][0.408538,0.680051,-0.608792][0.241762,0.21731,0][0.199438,0.367548,-0.288561][0.231637,0.932835,-0.275978][0.214803,0.20299,0][0.317419,0.315115,-0.288041][0.511441,0.804394,-0.302287][0.247692,0.195145,0][0.437357,-0.109951,-0.287514][0.930837,0.0954772,-0.352741][0.587959,0.115929,0][0.469763,-0.157819,-0.0638324][0.963167,-0.262884,-0.0565703][0.652061,0.129647,0][0.441315,-0.154088,-0.315017][0.944647,0.0294692,-0.326762][0.580077,0.128577,0][0.437357,-0.109951,-0.287514][0.930837,0.0954772,-0.352741][0.587959,0.115929,0][0.494101,-0.110251,-0.0196517][0.980482,-0.180022,-0.0790386][0.664722,0.116015,0][0.469763,-0.157819,-0.0638324][0.963167,-0.262884,-0.0565703][0.652061,0.129647,0][0.113764,-0.188375,-0.525244][0.352285,0.311878,-0.882399][0.756645,0.614446,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.724367,0.641888,0][0.00113328,-0.131148,-0.550617][-0.386958,0.593677,-0.705557][0.724367,0.598047,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.764877,0.641103,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.724367,0.641888,0][0.113764,-0.188375,-0.525244][0.352285,0.311878,-0.882399][0.756645,0.614446,0][0.113764,-0.188375,-0.525244][0.352285,0.311878,-0.882399][0.567602,0.878614,0][0.00113328,-0.131148,-0.550617][-0.386958,0.593677,-0.705557][0.603854,0.885644,0][0.0387435,-0.131148,-0.518954][0.172934,0.813495,-0.555265][0.591226,0.891892,0][0.0991636,-0.124764,-0.47623][0.45807,0.123059,-0.880357][0.843603,0.616623,0][0.0387435,-0.131148,-0.518954][0.172934,0.813495,-0.555265][0.82253,0.619615,0][0.066104,-0.0996838,-0.52411][-0.0391138,-0.016866,-0.999092][0.827328,0.608572,0][0.113764,-0.188375,-0.525244][0.352285,0.311878,-0.882399][0.567602,0.878614,0][0.0387435,-0.131148,-0.518954][0.172934,0.813495,-0.555265][0.591226,0.891892,0][0.0991636,-0.124764,-0.47623][0.45807,0.123059,-0.880357][0.572343,0.901376,0][0.113764,-0.188375,-0.525244][0.352285,0.311878,-0.882399][0.567602,0.878614,0][0.0991636,-0.124764,-0.47623][0.45807,0.123059,-0.880357][0.572343,0.901376,0][0.232189,-0.18533,-0.465614][0.543393,0.482944,-0.686651][0.532101,0.890225,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.764877,0.641103,0][0.113764,-0.188375,-0.525244][0.352285,0.311878,-0.882399][0.756645,0.614446,0][0.232189,-0.18533,-0.465614][0.543393,0.482944,-0.686651][0.790583,0.613574,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.799375,0.639535,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.764877,0.641103,0][0.232189,-0.18533,-0.465614][0.543393,0.482944,-0.686651][0.790583,0.613574,0][0.0619999,-0.0394907,-0.528214][-0.0850126,-0.0574177,-0.994724][0.926554,0.474152,0][0.0599188,-0.00550007,-0.506831][0.851629,0.312168,-0.421045][0.936736,0.479517,0][0.0835622,-0.0409651,-0.497374][0.736252,0.37133,-0.565727][0.926809,0.482997,0][0.066104,-0.0996838,-0.52411][-0.0391138,-0.016866,-0.999092][0.909445,0.476645,0][0.0619999,-0.0394907,-0.528214][-0.0850126,-0.0574177,-0.994724][0.926554,0.474152,0][0.0835622,-0.0409651,-0.497374][0.736252,0.37133,-0.565727][0.926809,0.482997,0][0.0866237,-0.0814441,-0.49447][0.608651,-0.0616042,-0.791043][0.915306,0.484714,0][0.066104,-0.0996838,-0.52411][-0.0391138,-0.016866,-0.999092][0.909445,0.476645,0][0.0835622,-0.0409651,-0.497374][0.736252,0.37133,-0.565727][0.926809,0.482997,0][0.0991636,-0.124764,-0.47623][0.45807,0.123059,-0.880357][0.903328,0.490876,0][0.066104,-0.0996838,-0.52411][-0.0391138,-0.016866,-0.999092][0.909445,0.476645,0][0.0866237,-0.0814441,-0.49447][0.608651,-0.0616042,-0.791043][0.915306,0.484714,0][0.0209592,0.0453269,-0.548734][0.484326,-0.351378,-0.801225][0.426998,0.650816,0][0.00113327,0.050799,-0.559744][9.69897e-007,-0.220742,-0.975332][0.433645,0.650103,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.43408,0.682338,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.129874,0.56813,0][0.00113326,0.202561,-0.483188][6.10804e-007,0.289054,-0.957313][0.129874,0.550513,0][0.0934732,0.191069,-0.470053][0.189719,0.174887,-0.966137][0.156336,0.553807,0][0.0741048,0.129267,-0.469002][0.471007,-0.158364,-0.867798][0.150786,0.571518,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.129874,0.56813,0][0.0934732,0.191069,-0.470053][0.189719,0.174887,-0.966137][0.156336,0.553807,0][0.0264313,0.0685833,-0.509061][0.707702,0.325277,-0.627178][0.137123,0.588908,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.129874,0.56813,0][0.0741048,0.129267,-0.469002][0.471007,-0.158364,-0.867798][0.150786,0.571518,0][0.0209592,0.0453269,-0.548734][0.484326,-0.351378,-0.801225][0.95034,0.466429,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.978932,0.480357,0][0.0264313,0.0685833,-0.509061][0.707702,0.325277,-0.627178][0.957855,0.477256,0][0.0619999,-0.0394907,-0.528214][-0.0850126,-0.0574177,-0.994724][0.926554,0.474152,0][0.0209592,0.0453269,-0.548734][0.484326,-0.351378,-0.801225][0.95034,0.466429,0][0.0264313,0.0685833,-0.509061][0.707702,0.325277,-0.627178][0.957855,0.477256,0][0.0599188,-0.00550007,-0.506831][0.851629,0.312168,-0.421045][0.14672,0.610139,0][0.0264313,0.0685833,-0.509061][0.707702,0.325277,-0.627178][0.137123,0.588908,0][0.0741048,0.129267,-0.469002][0.471007,-0.158364,-0.867798][0.150786,0.571518,0][0.0619999,-0.0394907,-0.528214][-0.0850126,-0.0574177,-0.994724][0.926554,0.474152,0][0.0264313,0.0685833,-0.509061][0.707702,0.325277,-0.627178][0.957855,0.477256,0][0.0599188,-0.00550007,-0.506831][0.851629,0.312168,-0.421045][0.936736,0.479517,0][0.168678,0.150546,-0.46217][0.200675,-0.376492,-0.904424][0.177888,0.56542,0][0.0741048,0.129267,-0.469002][0.471007,-0.158364,-0.867798][0.150786,0.571518,0][0.0934732,0.191069,-0.470053][0.189719,0.174887,-0.966137][0.156336,0.553807,0][0.00113326,0.202561,-0.483188][6.10804e-007,0.289054,-0.957313][0.129874,0.550513,0][0.00113325,0.275856,-0.447723][4.86438e-007,0.57469,-0.818371][0.129874,0.529509,0][0.134519,0.257407,-0.437539][0.198608,0.476941,-0.856202][0.168099,0.534796,0][0.0934732,0.191069,-0.470053][0.189719,0.174887,-0.966137][0.156336,0.553807,0][0.00113326,0.202561,-0.483188][6.10804e-007,0.289054,-0.957313][0.129874,0.550513,0][0.134519,0.257407,-0.437539][0.198608,0.476941,-0.856202][0.168099,0.534796,0][0.168678,0.150546,-0.46217][0.200675,-0.376492,-0.904424][0.177888,0.56542,0][0.0934732,0.191069,-0.470053][0.189719,0.174887,-0.966137][0.156336,0.553807,0][0.134519,0.257407,-0.437539][0.198608,0.476941,-0.856202][0.168099,0.534796,0][0.168678,0.150546,-0.46217][0.200675,-0.376492,-0.904424][0.177888,0.56542,0][0.134519,0.257407,-0.437539][0.198608,0.476941,-0.856202][0.168099,0.534796,0][0.22712,0.228101,-0.427593][0.277279,0.409337,-0.869229][0.194637,0.543194,0][0.289259,0.133996,-0.436162][0.246899,-0.308097,-0.918758][0.212444,0.570162,0][0.168678,0.150546,-0.46217][0.200675,-0.376492,-0.904424][0.177888,0.56542,0][0.22712,0.228101,-0.427593][0.277279,0.409337,-0.869229][0.194637,0.543194,0][0.289259,0.133996,-0.436162][0.246899,-0.308097,-0.918758][0.212444,0.570162,0][0.22712,0.228101,-0.427593][0.277279,0.409337,-0.869229][0.194637,0.543194,0][0.312582,0.186809,-0.410274][0.497802,0.306801,-0.811213][0.219128,0.555027,0][0.354794,0.13074,-0.388703][0.599869,0.0828496,-0.795798][0.231225,0.571095,0][0.289259,0.133996,-0.436162][0.246899,-0.308097,-0.918758][0.212444,0.570162,0][0.312582,0.186809,-0.410274][0.497802,0.306801,-0.811213][0.219128,0.555027,0][0.312582,0.186809,-0.410274][0.497802,0.306801,-0.811213][0.219128,0.555027,0][0.22712,0.228101,-0.427593][0.277279,0.409337,-0.869229][0.194637,0.543194,0][0.279658,0.300339,-0.358637][0.408538,0.680051,-0.608792][0.209693,0.522492,0][0.358552,0.23442,-0.352812][0.608508,0.469837,-0.639508][0.338827,0.728997,0][0.279658,0.300339,-0.358637][0.408538,0.680051,-0.608792][0.364882,0.742814,0][0.317419,0.315115,-0.288041][0.511441,0.804394,-0.302287][0.348712,0.7585,0][0.312582,0.186809,-0.410274][0.497802,0.306801,-0.811213][0.219128,0.555027,0][0.279658,0.300339,-0.358637][0.408538,0.680051,-0.608792][0.209693,0.522492,0][0.358552,0.23442,-0.352812][0.608508,0.469837,-0.639508][0.232302,0.541383,0][0.354794,0.13074,-0.388703][0.599869,0.0828496,-0.795798][0.231225,0.571095,0][0.312582,0.186809,-0.410274][0.497802,0.306801,-0.811213][0.219128,0.555027,0][0.358552,0.23442,-0.352812][0.608508,0.469837,-0.639508][0.232302,0.541383,0][0.358552,0.23442,-0.352812][0.608508,0.469837,-0.639508][0.338827,0.728997,0][0.317419,0.315115,-0.288041][0.511441,0.804394,-0.302287][0.348712,0.7585,0][0.40288,0.244271,-0.288782][0.718405,0.583355,-0.378935][0.321367,0.742445,0][0.395838,0.160292,-0.349301][0.720851,0.167388,-0.672574][0.242987,0.562626,0][0.354794,0.13074,-0.388703][0.599869,0.0828496,-0.795798][0.231225,0.571095,0][0.358552,0.23442,-0.352812][0.608508,0.469837,-0.639508][0.232302,0.541383,0][0.383522,0.0787553,-0.370919][0.735257,-0.0608337,-0.675053][0.239458,0.585993,0][0.354794,0.13074,-0.388703][0.599869,0.0828496,-0.795798][0.231225,0.571095,0][0.395838,0.160292,-0.349301][0.720851,0.167388,-0.672574][0.242987,0.562626,0][0.395838,0.160292,-0.349301][0.720851,0.167388,-0.672574][0.322463,0.712766,0][0.358552,0.23442,-0.352812][0.608508,0.469837,-0.639508][0.338827,0.728997,0][0.40288,0.244271,-0.288782][0.718405,0.583355,-0.378935][0.321367,0.742445,0][0.398866,0.0946419,-0.33811][0.822714,-0.0544179,-0.565844][0.246018,0.342184,0][0.383522,0.0787553,-0.370919][0.735257,-0.0608337,-0.675053][0.237899,0.348758,0][0.395838,0.160292,-0.349301][0.720851,0.167388,-0.672574][0.23861,0.324594,0][0.44345,0.173427,-0.288554][0.867724,0.24743,-0.431084][0.304889,0.726409,0][0.395838,0.160292,-0.349301][0.720851,0.167388,-0.672574][0.322463,0.712766,0][0.40288,0.244271,-0.288782][0.718405,0.583355,-0.378935][0.321367,0.742445,0][0.398866,0.0946419,-0.33811][0.822714,-0.0544179,-0.565844][0.246018,0.342184,0][0.395838,0.160292,-0.349301][0.720851,0.167388,-0.672574][0.23861,0.324594,0][0.44345,0.173427,-0.288554][0.867724,0.24743,-0.431084][0.254704,0.316965,0][0.449075,0.102582,-0.28764][0.884115,0.0224029,-0.466733][0.296878,0.710377,0][0.398866,0.0946419,-0.33811][0.822714,-0.0544179,-0.565844][0.314358,0.699686,0][0.44345,0.173427,-0.288554][0.867724,0.24743,-0.431084][0.304889,0.726409,0][0.381839,-0.1067,-0.345883][0.879212,0.422151,-0.220849][0.571232,0.114997,0][0.44688,-0.0391064,-0.287685][0.8756,-0.0448736,-0.480947][0.58791,0.095626,0][0.437357,-0.109951,-0.287514][0.930837,0.0954772,-0.352741][0.587959,0.115929,0][0.387626,-0.044367,-0.346295][0.899501,0.00153052,-0.436915][0.305259,0.666433,0][0.44688,-0.0391064,-0.287685][0.8756,-0.0448736,-0.480947][0.284363,0.677944,0][0.381839,-0.1067,-0.345883][0.879212,0.422151,-0.220849][0.300881,0.652223,0][0.350732,0.00159295,-0.386511][-0.241433,0.112282,-0.9639][0.230061,0.608106,0][0.383522,-0.0881438,-0.377759][0.797053,0.167276,-0.58028][0.239458,0.633823,0][0.327089,-0.0922579,-0.401419][0.104939,0.586263,-0.803295][0.223285,0.635002,0][0.383522,0.011722,-0.364079][0.848226,0.0207767,-0.529227][0.244182,0.367017,0][0.387626,-0.044367,-0.346295][0.899501,0.00153052,-0.436915][0.252805,0.381508,0][0.383522,-0.0881438,-0.377759][0.797053,0.167276,-0.58028][0.246882,0.395777,0][0.350732,0.00159295,-0.386511][-0.241433,0.112282,-0.9639][0.230061,0.608106,0][0.383522,0.011722,-0.364079][0.848226,0.0207767,-0.529227][0.239458,0.605203,0][0.383522,-0.0881438,-0.377759][0.797053,0.167276,-0.58028][0.239458,0.633823,0][0.387626,0.0199302,-0.338087][0.86761,-0.0190962,-0.496879][0.429318,0.885294,0][0.44688,-0.0391064,-0.287685][0.8756,-0.0448736,-0.480947][0.4124,0.902275,0][0.387626,-0.044367,-0.346295][0.899501,0.00153052,-0.436915][0.410892,0.885294,0][0.383522,0.011722,-0.364079][0.848226,0.0207767,-0.529227][0.244182,0.367017,0][0.387626,0.0199302,-0.338087][0.86761,-0.0190962,-0.496879][0.2509,0.36303,0][0.387626,-0.044367,-0.346295][0.899501,0.00153052,-0.436915][0.252805,0.381508,0][0.387626,0.0199302,-0.338087][0.86761,-0.0190962,-0.496879][0.429318,0.885294,0][0.44688,0.031738,-0.287685][0.865065,-0.0255697,-0.501007][0.432702,0.902275,0][0.44688,-0.0391064,-0.287685][0.8756,-0.0448736,-0.480947][0.4124,0.902275,0][0.346003,0.0701586,-0.388875][-0.0102186,-0.342404,-0.939497][0.228706,0.588457,0][0.383522,0.011722,-0.364079][0.848226,0.0207767,-0.529227][0.239458,0.605203,0][0.350732,0.00159295,-0.386511][-0.241433,0.112282,-0.9639][0.230061,0.608106,0][0.383522,0.0787553,-0.370919][0.735257,-0.0608337,-0.675053][0.237899,0.348758,0][0.387626,0.0199302,-0.338087][0.86761,-0.0190962,-0.496879][0.2509,0.36303,0][0.383522,0.011722,-0.364079][0.848226,0.0207767,-0.529227][0.244182,0.367017,0][0.346003,0.0701586,-0.388875][-0.0102186,-0.342404,-0.939497][0.228706,0.588457,0][0.383522,0.0787553,-0.370919][0.735257,-0.0608337,-0.675053][0.239458,0.585993,0][0.383522,0.011722,-0.364079][0.848226,0.0207767,-0.529227][0.239458,0.605203,0][0.398866,0.0946419,-0.33811][0.822714,-0.0544179,-0.565844][0.450729,0.888515,0][0.44688,0.031738,-0.287685][0.865065,-0.0255697,-0.501007][0.432702,0.902275,0][0.387626,0.0199302,-0.338087][0.86761,-0.0190962,-0.496879][0.429318,0.885294,0][0.383522,0.0787553,-0.370919][0.735257,-0.0608337,-0.675053][0.237899,0.348758,0][0.398866,0.0946419,-0.33811][0.822714,-0.0544179,-0.565844][0.246018,0.342184,0][0.387626,0.0199302,-0.338087][0.86761,-0.0190962,-0.496879][0.2509,0.36303,0][0.398866,0.0946419,-0.33811][0.822714,-0.0544179,-0.565844][0.573459,0.0572967,0][0.449075,0.102582,-0.28764][0.884115,0.0224029,-0.466733][0.587923,0.0550211,0][0.44688,0.031738,-0.287685][0.865065,-0.0255697,-0.501007][0.58791,0.0753236,0][0.346003,0.0701586,-0.388875][-0.0102186,-0.342404,-0.939497][0.228706,0.588457,0][0.289259,0.133996,-0.436162][0.246899,-0.308097,-0.918758][0.212444,0.570162,0][0.354794,0.13074,-0.388703][0.599869,0.0828496,-0.795798][0.231225,0.571095,0][0.383522,0.0787553,-0.370919][0.735257,-0.0608337,-0.675053][0.239458,0.585993,0][0.346003,0.0701586,-0.388875][-0.0102186,-0.342404,-0.939497][0.228706,0.588457,0][0.354794,0.13074,-0.388703][0.599869,0.0828496,-0.795798][0.231225,0.571095,0][0.383522,-0.0881438,-0.377759][0.797053,0.167276,-0.58028][0.397754,0.678354,0][0.381839,-0.1067,-0.345883][0.879212,0.422151,-0.220849][0.404047,0.669848,0][0.419426,-0.134935,-0.36153][0.767353,0.180297,-0.615355][0.415283,0.67853,0][0.335107,-0.124092,-0.409855][0.414242,-0.0134426,-0.910068][0.225583,0.644125,0][0.383522,-0.0881438,-0.377759][0.797053,0.167276,-0.58028][0.239458,0.633823,0][0.419426,-0.134935,-0.36153][0.767353,0.180297,-0.615355][0.249747,0.647232,0][0.327089,-0.0922579,-0.401419][0.104939,0.586263,-0.803295][0.223285,0.635002,0][0.383522,-0.0881438,-0.377759][0.797053,0.167276,-0.58028][0.239458,0.633823,0][0.335107,-0.124092,-0.409855][0.414242,-0.0134426,-0.910068][0.225583,0.644125,0][0.280421,-0.116784,-0.437471][0.335163,-0.149884,-0.930162][0.209911,0.64203,0][0.327089,-0.0922579,-0.401419][0.104939,0.586263,-0.803295][0.223285,0.635002,0][0.335107,-0.124092,-0.409855][0.414242,-0.0134426,-0.910068][0.225583,0.644125,0][0.301081,-0.100073,-0.427427][0.643581,0.252906,-0.722386][0.869791,0.770073,0][0.327089,-0.0922579,-0.401419][0.104939,0.586263,-0.803295][0.859356,0.767385,0][0.280421,-0.116784,-0.437471][0.335163,-0.149884,-0.930162][0.87765,0.767951,0][0.383522,-0.0881438,-0.377759][0.797053,0.167276,-0.58028][0.246882,0.395777,0][0.387626,-0.044367,-0.346295][0.899501,0.00153052,-0.436915][0.252805,0.381508,0][0.381839,-0.1067,-0.345883][0.879212,0.422151,-0.220849][0.256988,0.398875,0][0.0866237,-0.0814441,-0.49447][0.608651,-0.0616042,-0.791043][0.154373,0.631903,0][0.0835622,-0.0409651,-0.497374][0.736252,0.37133,-0.565727][0.153496,0.620302,0][0.301081,-0.100073,-0.427427][0.643581,0.252906,-0.722386][0.215832,0.637242,0][0.280421,-0.116784,-0.437471][0.335163,-0.149884,-0.930162][0.209911,0.64203,0][0.0866237,-0.0814441,-0.49447][0.608651,-0.0616042,-0.791043][0.154373,0.631903,0][0.301081,-0.100073,-0.427427][0.643581,0.252906,-0.722386][0.215832,0.637242,0][0.0991636,-0.124764,-0.47623][0.45807,0.123059,-0.880357][0.157967,0.644317,0][0.0866237,-0.0814441,-0.49447][0.608651,-0.0616042,-0.791043][0.154373,0.631903,0][0.280421,-0.116784,-0.437471][0.335163,-0.149884,-0.930162][0.209911,0.64203,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.217425,0.662939,0][0.0991636,-0.124764,-0.47623][0.45807,0.123059,-0.880357][0.157967,0.644317,0][0.280421,-0.116784,-0.437471][0.335163,-0.149884,-0.930162][0.209911,0.64203,0][0.232189,-0.18533,-0.465614][0.543393,0.482944,-0.686651][0.532101,0.890225,0][0.0991636,-0.124764,-0.47623][0.45807,0.123059,-0.880357][0.572343,0.901376,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.505662,0.904,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.217425,0.662939,0][0.280421,-0.116784,-0.437471][0.335163,-0.149884,-0.930162][0.209911,0.64203,0][0.335107,-0.124092,-0.409855][0.414242,-0.0134426,-0.910068][0.225583,0.644125,0][0.358856,-0.196289,-0.382306][0.240678,-0.741179,-0.62668][0.232389,0.664815,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.217425,0.662939,0][0.335107,-0.124092,-0.409855][0.414242,-0.0134426,-0.910068][0.225583,0.644125,0][0.358856,-0.196289,-0.382306][0.240678,-0.741179,-0.62668][0.232389,0.664815,0][0.335107,-0.124092,-0.409855][0.414242,-0.0134426,-0.910068][0.225583,0.644125,0][0.419426,-0.134935,-0.36153][0.767353,0.180297,-0.615355][0.249747,0.647232,0][0.444352,-0.210538,-0.286361][0.647408,-0.742014,-0.174007][0.955154,0.622212,0][0.358856,-0.196289,-0.382306][0.240678,-0.741179,-0.62668][0.918623,0.61672,0][0.419426,-0.134935,-0.36153][0.767353,0.180297,-0.615355][0.93522,0.598047,0][0.419426,-0.134935,-0.36153][0.767353,0.180297,-0.615355][0.290925,0.643188,0][0.381839,-0.1067,-0.345883][0.879212,0.422151,-0.220849][0.300881,0.652223,0][0.437357,-0.109951,-0.287514][0.930837,0.0954772,-0.352741][0.280143,0.661734,0][0.441315,-0.154088,-0.315017][0.944647,0.0294692,-0.326762][0.580077,0.128577,0][0.419426,-0.134935,-0.36153][0.767353,0.180297,-0.615355][0.566747,0.123089,0][0.437357,-0.109951,-0.287514][0.930837,0.0954772,-0.352741][0.587959,0.115929,0][0.444352,-0.210538,-0.286361][0.647408,-0.742014,-0.174007][0.588289,0.144755,0][0.419426,-0.134935,-0.36153][0.767353,0.180297,-0.615355][0.566747,0.123089,0][0.441315,-0.154088,-0.315017][0.944647,0.0294692,-0.326762][0.580077,0.128577,0][0.232189,-0.18533,-0.465614][0.543393,0.482944,-0.686651][0.532101,0.890225,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.49058,0.893447,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.514921,0.874886,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.520627,0.162056,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.542974,0.130772,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.543592,0.15668,0][0.232189,-0.18533,-0.465614][0.543393,0.482944,-0.686651][0.0987932,0.599471,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.0815228,0.612064,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.0622231,0.598505,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.520627,0.162056,0][0.370005,-0.19225,-0.317353][0.275876,-0.955365,-0.105688][0.52219,0.140549,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.542974,0.130772,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.542974,0.130772,0][0.379809,-0.19334,-0.243283][-0.483356,-0.439256,0.757246][0.523334,0.119351,0][0.391588,-0.263381,-0.228135][0.390944,-0.507866,0.767617][0.543561,0.1158,0][0.370005,-0.19225,-0.317353][0.275876,-0.955365,-0.105688][0.52219,0.140549,0][0.379809,-0.19334,-0.243283][-0.483356,-0.439256,0.757246][0.523334,0.119351,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.542974,0.130772,0][0.422393,-0.210538,-0.286361][-0.120884,-0.991221,0.0535599][0.530449,0.933076,0][0.379809,-0.19334,-0.243283][-0.483356,-0.439256,0.757246][0.537932,0.94874,0][0.370005,-0.19225,-0.317353][0.275876,-0.955365,-0.105688][0.517008,0.944194,0][0.422393,-0.210538,-0.286361][-0.120884,-0.991221,0.0535599][0.530449,0.933076,0][0.370005,-0.19225,-0.317353][0.275876,-0.955365,-0.105688][0.517008,0.944194,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.49058,0.95398,0][0.468286,-0.169981,-0.0677553][0.685122,-0.720888,0.104535][0.593849,0.94192,0][0.45207,-0.170113,-0.0406283][-0.761122,-0.630538,-0.152035][0.599589,0.948926,0][0.446327,-0.169981,-0.0677553][-0.736917,-0.665962,0.115969][0.591717,0.947841,0][0.468286,-0.169981,-0.0677553][0.685122,-0.720888,0.104535][0.593849,0.94192,0][0.461369,-0.170056,-0.0360382][0.70643,-0.65349,-0.271859][0.601729,0.946864,0][0.45207,-0.170113,-0.0406283][-0.761122,-0.630538,-0.152035][0.599589,0.948926,0][0.462666,-0.181209,-0.0293555][0.792094,-0.35816,-0.494275][0.335989,0.704366,0][0.451911,-0.181451,-0.0298284][-0.662541,-0.253588,-0.704792][0.334993,0.701448,0][0.45207,-0.170113,-0.0406283][-0.761122,-0.630538,-0.152035][0.338104,0.700512,0][0.462666,-0.181209,-0.0293555][0.792094,-0.35816,-0.494275][0.335989,0.704366,0][0.45207,-0.170113,-0.0406283][-0.761122,-0.630538,-0.152035][0.338104,0.700512,0][0.461369,-0.170056,-0.0360382][0.70643,-0.65349,-0.271859][0.338924,0.703048,0][0.462666,-0.181209,-0.0293555][0.792094,-0.35816,-0.494275][0.335989,0.704366,0][0.436158,-0.223385,-0.0201752][-0.364067,-0.688226,-0.627535][0.322174,0.700768,0][0.451911,-0.181451,-0.0298284][-0.662541,-0.253588,-0.704792][0.334993,0.701448,0][0.436158,-0.223385,-0.0201752][-0.364067,-0.688226,-0.627535][0.863401,0.132747,0][0.414429,-0.27091,0.115575][-0.186064,-0.931443,-0.31272][0.825034,0.14781,0][0.451911,-0.181451,-0.0298284][-0.662541,-0.253588,-0.704792][0.865717,0.120635,0][0.451911,-0.181451,-0.0298284][-0.662541,-0.253588,-0.704792][0.865717,0.120635,0][0.414429,-0.27091,0.115575][-0.186064,-0.931443,-0.31272][0.825034,0.14781,0][0.414429,0.206463,0.115575][-0.84364,-0.382331,-0.376954][0.819924,0.0111011,0][0.451911,0.203883,-0.0298283][-0.913319,-0.398079,-0.0859157][0.861592,0.0102835,0][0.451911,-0.181451,-0.0298284][-0.662541,-0.253588,-0.704792][0.865717,0.120635,0][0.414429,0.206463,0.115575][-0.84364,-0.382331,-0.376954][0.819924,0.0111011,0][0.414429,0.206463,0.115575][-0.84364,-0.382331,-0.376954][0.926829,0.249447,0][0.255662,-0.27091,0.333087][-0.203023,-0.94715,-0.248373][0.790024,0.172274,0][0.255662,0.213052,0.333087][-0.564754,-0.343237,-0.750495][0.928717,0.172274,0][0.414429,0.206463,0.115575][-0.84364,-0.382331,-0.376954][0.926829,0.249447,0][0.35251,-0.27091,0.237826][-0.20314,-0.956436,-0.209676][0.790024,0.210688,0][0.255662,-0.27091,0.333087][-0.203023,-0.94715,-0.248373][0.790024,0.172274,0][0.414429,0.206463,0.115575][-0.84364,-0.382331,-0.376954][0.819924,0.0111011,0][0.414429,-0.27091,0.115575][-0.186064,-0.931443,-0.31272][0.825034,0.14781,0][0.35251,-0.27091,0.237826][-0.20314,-0.956436,-0.209676][0.790024,0.149119,0][0.00113318,-0.27091,0.416806][-4.49128e-007,-0.985382,-0.17036][0.280143,0.539372,0][0.0011332,0.217128,0.416806][0,-0.323092,-0.946368][0.420004,0.539372,0][0.255662,0.213052,0.333087][-0.564754,-0.343237,-0.750495][0.418836,0.612314,0][0.134999,-0.27091,0.395006][-0.0805193,-0.994264,-0.0704018][0.280143,0.577735,0][0.00113318,-0.27091,0.416806][-4.49128e-007,-0.985382,-0.17036][0.280143,0.539372,0][0.255662,0.213052,0.333087][-0.564754,-0.343237,-0.750495][0.418836,0.612314,0][0.255662,-0.27091,0.333087][-0.203023,-0.94715,-0.248373][0.280143,0.612314,0][0.134999,-0.27091,0.395006][-0.0805193,-0.994264,-0.0704018][0.280143,0.577735,0][0.255662,0.213052,0.333087][-0.564754,-0.343237,-0.750495][0.418836,0.612314,0][0.0011332,0.217128,0.416806][0,-0.323092,-0.946368][0.420004,0.539372,0][0.00113317,0.355666,0.307347][-1.4473e-007,-0.841096,-0.540885][0.459706,0.539372,0][0.183233,0.352687,0.234649][-0.350186,-0.856511,-0.379154][0.458852,0.591558,0][0.255662,0.213052,0.333087][-0.564754,-0.343237,-0.750495][0.418836,0.612314,0][0.0011332,0.217128,0.416806][0,-0.323092,-0.946368][0.420004,0.539372,0][0.183233,0.352687,0.234649][-0.350186,-0.856511,-0.379154][0.458852,0.591558,0][0.294263,0.33486,0.0681681][-0.488533,-0.863297,-0.126701][0.963625,0.240118,0][0.255662,0.213052,0.333087][-0.564754,-0.343237,-0.750495][0.928717,0.172274,0][0.183233,0.352687,0.234649][-0.350186,-0.856511,-0.379154][0.968733,0.182822,0][0.294263,0.33486,0.0681681][-0.488533,-0.863297,-0.126701][0.963625,0.240118,0][0.414429,0.206463,0.115575][-0.84364,-0.382331,-0.376954][0.926829,0.249447,0][0.255662,0.213052,0.333087][-0.564754,-0.343237,-0.750495][0.928717,0.172274,0][0.303228,0.329981,-0.0298283][-0.445341,-0.895264,-0.0131706][0.204688,0.437226,0][0.451911,0.203883,-0.0298283][-0.913319,-0.398079,-0.0859157][0.240439,0.460408,0][0.414429,0.206463,0.115575][-0.84364,-0.382331,-0.376954][0.208756,0.489527,0][0.303228,0.329981,-0.0298283][-0.445341,-0.895264,-0.0131706][0.657522,0.243151,0][0.414429,0.206463,0.115575][-0.84364,-0.382331,-0.376954][0.703123,0.199271,0][0.294263,0.33486,0.0681681][-0.488533,-0.863297,-0.126701][0.68528,0.248322,0][0.0599188,-0.00550007,-0.506831][0.851629,0.312168,-0.421045][0.936736,0.479517,0][0.077412,0.123414,-0.458419][0.287331,-0.765149,0.576183][0.974633,0.490524,0][0.0652102,-0.00550007,-0.47376][0.335125,0.0552392,0.940553][0.937461,0.488967,0][0.0741048,0.129267,-0.469002][0.471007,-0.158364,-0.867798][0.976073,0.487372,0][0.077412,0.123414,-0.458419][0.287331,-0.765149,0.576183][0.974633,0.490524,0][0.0599188,-0.00550007,-0.506831][0.851629,0.312168,-0.421045][0.936736,0.479517,0][0.0599188,-0.00550007,-0.506831][0.851629,0.312168,-0.421045][0.936736,0.479517,0][0.0888536,-0.0387702,-0.477531][0.178865,0.673922,0.716824][0.927871,0.488619,0][0.0835622,-0.0409651,-0.497374][0.736252,0.37133,-0.565727][0.926809,0.482997,0][0.0599188,-0.00550007,-0.506831][0.851629,0.312168,-0.421045][0.936736,0.479517,0][0.0652102,-0.00550007,-0.47376][0.335125,0.0552392,0.940553][0.937461,0.488967,0][0.0888536,-0.0387702,-0.477531][0.178865,0.673922,0.716824][0.927871,0.488619,0][0.301081,-0.100073,-0.427427][0.643581,0.252906,-0.722386][0.887971,0.653422,0][0.0835622,-0.0409651,-0.497374][0.736252,0.37133,-0.565727][0.82253,0.651169,0][0.0888536,-0.0387702,-0.477531][0.178865,0.673922,0.716824][0.825882,0.646332,0][0.301081,-0.100073,-0.427427][0.643581,0.252906,-0.722386][0.887971,0.653422,0][0.0888536,-0.0387702,-0.477531][0.178865,0.673922,0.716824][0.825882,0.646332,0][0.299618,-0.0949521,-0.414258][-0.17273,0.960123,0.219839][0.888854,0.649729,0][0.301081,-0.100073,-0.427427][0.643581,0.252906,-0.722386][0.887971,0.653422,0][0.299618,-0.0949521,-0.414258][-0.17273,0.960123,0.219839][0.888854,0.649729,0][0.324894,-0.0885998,-0.388982][-0.861209,0.503756,0.0674465][0.898123,0.645367,0][0.327089,-0.0922579,-0.401419][0.104939,0.586263,-0.803295][0.897508,0.648933,0][0.301081,-0.100073,-0.427427][0.643581,0.252906,-0.722386][0.887971,0.653422,0][0.324894,-0.0885998,-0.388982][-0.861209,0.503756,0.0674465][0.898123,0.645367,0][0.350732,0.00159295,-0.386511][-0.241433,0.112282,-0.9639][0.965903,0.0643965,0][0.327089,-0.0922579,-0.401419][0.104939,0.586263,-0.803295][0.971178,0.0911137,0][0.324894,-0.0885998,-0.388982][-0.861209,0.503756,0.0674465][0.967577,0.0901992,0][0.350732,0.00159295,-0.386511][-0.241433,0.112282,-0.9639][0.965903,0.0643965,0][0.324894,-0.0885998,-0.388982][-0.861209,0.503756,0.0674465][0.967577,0.0901992,0][0.344879,0.00159295,-0.37261][-0.994957,0.0596343,-0.0806462][0.961923,0.0645453,0][0.350732,0.00159295,-0.386511][-0.241433,0.112282,-0.9639][0.965903,0.0643965,0][0.344879,0.00159295,-0.37261][-0.994957,0.0596343,-0.0806462][0.961923,0.0645453,0][0.338687,0.065769,-0.374974][-0.94672,-0.319399,-0.041304][0.961913,0.0461414,0][0.346003,0.0701586,-0.388875][-0.0102186,-0.342404,-0.939497][0.965846,0.0447354,0][0.350732,0.00159295,-0.386511][-0.241433,0.112282,-0.9639][0.965903,0.0643965,0][0.338687,0.065769,-0.374974][-0.94672,-0.319399,-0.041304][0.961913,0.0461414,0][0.289259,0.133996,-0.436162][0.246899,-0.308097,-0.918758][0.779537,0.427332,0][0.338687,0.065769,-0.374974][-0.94672,-0.319399,-0.041304][0.798331,0.439779,0][0.287064,0.123021,-0.417872][-0.512694,-0.858529,0.00852589][0.780518,0.432519,0][0.346003,0.0701586,-0.388875][-0.0102186,-0.342404,-0.939497][0.799129,0.435348,0][0.338687,0.065769,-0.374974][-0.94672,-0.319399,-0.041304][0.798331,0.439779,0][0.289259,0.133996,-0.436162][0.246899,-0.308097,-0.918758][0.779537,0.427332,0][0.168678,0.150546,-0.46217][0.200675,-0.376492,-0.904424][0.744343,0.430646,0][0.287064,0.123021,-0.417872][-0.512694,-0.858529,0.00852589][0.780518,0.432519,0][0.168678,0.141035,-0.440221][-0.0948896,-0.956322,0.276485][0.746239,0.436643,0][0.289259,0.133996,-0.436162][0.246899,-0.308097,-0.918758][0.779537,0.427332,0][0.287064,0.123021,-0.417872][-0.512694,-0.858529,0.00852589][0.780518,0.432519,0][0.168678,0.150546,-0.46217][0.200675,-0.376492,-0.904424][0.744343,0.430646,0][0.168678,0.150546,-0.46217][0.200675,-0.376492,-0.904424][0.744343,0.430646,0][0.077412,0.123414,-0.458419][0.287331,-0.765149,0.576183][0.719729,0.439557,0][0.0741048,0.129267,-0.469002][0.471007,-0.158364,-0.867798][0.717911,0.436952,0][0.168678,0.150546,-0.46217][0.200675,-0.376492,-0.904424][0.744343,0.430646,0][0.168678,0.141035,-0.440221][-0.0948896,-0.956322,0.276485][0.746239,0.436643,0][0.077412,0.123414,-0.458419][0.287331,-0.765149,0.576183][0.719729,0.439557,0][0.422393,-0.210538,-0.286361][-0.120884,-0.991221,0.0535599][0.530449,0.933076,0][0.446327,-0.179663,-0.144581][-0.590691,-0.739298,0.323299][0.571002,0.940384,0][0.379809,-0.19334,-0.243283][-0.483356,-0.439256,0.757246][0.537932,0.94874,0][0.45207,-0.170113,-0.0406283][-0.761122,-0.630538,-0.152035][0.868688,0.117272,0][0.451911,-0.181451,-0.0298284][-0.662541,-0.253588,-0.704792][0.865717,0.120635,0][0.451911,0.203883,-0.0298283][-0.913319,-0.398079,-0.0859157][0.861592,0.0102835,0][0.446327,0.199658,-0.144581][-0.890617,-0.362062,0.275159][0.894499,0.0102651,0][0.446327,-0.179663,-0.144581][-0.590691,-0.739298,0.323299][0.89856,0.118894,0][0.446327,-0.169981,-0.0677553][-0.736917,-0.665962,0.115969][0.876455,0.116944,0][0.446327,-0.169981,-0.0677553][-0.736917,-0.665962,0.115969][0.876455,0.116944,0][0.45207,-0.170113,-0.0406283][-0.761122,-0.630538,-0.152035][0.868688,0.117272,0][0.451911,0.203883,-0.0298283][-0.913319,-0.398079,-0.0859157][0.861592,0.0102835,0][0.446327,0.199658,-0.144581][-0.890617,-0.362062,0.275159][0.894499,0.0102651,0][0.446327,-0.169981,-0.0677553][-0.736917,-0.665962,0.115969][0.876455,0.116944,0][0.451911,0.203883,-0.0298283][-0.913319,-0.398079,-0.0859157][0.861592,0.0102835,0][0.310477,0.32603,-0.154059][-0.471766,-0.861751,0.186607][0.225801,0.408485,0][0.451911,0.203883,-0.0298283][-0.913319,-0.398079,-0.0859157][0.240439,0.460408,0][0.303228,0.329981,-0.0298283][-0.445341,-0.895264,-0.0131706][0.204688,0.437226,0][0.446327,0.199658,-0.144581][-0.890617,-0.362062,0.275159][0.256988,0.431945,0][0.451911,0.203883,-0.0298283][-0.913319,-0.398079,-0.0859157][0.240439,0.460408,0][0.310477,0.32603,-0.154059][-0.471766,-0.861751,0.186607][0.225801,0.408485,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.92537,0.0110214,0][0.379809,-0.19334,-0.243283][-0.483356,-0.439256,0.757246][0.926973,0.121754,0][0.446327,-0.179663,-0.144581][-0.590691,-0.739298,0.323299][0.89856,0.118894,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.92537,0.0110214,0][0.446327,-0.179663,-0.144581][-0.590691,-0.739298,0.323299][0.89856,0.118894,0][0.446327,0.199658,-0.144581][-0.890617,-0.362062,0.275159][0.894499,0.0102651,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.598153,0.194343,0][0.310477,0.32603,-0.154059][-0.471766,-0.861751,0.186607][0.622238,0.237868,0][0.233562,0.3234,-0.269816][-0.262772,-0.846138,0.463683][0.588476,0.249685,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.598153,0.194343,0][0.446327,0.199658,-0.144581][-0.890617,-0.362062,0.275159][0.629369,0.185211,0][0.310477,0.32603,-0.154059][-0.471766,-0.861751,0.186607][0.622238,0.237868,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.0107841,0.732999,0][0.14249,-0.156799,-0.445546][-0.393756,0.00841699,0.919176][0.0464902,0.732999,0][0.0366688,-0.125444,-0.489693][-0.623794,0.408523,0.666326][0.0554756,0.763325,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.0107841,0.732999,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.0554756,0.773509,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.01,0.773509,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.0107841,0.732999,0][0.0366688,-0.125444,-0.489693][-0.623794,0.408523,0.666326][0.0554756,0.763325,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.0554756,0.773509,0][0.00113328,-0.131148,-0.550617][-0.386958,0.593677,-0.705557][0.210428,0.612064,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.168012,0.600963,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.215102,0.601257,0][0.276268,-0.17699,-0.373223][-0.706654,0.152214,0.690993][0.96401,0.115681,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.973652,0.143692,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.949291,0.142641,0][0.276268,-0.17699,-0.373223][-0.706654,0.152214,0.690993][0.96401,0.115681,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.949291,0.142641,0][0.328527,-0.180746,-0.287194][-0.778671,0.0186612,0.627154][0.939413,0.117678,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.0107841,0.732999,0][0.276268,-0.17699,-0.373223][-0.706654,0.152214,0.690993][0.0407037,0.694661,0][0.14249,-0.156799,-0.445546][-0.393756,0.00841699,0.919176][0.0464902,0.732999,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.0123521,0.698502,0][0.276268,-0.17699,-0.373223][-0.706654,0.152214,0.690993][0.0407037,0.694661,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.0107841,0.732999,0][0.328527,-0.180746,-0.287194][-0.778671,0.0186612,0.627154][0.939413,0.117678,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.949291,0.142641,0][0.391588,-0.263381,-0.228135][0.390944,-0.507866,0.767617][0.923385,0.141975,0][0.328527,-0.180746,-0.287194][-0.778671,0.0186612,0.627154][0.828704,0.323905,0][0.391588,-0.263381,-0.228135][0.390944,-0.507866,0.767617][0.8165,0.351079,0][0.379809,-0.19334,-0.243283][-0.483356,-0.439256,0.757246][0.815216,0.330765,0][0.0888536,-0.0387702,-0.477531][0.178865,0.673922,0.716824][0.0803145,0.74837,0][0.0562088,-0.040301,-0.489428][-0.831007,-0.235348,0.504023][0.0798758,0.757725,0][0.14249,-0.156799,-0.445546][-0.393756,0.00841699,0.919176][0.0464902,0.732999,0][0.14249,-0.156799,-0.445546][-0.393756,0.00841699,0.919176][0.0464902,0.732999,0][0.0609838,-0.096216,-0.489728][-0.821424,0.215489,0.528041][0.0638518,0.756357,0][0.0366688,-0.125444,-0.489693][-0.623794,0.408523,0.666326][0.0554756,0.763325,0][0.0609838,-0.096216,-0.489728][-0.821424,0.215489,0.528041][0.0638518,0.756357,0][0.14249,-0.156799,-0.445546][-0.393756,0.00841699,0.919176][0.0464902,0.732999,0][0.0562088,-0.040301,-0.489428][-0.831007,-0.235348,0.504023][0.0798758,0.757725,0][0.14249,-0.156799,-0.445546][-0.393756,0.00841699,0.919176][0.0464902,0.732999,0][0.299618,-0.0949521,-0.414258][-0.17273,0.960123,0.219839][0.064214,0.68797,0][0.0888536,-0.0387702,-0.477531][0.178865,0.673922,0.716824][0.0803145,0.74837,0][0.276268,-0.17699,-0.373223][-0.706654,0.152214,0.690993][0.0407037,0.694661,0][0.299618,-0.0949521,-0.414258][-0.17273,0.960123,0.219839][0.064214,0.68797,0][0.14249,-0.156799,-0.445546][-0.393756,0.00841699,0.919176][0.0464902,0.732999,0][0.299618,-0.0949521,-0.414258][-0.17273,0.960123,0.219839][0.693737,0.473878,0][0.276268,-0.17699,-0.373223][-0.706654,0.152214,0.690993][0.720854,0.474563,0][0.324894,-0.0885998,-0.388982][-0.861209,0.503756,0.0674465][0.69325,0.484271,0][0.276268,-0.17699,-0.373223][-0.706654,0.152214,0.690993][0.96401,0.115681,0][0.328527,-0.180746,-0.287194][-0.778671,0.0186612,0.627154][0.939413,0.117678,0][0.353088,-0.0705873,-0.287194][-0.89341,0.131189,0.429661][0.938234,0.0861305,0][0.324894,-0.0885998,-0.388982][-0.861209,0.503756,0.0674465][0.967577,0.0901992,0][0.276268,-0.17699,-0.373223][-0.706654,0.152214,0.690993][0.96401,0.115681,0][0.353088,-0.0705873,-0.287194][-0.89341,0.131189,0.429661][0.938234,0.0861305,0][0.344879,0.00159295,-0.37261][-0.994957,0.0596343,-0.0806462][0.961923,0.0645453,0][0.324894,-0.0885998,-0.388982][-0.861209,0.503756,0.0674465][0.967577,0.0901992,0][0.353088,-0.0705873,-0.287194][-0.89341,0.131189,0.429661][0.938234,0.0861305,0][0.344879,0.00159295,-0.37261][-0.994957,0.0596343,-0.0806462][0.961923,0.0645453,0][0.353088,-0.0705873,-0.287194][-0.89341,0.131189,0.429661][0.938234,0.0861305,0][0.360105,0.0216337,-0.287194][-0.978521,0.0412792,0.201972][0.937246,0.0597205,0][0.287064,0.123021,-0.417872][-0.512694,-0.858529,0.00852589][0.973584,0.0292863,0][0.338687,0.065769,-0.374974][-0.94672,-0.319399,-0.041304][0.961913,0.0461414,0][0.360105,0.118331,-0.287194][-0.868163,-0.103317,0.485406][0.936211,0.0320284,0][0.287064,0.123021,-0.417872][-0.512694,-0.858529,0.00852589][0.973584,0.0292863,0][0.360105,0.118331,-0.287194][-0.868163,-0.103317,0.485406][0.936211,0.0320284,0][0.287064,0.192572,-0.358874][-0.534237,-0.536682,0.653118][0.955944,0.01,0][0.0562088,-0.040301,-0.489428][-0.831007,-0.235348,0.504023][0.0798758,0.757725,0][0.0652102,-0.00550007,-0.47376][0.335125,0.0552392,0.940553][0.089849,0.755146,0][0.018822,0.0384884,-0.503598][-0.684622,-0.503927,0.52664][0.102455,0.76844,0][0.0888536,-0.0387702,-0.477531][0.178865,0.673922,0.716824][0.0803145,0.74837,0][0.0652102,-0.00550007,-0.47376][0.335125,0.0552392,0.940553][0.089849,0.755146,0][0.0562088,-0.040301,-0.489428][-0.831007,-0.235348,0.504023][0.0798758,0.757725,0][0.0652102,-0.00550007,-0.47376][0.335125,0.0552392,0.940553][0.089849,0.755146,0][0.077412,0.123414,-0.458419][0.287331,-0.765149,0.576183][0.126793,0.751649,0][0.018822,0.0384884,-0.503598][-0.684622,-0.503927,0.52664][0.102455,0.76844,0][0.077412,0.123414,-0.458419][0.287331,-0.765149,0.576183][0.126793,0.751649,0][0.00113326,0.141089,-0.471031][-6.41022e-007,-0.397011,0.917814][0.131858,0.773509,0][0.018822,0.0384884,-0.503598][-0.684622,-0.503927,0.52664][0.102455,0.76844,0][0.00113327,0.0435716,-0.511434][-1.24944e-006,-0.922433,0.386157][0.103912,0.773509,0][0.018822,0.0384884,-0.503598][-0.684622,-0.503927,0.52664][0.102455,0.76844,0][0.00113326,0.141089,-0.471031][-6.41022e-007,-0.397011,0.917814][0.131858,0.773509,0][0.379809,-0.19334,-0.243283][-0.483356,-0.439256,0.757246][0.815216,0.330765,0][0.353088,-0.0705873,-0.287194][-0.89341,0.131189,0.429661][0.814662,0.294768,0][0.328527,-0.180746,-0.287194][-0.778671,0.0186612,0.627154][0.828704,0.323905,0][0.379809,-0.19334,-0.243283][-0.483356,-0.439256,0.757246][0.926973,0.121754,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.92537,0.0110214,0][0.353088,-0.0705873,-0.287194][-0.89341,0.131189,0.429661][0.938234,0.0861305,0][0.360105,0.118331,-0.287194][-0.868163,-0.103317,0.485406][0.936211,0.0320284,0][0.360105,0.0216337,-0.287194][-0.978521,0.0412792,0.201972][0.937246,0.0597205,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.92537,0.0110214,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.92537,0.0110214,0][0.360105,0.0216337,-0.287194][-0.978521,0.0412792,0.201972][0.937246,0.0597205,0][0.353088,-0.0705873,-0.287194][-0.89341,0.131189,0.429661][0.938234,0.0861305,0][0.233562,0.3234,-0.269816][-0.262772,-0.846138,0.463683][0.184105,0.7069,0][0.168678,0.21729,-0.375991][-0.279636,-0.602552,0.747486][0.153696,0.725494,0][0.287064,0.192572,-0.358874][-0.534237,-0.536682,0.653118][0.146612,0.691567,0][0.00113318,-0.27091,0.416806][-4.49128e-007,-0.985382,-0.17036][0.423027,0.162056,0][0.00113318,-0.231407,0.443991][-4.18238e-007,-0.523725,0.851887][0.423027,0.150735,0][-0.132732,-0.27091,0.395006][0.0805189,-0.994264,-0.0704028][0.46139,0.162056,0][0.00113317,0.388426,0.245271][1.51657e-007,0.958468,0.285201][0.124629,0.0669663,0][0.00113319,0.40625,0.0668464][0,0.99845,0.0556613][0.136273,0.116756,0][-0.0204034,0.40625,0.0637519][-0.0173831,0.99836,0.0545409][0.130465,0.119025,0][-0.485045,-0.140154,-0.0278451][-0.919496,-0.35715,-0.164227][0.384638,0.405803,0][-0.464122,-0.179971,0.153611][-0.914751,-0.355767,0.191467][0.332637,0.417213,0][-0.481253,-0.110251,0.168491][-0.951216,-0.216041,0.220261][0.328373,0.397233,0][-0.459102,-0.170056,-0.0360383][-0.706429,-0.653491,-0.271859][0.386986,0.414372,0][-0.464122,-0.179971,0.153611][-0.914751,-0.355767,0.191467][0.332637,0.417213,0][-0.485045,-0.140154,-0.0278451][-0.919496,-0.35715,-0.164227][0.384638,0.405803,0][-0.485045,-0.140154,-0.0278451][-0.919496,-0.35715,-0.164227][0.384638,0.405803,0][-0.481253,-0.110251,0.168491][-0.951216,-0.216041,0.220261][0.328373,0.397233,0][-0.491835,-0.110251,-0.0196518][-0.980482,-0.18002,-0.079039][0.38229,0.397233,0][-0.491835,-0.110251,-0.0196518][-0.980482,-0.18002,-0.079039][0.38229,0.397233,0][-0.467496,-0.157819,-0.0638326][-0.963167,-0.262886,-0.0565705][0.394951,0.410865,0][-0.485045,-0.140154,-0.0278451][-0.919496,-0.35715,-0.164227][0.384638,0.405803,0][-0.439048,-0.154088,-0.315018][-0.944647,0.0294687,-0.326762][0.466936,0.409796,0][-0.442086,-0.210538,-0.286361][-0.647408,-0.742014,-0.174007][0.458723,0.425973,0][-0.466019,-0.179663,-0.144581][-0.821384,-0.568668,0.0440977][0.418092,0.417125,0][0.00113325,0.275856,-0.447723][4.86438e-007,0.57469,-0.818371][0.169854,0.260345,0][-0.165088,0.334571,-0.368584][-0.184143,0.773179,-0.606866][0.118305,0.249109,0][0.00113324,0.344422,-0.376793][5.84935e-007,0.825141,-0.564926][0.165225,0.240552,0][-0.132252,0.257407,-0.437539][-0.198607,0.476941,-0.856203][0.0916483,0.534796,0][-0.165088,0.334571,-0.368584][-0.184143,0.773179,-0.606866][0.0822383,0.512682,0][0.00113325,0.275856,-0.447723][4.86438e-007,0.57469,-0.818371][0.129874,0.529509,0][-0.224854,0.228101,-0.427593][-0.277279,0.409336,-0.86923][0.0651106,0.543194,0][-0.165088,0.334571,-0.368584][-0.184143,0.773179,-0.606866][0.0822383,0.512682,0][-0.132252,0.257407,-0.437539][-0.198607,0.476941,-0.856203][0.0916483,0.534796,0][-0.224854,0.228101,-0.427593][-0.277279,0.409336,-0.86923][0.0651106,0.543194,0][-0.277391,0.30034,-0.358638][-0.408538,0.680051,-0.608792][0.0500546,0.522492,0][-0.165088,0.334571,-0.368584][-0.184143,0.773179,-0.606866][0.0822383,0.512682,0][-0.165088,0.334571,-0.368584][-0.184143,0.773179,-0.606866][0.118305,0.249109,0][0.00113323,0.384615,-0.289312][3.44836e-007,0.965611,-0.25999][0.159516,0.216141,0][0.00113324,0.344422,-0.376793][5.84935e-007,0.825141,-0.564926][0.165225,0.240552,0][-0.165088,0.334571,-0.368584][-0.184143,0.773179,-0.606866][0.118305,0.249109,0][-0.197172,0.367548,-0.288561][-0.231637,0.932835,-0.275978][0.10413,0.228873,0][0.00113323,0.384615,-0.289312][3.44836e-007,0.965611,-0.25999][0.159516,0.216141,0][-0.277391,0.30034,-0.358638][-0.408538,0.680051,-0.608792][0.086318,0.253663,0][-0.197172,0.367548,-0.288561][-0.231637,0.932835,-0.275978][0.10413,0.228873,0][-0.165088,0.334571,-0.368584][-0.184143,0.773179,-0.606866][0.118305,0.249109,0][-0.277391,0.30034,-0.358638][-0.408538,0.680051,-0.608792][0.086318,0.253663,0][-0.315152,0.315116,-0.288041][-0.511441,0.804394,-0.302287][0.0711736,0.236427,0][-0.197172,0.367548,-0.288561][-0.231637,0.932835,-0.275978][0.10413,0.228873,0][-0.435091,-0.109951,-0.287514][-0.930837,0.0954774,-0.352741][0.459054,0.397147,0][-0.439048,-0.154088,-0.315018][-0.944647,0.0294687,-0.326762][0.466936,0.409796,0][-0.467496,-0.157819,-0.0638326][-0.963167,-0.262886,-0.0565705][0.394951,0.410865,0][-0.435091,-0.109951,-0.287514][-0.930837,0.0954774,-0.352741][0.459054,0.397147,0][-0.467496,-0.157819,-0.0638326][-0.963167,-0.262886,-0.0565705][0.394951,0.410865,0][-0.491835,-0.110251,-0.0196518][-0.980482,-0.18002,-0.079039][0.38229,0.397233,0][-0.111497,-0.188375,-0.525244][-0.352284,0.311879,-0.882399][0.69209,0.614446,0][0.00113328,-0.131148,-0.550617][-0.386958,0.593677,-0.705557][0.724367,0.598047,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.724367,0.641888,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.683857,0.641103,0][-0.111497,-0.188375,-0.525244][-0.352284,0.311879,-0.882399][0.69209,0.614446,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.724367,0.641888,0][-0.111497,-0.188375,-0.525244][-0.352284,0.311879,-0.882399][0.864494,0.699646,0][-0.036477,-0.131148,-0.518954][-0.172933,0.813495,-0.555266][0.841382,0.713797,0][0.00113328,-0.131148,-0.550617][-0.386958,0.593677,-0.705557][0.828529,0.708025,0][-0.096897,-0.124763,-0.47623][-0.45807,0.123059,-0.880357][0.758499,0.764836,0][-0.0638375,-0.0996838,-0.52411][0.039114,-0.0168656,-0.999092][0.774789,0.756815,0][-0.036477,-0.131148,-0.518954][-0.172933,0.813495,-0.555266][0.779568,0.767867,0][-0.111497,-0.188375,-0.525244][-0.352284,0.311879,-0.882399][0.864494,0.699646,0][-0.096897,-0.124763,-0.47623][-0.45807,0.123059,-0.880357][0.860607,0.722569,0][-0.036477,-0.131148,-0.518954][-0.172933,0.813495,-0.555266][0.841382,0.713797,0][-0.111497,-0.188375,-0.525244][-0.352284,0.311879,-0.882399][0.864494,0.699646,0][-0.229922,-0.18533,-0.465614][-0.543393,0.482944,-0.686651][0.900404,0.709922,0][-0.096897,-0.124763,-0.47623][-0.45807,0.123059,-0.880357][0.860607,0.722569,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.683857,0.641103,0][-0.229922,-0.18533,-0.465614][-0.543393,0.482944,-0.686651][0.658152,0.613574,0][-0.111497,-0.188375,-0.525244][-0.352284,0.311879,-0.882399][0.69209,0.614446,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.64936,0.639535,0][-0.229922,-0.18533,-0.465614][-0.543393,0.482944,-0.686651][0.658152,0.613574,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.683857,0.641103,0][-0.0597334,-0.0394907,-0.528214][0.0850123,-0.0574182,-0.994724][0.337925,0.671701,0][-0.0812956,-0.040965,-0.497374][-0.736252,0.371329,-0.565728][0.33785,0.662853,0][-0.0576523,-0.0055,-0.506831][-0.851629,0.312168,-0.421045][0.347899,0.665959,0][-0.0638375,-0.0996838,-0.52411][0.039114,-0.0168656,-0.999092][0.320735,0.669849,0][-0.0812956,-0.040965,-0.497374][-0.736252,0.371329,-0.565728][0.33785,0.662853,0][-0.0597334,-0.0394907,-0.528214][0.0850123,-0.0574182,-0.994724][0.337925,0.671701,0][-0.0843572,-0.081444,-0.49447][-0.60865,-0.0616044,-0.791043][0.326291,0.661567,0][-0.0812956,-0.040965,-0.497374][-0.736252,0.371329,-0.565728][0.33785,0.662853,0][-0.0638375,-0.0996838,-0.52411][0.039114,-0.0168656,-0.999092][0.320735,0.669849,0][-0.096897,-0.124763,-0.47623][-0.45807,0.123059,-0.880357][0.314091,0.655857,0][-0.0843572,-0.081444,-0.49447][-0.60865,-0.0616044,-0.791043][0.326291,0.661567,0][-0.0638375,-0.0996838,-0.52411][0.039114,-0.0168656,-0.999092][0.320735,0.669849,0][-0.0186926,0.0453269,-0.548734][-0.484326,-0.351377,-0.801226][0.726224,0.293506,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.717911,0.324726,0][0.00113327,0.050799,-0.559744][9.69897e-007,-0.220742,-0.975332][0.719609,0.292533,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.129874,0.56813,0][-0.0912066,0.191069,-0.470053][-0.189718,0.174888,-0.966137][0.103411,0.553807,0][0.00113326,0.202561,-0.483188][6.10804e-007,0.289054,-0.957313][0.129874,0.550513,0][-0.0718383,0.129267,-0.469002][-0.471007,-0.158364,-0.867798][0.108962,0.571518,0][-0.0912066,0.191069,-0.470053][-0.189718,0.174888,-0.966137][0.103411,0.553807,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.129874,0.56813,0][-0.0241647,0.0685833,-0.509061][-0.707702,0.325277,-0.627178][0.122624,0.588908,0][-0.0718383,0.129267,-0.469002][-0.471007,-0.158364,-0.867798][0.108962,0.571518,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.129874,0.56813,0][-0.0186926,0.0453269,-0.548734][-0.484326,-0.351377,-0.801226][0.361983,0.67853,0][-0.0241647,0.0685833,-0.509061][-0.707702,0.325277,-0.627178][0.369088,0.66743,0][0.00113326,0.141089,-0.492645][5.82494e-007,0.230749,-0.973013][0.390035,0.663544,0][-0.0597334,-0.0394907,-0.528214][0.0850123,-0.0574182,-0.994724][0.337925,0.671701,0][-0.0241647,0.0685833,-0.509061][-0.707702,0.325277,-0.627178][0.369088,0.66743,0][-0.0186926,0.0453269,-0.548734][-0.484326,-0.351377,-0.801226][0.361983,0.67853,0][-0.0576523,-0.0055,-0.506831][-0.851629,0.312168,-0.421045][0.113027,0.610139,0][-0.0718383,0.129267,-0.469002][-0.471007,-0.158364,-0.867798][0.108962,0.571518,0][-0.0241647,0.0685833,-0.509061][-0.707702,0.325277,-0.627178][0.122624,0.588908,0][-0.0597334,-0.0394907,-0.528214][0.0850123,-0.0574182,-0.994724][0.337925,0.671701,0][-0.0576523,-0.0055,-0.506831][-0.851629,0.312168,-0.421045][0.347899,0.665959,0][-0.0241647,0.0685833,-0.509061][-0.707702,0.325277,-0.627178][0.369088,0.66743,0][-0.166412,0.150546,-0.46217][-0.200675,-0.376492,-0.904424][0.0818589,0.565419,0][-0.0912066,0.191069,-0.470053][-0.189718,0.174888,-0.966137][0.103411,0.553807,0][-0.0718383,0.129267,-0.469002][-0.471007,-0.158364,-0.867798][0.108962,0.571518,0][0.00113326,0.202561,-0.483188][6.10804e-007,0.289054,-0.957313][0.129874,0.550513,0][-0.132252,0.257407,-0.437539][-0.198607,0.476941,-0.856203][0.0916483,0.534796,0][0.00113325,0.275856,-0.447723][4.86438e-007,0.57469,-0.818371][0.129874,0.529509,0][-0.0912066,0.191069,-0.470053][-0.189718,0.174888,-0.966137][0.103411,0.553807,0][-0.132252,0.257407,-0.437539][-0.198607,0.476941,-0.856203][0.0916483,0.534796,0][0.00113326,0.202561,-0.483188][6.10804e-007,0.289054,-0.957313][0.129874,0.550513,0][-0.166412,0.150546,-0.46217][-0.200675,-0.376492,-0.904424][0.0818589,0.565419,0][-0.132252,0.257407,-0.437539][-0.198607,0.476941,-0.856203][0.0916483,0.534796,0][-0.0912066,0.191069,-0.470053][-0.189718,0.174888,-0.966137][0.103411,0.553807,0][-0.166412,0.150546,-0.46217][-0.200675,-0.376492,-0.904424][0.0818589,0.565419,0][-0.224854,0.228101,-0.427593][-0.277279,0.409336,-0.86923][0.0651106,0.543194,0][-0.132252,0.257407,-0.437539][-0.198607,0.476941,-0.856203][0.0916483,0.534796,0][-0.286993,0.133996,-0.436162][-0.246898,-0.308098,-0.918758][0.047303,0.570162,0][-0.224854,0.228101,-0.427593][-0.277279,0.409336,-0.86923][0.0651106,0.543194,0][-0.166412,0.150546,-0.46217][-0.200675,-0.376492,-0.904424][0.0818589,0.565419,0][-0.286993,0.133996,-0.436162][-0.246898,-0.308098,-0.918758][0.047303,0.570162,0][-0.310316,0.186809,-0.410274][-0.497802,0.306801,-0.811213][0.0406192,0.555027,0][-0.224854,0.228101,-0.427593][-0.277279,0.409336,-0.86923][0.0651106,0.543194,0][-0.352527,0.13074,-0.388704][-0.599868,0.0828492,-0.795798][0.0285223,0.571095,0][-0.310316,0.186809,-0.410274][-0.497802,0.306801,-0.811213][0.0406192,0.555027,0][-0.286993,0.133996,-0.436162][-0.246898,-0.308098,-0.918758][0.047303,0.570162,0][-0.310316,0.186809,-0.410274][-0.497802,0.306801,-0.811213][0.0406192,0.555027,0][-0.277391,0.30034,-0.358638][-0.408538,0.680051,-0.608792][0.0500546,0.522492,0][-0.224854,0.228101,-0.427593][-0.277279,0.409336,-0.86923][0.0651106,0.543194,0][-0.356286,0.234421,-0.352812][-0.608508,0.469838,-0.639508][0.811262,0.375084,0][-0.315152,0.315116,-0.288041][-0.511441,0.804394,-0.302287][0.800228,0.404177,0][-0.277391,0.30034,-0.358638][-0.408538,0.680051,-0.608792][0.784684,0.387869,0][-0.310316,0.186809,-0.410274][-0.497802,0.306801,-0.811213][0.0406192,0.555027,0][-0.356286,0.234421,-0.352812][-0.608508,0.469838,-0.639508][0.0274452,0.541383,0][-0.277391,0.30034,-0.358638][-0.408538,0.680051,-0.608792][0.0500546,0.522492,0][-0.352527,0.13074,-0.388704][-0.599868,0.0828492,-0.795798][0.0285223,0.571095,0][-0.356286,0.234421,-0.352812][-0.608508,0.469838,-0.639508][0.0274452,0.541383,0][-0.310316,0.186809,-0.410274][-0.497802,0.306801,-0.811213][0.0406192,0.555027,0][-0.356286,0.234421,-0.352812][-0.608508,0.469838,-0.639508][0.811262,0.375084,0][-0.400614,0.244271,-0.288782][-0.718405,0.583355,-0.378935][0.828181,0.389206,0][-0.315152,0.315116,-0.288041][-0.511441,0.804394,-0.302287][0.800228,0.404177,0][-0.393572,0.160293,-0.349301][-0.720851,0.167388,-0.672574][0.0167598,0.562626,0][-0.356286,0.234421,-0.352812][-0.608508,0.469838,-0.639508][0.0274452,0.541383,0][-0.352527,0.13074,-0.388704][-0.599868,0.0828492,-0.795798][0.0285223,0.571095,0][-0.381256,0.0787554,-0.370919][-0.735256,-0.0608344,-0.675053][0.0202893,0.585993,0][-0.393572,0.160293,-0.349301][-0.720851,0.167388,-0.672574][0.0167598,0.562626,0][-0.352527,0.13074,-0.388704][-0.599868,0.0828492,-0.795798][0.0285223,0.571095,0][-0.393572,0.160293,-0.349301][-0.720851,0.167388,-0.672574][0.828249,0.359507,0][-0.400614,0.244271,-0.288782][-0.718405,0.583355,-0.378935][0.828181,0.389206,0][-0.356286,0.234421,-0.352812][-0.608508,0.469838,-0.639508][0.811262,0.375084,0][-0.396599,0.0946421,-0.33811][-0.822715,-0.0544186,-0.565844][0.337205,0.979445,0][-0.393572,0.160293,-0.349301][-0.720851,0.167388,-0.672574][0.355059,0.98619,0][-0.381256,0.0787554,-0.370919][-0.735256,-0.0608344,-0.675053][0.330939,0.987803,0][-0.441184,0.173427,-0.288555][-0.867724,0.24743,-0.431084][0.845275,0.373829,0][-0.400614,0.244271,-0.288782][-0.718405,0.583355,-0.378935][0.828181,0.389206,0][-0.393572,0.160293,-0.349301][-0.720851,0.167388,-0.672574][0.828249,0.359507,0][-0.396599,0.0946421,-0.33811][-0.822715,-0.0544186,-0.565844][0.337205,0.979445,0][-0.441184,0.173427,-0.288555][-0.867724,0.24743,-0.431084][0.362082,0.969822,0][-0.393572,0.160293,-0.349301][-0.720851,0.167388,-0.672574][0.355059,0.98619,0][-0.446808,0.102583,-0.28764][-0.884114,0.0224028,-0.466733][0.853909,0.358123,0][-0.441184,0.173427,-0.288555][-0.867724,0.24743,-0.431084][0.845275,0.373829,0][-0.396599,0.0946421,-0.33811][-0.822715,-0.0544186,-0.565844][0.836861,0.346755,0][-0.379573,-0.1067,-0.345883][-0.879212,0.422151,-0.22085][0.475781,0.396216,0][-0.435091,-0.109951,-0.287514][-0.930837,0.0954774,-0.352741][0.459054,0.397147,0][-0.444614,-0.0391062,-0.287685][-0.8756,-0.0448734,-0.480947][0.459103,0.376845,0][-0.38536,-0.0443669,-0.346295][-0.899501,0.00153059,-0.436915][0.847257,0.313884,0][-0.379573,-0.1067,-0.345883][-0.879212,0.422151,-0.22085][0.852188,0.299857,0][-0.444614,-0.0391062,-0.287685][-0.8756,-0.0448734,-0.480947][0.867686,0.326206,0][-0.348465,0.0015931,-0.386511][0.241434,0.112282,-0.9639][0.0296863,0.608106,0][-0.324822,-0.0922577,-0.401419][-0.104937,0.586263,-0.803295][0.0364619,0.635002,0][-0.381256,-0.0881437,-0.377759][-0.797053,0.167276,-0.58028][0.0202893,0.633823,0][-0.381256,0.0117222,-0.364079][-0.848226,0.0207767,-0.529227][0.312457,0.982206,0][-0.381256,-0.0881437,-0.377759][-0.797053,0.167276,-0.58028][0.283617,0.980583,0][-0.38536,-0.0443669,-0.346295][-0.899501,0.00153059,-0.436915][0.297655,0.974131,0][-0.348465,0.0015931,-0.386511][0.241434,0.112282,-0.9639][0.0296863,0.608106,0][-0.381256,-0.0881437,-0.377759][-0.797053,0.167276,-0.58028][0.0202893,0.633823,0][-0.381256,0.0117222,-0.364079][-0.848226,0.0207767,-0.529227][0.0202893,0.605203,0][-0.38536,0.0199303,-0.338087][-0.86761,-0.0190964,-0.496879][0.238485,0.260345,0][-0.38536,-0.0443669,-0.346295][-0.899501,0.00153059,-0.436915][0.220059,0.260345,0][-0.444614,-0.0391062,-0.287685][-0.8756,-0.0448734,-0.480947][0.221567,0.243364,0][-0.381256,0.0117222,-0.364079][-0.848226,0.0207767,-0.529227][0.312457,0.982206,0][-0.38536,-0.0443669,-0.346295][-0.899501,0.00153059,-0.436915][0.297655,0.974131,0][-0.38536,0.0199303,-0.338087][-0.86761,-0.0190964,-0.496879][0.31619,0.975345,0][-0.38536,0.0199303,-0.338087][-0.86761,-0.0190964,-0.496879][0.238485,0.260345,0][-0.444614,-0.0391062,-0.287685][-0.8756,-0.0448734,-0.480947][0.221567,0.243364,0][-0.444614,0.0317381,-0.287685][-0.865065,-0.02557,-0.501008][0.241869,0.243364,0][-0.343737,0.0701588,-0.388875][0.0102185,-0.342404,-0.939497][0.0310414,0.588457,0][-0.348465,0.0015931,-0.386511][0.241434,0.112282,-0.9639][0.0296863,0.608106,0][-0.381256,0.0117222,-0.364079][-0.848226,0.0207767,-0.529227][0.0202893,0.605203,0][-0.381256,0.0787554,-0.370919][-0.735256,-0.0608344,-0.675053][0.330939,0.987803,0][-0.381256,0.0117222,-0.364079][-0.848226,0.0207767,-0.529227][0.312457,0.982206,0][-0.38536,0.0199303,-0.338087][-0.86761,-0.0190964,-0.496879][0.31619,0.975345,0][-0.343737,0.0701588,-0.388875][0.0102185,-0.342404,-0.939497][0.0310414,0.588457,0][-0.381256,0.0117222,-0.364079][-0.848226,0.0207767,-0.529227][0.0202893,0.605203,0][-0.381256,0.0787554,-0.370919][-0.735256,-0.0608344,-0.675053][0.0202893,0.585993,0][-0.396599,0.0946421,-0.33811][-0.822715,-0.0544186,-0.565844][0.259896,0.257124,0][-0.38536,0.0199303,-0.338087][-0.86761,-0.0190964,-0.496879][0.238485,0.260345,0][-0.444614,0.0317381,-0.287685][-0.865065,-0.02557,-0.501008][0.241869,0.243364,0][-0.381256,0.0787554,-0.370919][-0.735256,-0.0608344,-0.675053][0.330939,0.987803,0][-0.38536,0.0199303,-0.338087][-0.86761,-0.0190964,-0.496879][0.31619,0.975345,0][-0.396599,0.0946421,-0.33811][-0.822715,-0.0544186,-0.565844][0.337205,0.979445,0][-0.396599,0.0946421,-0.33811][-0.822715,-0.0544186,-0.565844][0.473553,0.338515,0][-0.444614,0.0317381,-0.287685][-0.865065,-0.02557,-0.501008][0.459103,0.356542,0][-0.446808,0.102583,-0.28764][-0.884114,0.0224028,-0.466733][0.45909,0.33624,0][-0.343737,0.0701588,-0.388875][0.0102185,-0.342404,-0.939497][0.0310414,0.588457,0][-0.352527,0.13074,-0.388704][-0.599868,0.0828492,-0.795798][0.0285223,0.571095,0][-0.286993,0.133996,-0.436162][-0.246898,-0.308098,-0.918758][0.047303,0.570162,0][-0.381256,0.0787554,-0.370919][-0.735256,-0.0608344,-0.675053][0.0202893,0.585993,0][-0.352527,0.13074,-0.388704][-0.599868,0.0828492,-0.795798][0.0285223,0.571095,0][-0.343737,0.0701588,-0.388875][0.0102185,-0.342404,-0.939497][0.0310414,0.588457,0][-0.381256,-0.0881437,-0.377759][-0.797053,0.167276,-0.58028][0.349812,0.695016,0][-0.41716,-0.134935,-0.36153][-0.767353,0.180297,-0.615356][0.363854,0.705511,0][-0.379573,-0.1067,-0.345883][-0.879212,0.422151,-0.22085][0.349655,0.705596,0][-0.332841,-0.124092,-0.409855][-0.414241,-0.0134431,-0.910068][0.034164,0.644125,0][-0.41716,-0.134935,-0.36153][-0.767353,0.180297,-0.615356][0.01,0.647232,0][-0.381256,-0.0881437,-0.377759][-0.797053,0.167276,-0.58028][0.0202893,0.633823,0][-0.324822,-0.0922577,-0.401419][-0.104937,0.586263,-0.803295][0.0364619,0.635002,0][-0.332841,-0.124092,-0.409855][-0.414241,-0.0134431,-0.910068][0.034164,0.644125,0][-0.381256,-0.0881437,-0.377759][-0.797053,0.167276,-0.58028][0.0202893,0.633823,0][-0.278155,-0.116783,-0.437471][-0.335162,-0.149884,-0.930162][0.0498358,0.64203,0][-0.332841,-0.124092,-0.409855][-0.414241,-0.0134431,-0.910068][0.034164,0.644125,0][-0.324822,-0.0922577,-0.401419][-0.104937,0.586263,-0.803295][0.0364619,0.635002,0][-0.298814,-0.100073,-0.427427][-0.64358,0.252906,-0.722387][0.705198,0.822867,0][-0.278155,-0.116783,-0.437471][-0.335162,-0.149884,-0.930162][0.712968,0.825296,0][-0.324822,-0.0922577,-0.401419][-0.104937,0.586263,-0.803295][0.694665,0.825145,0][-0.381256,-0.0881437,-0.377759][-0.797053,0.167276,-0.58028][0.283617,0.980583,0][-0.379573,-0.1067,-0.345883][-0.879212,0.422151,-0.22085][0.280143,0.9706,0][-0.38536,-0.0443669,-0.346295][-0.899501,0.00153059,-0.436915][0.297655,0.974131,0][-0.0843572,-0.081444,-0.49447][-0.60865,-0.0616044,-0.791043][0.105374,0.631903,0][-0.298814,-0.100073,-0.427427][-0.64358,0.252906,-0.722387][0.0439152,0.637242,0][-0.0812956,-0.040965,-0.497374][-0.736252,0.371329,-0.565728][0.106251,0.620302,0][-0.278155,-0.116783,-0.437471][-0.335162,-0.149884,-0.930162][0.0498358,0.64203,0][-0.298814,-0.100073,-0.427427][-0.64358,0.252906,-0.722387][0.0439152,0.637242,0][-0.0843572,-0.081444,-0.49447][-0.60865,-0.0616044,-0.791043][0.105374,0.631903,0][-0.096897,-0.124763,-0.47623][-0.45807,0.123059,-0.880357][0.10178,0.644317,0][-0.278155,-0.116783,-0.437471][-0.335162,-0.149884,-0.930162][0.0498358,0.64203,0][-0.0843572,-0.081444,-0.49447][-0.60865,-0.0616044,-0.791043][0.105374,0.631903,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.0423218,0.662939,0][-0.278155,-0.116783,-0.437471][-0.335162,-0.149884,-0.930162][0.0498358,0.64203,0][-0.096897,-0.124763,-0.47623][-0.45807,0.123059,-0.880357][0.10178,0.644317,0][-0.229922,-0.18533,-0.465614][-0.543393,0.482944,-0.686651][0.506189,0.185211,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.533803,0.19666,0][-0.096897,-0.124763,-0.47623][-0.45807,0.123059,-0.880357][0.469691,0.196632,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.0423218,0.662939,0][-0.332841,-0.124092,-0.409855][-0.414241,-0.0134431,-0.910068][0.034164,0.644125,0][-0.278155,-0.116783,-0.437471][-0.335162,-0.149884,-0.930162][0.0498358,0.64203,0][-0.35659,-0.196288,-0.382306][-0.240678,-0.741179,-0.62668][0.027358,0.664815,0][-0.332841,-0.124092,-0.409855][-0.414241,-0.0134431,-0.910068][0.034164,0.644125,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.0423218,0.662939,0][-0.35659,-0.196288,-0.382306][-0.240678,-0.741179,-0.62668][0.027358,0.664815,0][-0.41716,-0.134935,-0.36153][-0.767353,0.180297,-0.615356][0.01,0.647232,0][-0.332841,-0.124092,-0.409855][-0.414241,-0.0134431,-0.910068][0.034164,0.644125,0][-0.442086,-0.210538,-0.286361][-0.647408,-0.742014,-0.174007][0.646938,0.770219,0][-0.41716,-0.134935,-0.36153][-0.767353,0.180297,-0.615356][0.666918,0.746091,0][-0.35659,-0.196288,-0.382306][-0.240678,-0.741179,-0.62668][0.683479,0.764794,0][-0.41716,-0.134935,-0.36153][-0.767353,0.180297,-0.615356][0.862491,0.291219,0][-0.435091,-0.109951,-0.287514][-0.930837,0.0954774,-0.352741][0.872537,0.310173,0][-0.379573,-0.1067,-0.345883][-0.879212,0.422151,-0.22085][0.852188,0.299857,0][-0.439048,-0.154088,-0.315018][-0.944647,0.0294687,-0.326762][0.466936,0.409796,0][-0.435091,-0.109951,-0.287514][-0.930837,0.0954774,-0.352741][0.459054,0.397147,0][-0.41716,-0.134935,-0.36153][-0.767353,0.180297,-0.615356][0.480265,0.404307,0][-0.442086,-0.210538,-0.286361][-0.647408,-0.742014,-0.174007][0.458723,0.425973,0][-0.439048,-0.154088,-0.315018][-0.944647,0.0294687,-0.326762][0.466936,0.409796,0][-0.41716,-0.134935,-0.36153][-0.767353,0.180297,-0.615356][0.480265,0.404307,0][-0.229922,-0.18533,-0.465614][-0.543393,0.482944,-0.686651][0.900404,0.709922,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.916999,0.693952,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.942017,0.711592,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.637556,0.511273,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.632138,0.534228,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.606232,0.533562,0][-0.229922,-0.18533,-0.465614][-0.543393,0.482944,-0.686651][0.900404,0.709922,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.942017,0.711592,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.927339,0.7227,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.637556,0.511273,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.606232,0.533562,0][-0.367739,-0.19225,-0.317353][-0.803135,0.219964,-0.553705][0.616047,0.512796,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.606232,0.533562,0][-0.389321,-0.263381,-0.228135][-0.390944,-0.507866,0.767617][0.591258,0.534122,0][-0.377542,-0.193339,-0.243283][0.483356,-0.439256,0.757246][0.594846,0.513901,0][-0.367739,-0.19225,-0.317353][-0.803135,0.219964,-0.553705][0.616047,0.512796,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.606232,0.533562,0][-0.377542,-0.193339,-0.243283][0.483356,-0.439256,0.757246][0.594846,0.513901,0][-0.420127,-0.210538,-0.286361][0.0838206,-0.99626,0.0210021][0.0321033,0.448904,0][-0.367739,-0.19225,-0.317353][-0.803135,0.219964,-0.553705][0.0214955,0.462752,0][-0.377542,-0.193339,-0.243283][0.483356,-0.439256,0.757246][0.016171,0.442013,0][-0.420127,-0.210538,-0.286361][0.0838206,-0.99626,0.0210021][0.703123,0.186311,0][-0.367739,-0.19225,-0.317353][-0.803135,0.219964,-0.553705][0.68558,0.191209,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.657717,0.186922,0][-0.466019,-0.169981,-0.0677555][-0.685121,-0.72089,0.104534][0.0208971,0.38588,0][-0.44406,-0.169981,-0.0677555][0.736917,-0.665961,0.115968][0.0150599,0.388231,0][-0.449803,-0.170113,-0.0406284][0.761121,-0.630539,-0.152038][0.013682,0.380405,0][-0.466019,-0.169981,-0.0677555][-0.685121,-0.72089,0.104534][0.0208971,0.38588,0][-0.449803,-0.170113,-0.0406284][0.761121,-0.630539,-0.152038][0.013682,0.380405,0][-0.459102,-0.170056,-0.0360383][-0.706429,-0.653491,-0.271859][0.0156625,0.378189,0][-0.4604,-0.181209,-0.0293556][-0.792094,-0.358161,-0.494275][0.280143,0.712566,0][-0.449803,-0.170113,-0.0406284][0.761121,-0.630539,-0.152038][0.284077,0.710603,0][-0.449644,-0.181451,-0.0298285][0.662542,-0.253587,-0.704792][0.28302,0.713675,0][-0.4604,-0.181209,-0.0293556][-0.792094,-0.358161,-0.494275][0.280143,0.712566,0][-0.459102,-0.170056,-0.0360383][-0.706429,-0.653491,-0.271859][0.281576,0.709685,0][-0.449803,-0.170113,-0.0406284][0.761121,-0.630539,-0.152038][0.284077,0.710603,0][-0.4604,-0.181209,-0.0293556][-0.792094,-0.358161,-0.494275][0.280143,0.712566,0][-0.449644,-0.181451,-0.0298285][0.662542,-0.253587,-0.704792][0.28302,0.713675,0][-0.433891,-0.223385,-0.0201754][0.364067,-0.688226,-0.627535][0.283197,0.726512,0][-0.433891,-0.223385,-0.0201754][0.364067,-0.688226,-0.627535][0.613691,0.414137,0][-0.449644,-0.181451,-0.0298285][0.662542,-0.253587,-0.704792][0.611398,0.40202,0][-0.412163,-0.270909,0.115575][0.186064,-0.931443,-0.31272][0.65203,0.429271,0][-0.449644,-0.181451,-0.0298285][0.662542,-0.253587,-0.704792][0.611398,0.40202,0][-0.412163,0.206464,0.115575][0.84364,-0.382331,-0.376954][0.657394,0.292571,0][-0.412163,-0.270909,0.115575][0.186064,-0.931443,-0.31272][0.65203,0.429271,0][-0.449644,0.203883,-0.0298285][0.913319,-0.398079,-0.0859155][0.615727,0.291676,0][-0.412163,0.206464,0.115575][0.84364,-0.382331,-0.376954][0.657394,0.292571,0][-0.449644,-0.181451,-0.0298285][0.662542,-0.253587,-0.704792][0.611398,0.40202,0][-0.412163,0.206464,0.115575][0.84364,-0.382331,-0.376954][0.146805,0.889921,0][-0.253395,0.213052,0.333087][0.564754,-0.343237,-0.750494][0.148693,0.967095,0][-0.253395,-0.27091,0.333087][0.203023,-0.94715,-0.248372][0.01,0.967095,0][-0.412163,0.206464,0.115575][0.84364,-0.382331,-0.376954][0.146805,0.889921,0][-0.253395,-0.27091,0.333087][0.203023,-0.94715,-0.248372][0.01,0.967095,0][-0.350244,-0.270909,0.237826][0.20314,-0.956436,-0.209676][0.01,0.928681,0][-0.412163,0.206464,0.115575][0.84364,-0.382331,-0.376954][0.657394,0.292571,0][-0.350244,-0.270909,0.237826][0.20314,-0.956436,-0.209676][0.687038,0.430644,0][-0.412163,-0.270909,0.115575][0.186064,-0.931443,-0.31272][0.65203,0.429271,0][0.00113318,-0.27091,0.416806][-4.49128e-007,-0.985382,-0.17036][0.280143,0.539372,0][-0.253395,0.213052,0.333087][0.564754,-0.343237,-0.750494][0.418836,0.466429,0][0.0011332,0.217128,0.416806][0,-0.323092,-0.946368][0.420004,0.539372,0][-0.132732,-0.27091,0.395006][0.0805189,-0.994264,-0.0704028][0.280143,0.501009,0][-0.253395,0.213052,0.333087][0.564754,-0.343237,-0.750494][0.418836,0.466429,0][0.00113318,-0.27091,0.416806][-4.49128e-007,-0.985382,-0.17036][0.280143,0.539372,0][-0.253395,-0.27091,0.333087][0.203023,-0.94715,-0.248372][0.280143,0.466429,0][-0.253395,0.213052,0.333087][0.564754,-0.343237,-0.750494][0.418836,0.466429,0][-0.132732,-0.27091,0.395006][0.0805189,-0.994264,-0.0704028][0.280143,0.501009,0][0.0011332,0.217128,0.416806][0,-0.323092,-0.946368][0.420004,0.539372,0][-0.180966,0.352688,0.234649][0.350186,-0.856512,-0.379154][0.458853,0.487186,0][0.00113317,0.355666,0.307347][-1.4473e-007,-0.841096,-0.540885][0.459706,0.539372,0][-0.253395,0.213052,0.333087][0.564754,-0.343237,-0.750494][0.418836,0.466429,0][-0.180966,0.352688,0.234649][0.350186,-0.856512,-0.379154][0.458853,0.487186,0][0.0011332,0.217128,0.416806][0,-0.323092,-0.946368][0.420004,0.539372,0][-0.291996,0.334861,0.068168][0.488533,-0.863297,-0.126701][0.1836,0.899251,0][-0.180966,0.352688,0.234649][0.350186,-0.856512,-0.379154][0.188709,0.956546,0][-0.253395,0.213052,0.333087][0.564754,-0.343237,-0.750494][0.148693,0.967095,0][-0.291996,0.334861,0.068168][0.488533,-0.863297,-0.126701][0.1836,0.899251,0][-0.253395,0.213052,0.333087][0.564754,-0.343237,-0.750494][0.148693,0.967095,0][-0.412163,0.206464,0.115575][0.84364,-0.382331,-0.376954][0.146805,0.889921,0][-0.300961,0.329981,-0.0298285][0.44534,-0.895265,-0.0131705][0.0594093,0.343024,0][-0.412163,0.206464,0.115575][0.84364,-0.382331,-0.376954][0.01,0.360649,0][-0.449644,0.203883,-0.0298285][0.913319,-0.398079,-0.0859155][0.0236582,0.319842,0][-0.300961,0.329981,-0.0298285][0.44534,-0.895265,-0.0131705][0.347981,0.243099,0][-0.291996,0.334861,0.068168][0.488533,-0.863297,-0.126701][0.320214,0.248219,0][-0.412163,0.206464,0.115575][0.84364,-0.382331,-0.376954][0.302461,0.199135,0][-0.0576523,-0.0055,-0.506831][-0.851629,0.312168,-0.421045][0.347899,0.665959,0][-0.0629437,-0.0055,-0.47376][-0.335125,0.055238,0.940553][0.348271,0.656489,0][-0.0751454,0.123414,-0.458419][-0.287332,-0.765149,0.576184][0.385358,0.653545,0][-0.0718383,0.129267,-0.469002][-0.471007,-0.158364,-0.867798][0.386916,0.656641,0][-0.0576523,-0.0055,-0.506831][-0.851629,0.312168,-0.421045][0.347899,0.665959,0][-0.0751454,0.123414,-0.458419][-0.287332,-0.765149,0.576184][0.385358,0.653545,0][-0.0576523,-0.0055,-0.506831][-0.851629,0.312168,-0.421045][0.347899,0.665959,0][-0.0812956,-0.040965,-0.497374][-0.736252,0.371329,-0.565728][0.33785,0.662853,0][-0.086587,-0.0387702,-0.477531][-0.178866,0.673923,0.716823][0.338701,0.657195,0][-0.0576523,-0.0055,-0.506831][-0.851629,0.312168,-0.421045][0.347899,0.665959,0][-0.086587,-0.0387702,-0.477531][-0.178866,0.673923,0.716823][0.338701,0.657195,0][-0.0629437,-0.0055,-0.47376][-0.335125,0.055238,0.940553][0.348271,0.656489,0][-0.298814,-0.100073,-0.427427][-0.64358,0.252906,-0.722387][0.753838,0.570476,0][-0.086587,-0.0387702,-0.477531][-0.178866,0.673923,0.716823][0.816156,0.565826,0][-0.0812956,-0.040965,-0.497374][-0.736252,0.371329,-0.565728][0.819317,0.570791,0][-0.298814,-0.100073,-0.427427][-0.64358,0.252906,-0.722387][0.753838,0.570476,0][-0.297351,-0.094952,-0.414258][0.172728,0.960123,0.219837][0.7531,0.566751,0][-0.086587,-0.0387702,-0.477531][-0.178866,0.673923,0.716823][0.816156,0.565826,0][-0.298814,-0.100073,-0.427427][-0.64358,0.252906,-0.722387][0.753838,0.570476,0][-0.322627,-0.0885997,-0.388982][0.861209,0.503756,0.0674473][0.744009,0.562029,0][-0.297351,-0.094952,-0.414258][0.172728,0.960123,0.219837][0.7531,0.566751,0][-0.324822,-0.0922577,-0.401419][-0.104937,0.586263,-0.803295][0.744484,0.565617,0][-0.322627,-0.0885997,-0.388982][0.861209,0.503756,0.0674473][0.744009,0.562029,0][-0.298814,-0.100073,-0.427427][-0.64358,0.252906,-0.722387][0.753838,0.570476,0][-0.348465,0.0015931,-0.386511][0.241434,0.112282,-0.9639][0.511316,0.345597,0][-0.322627,-0.0885997,-0.388982][0.861209,0.503756,0.0674473][0.509595,0.371396,0][-0.324822,-0.0922577,-0.401419][-0.104937,0.586263,-0.803295][0.505992,0.372304,0][-0.348465,0.0015931,-0.386511][0.241434,0.112282,-0.9639][0.511316,0.345597,0][-0.342613,0.00159309,-0.37261][0.994957,0.0596342,-0.0806441][0.515296,0.345753,0][-0.322627,-0.0885997,-0.388982][0.861209,0.503756,0.0674473][0.509595,0.371396,0][-0.348465,0.0015931,-0.386511][0.241434,0.112282,-0.9639][0.511316,0.345597,0][-0.336421,0.0657691,-0.374975][0.94672,-0.319399,-0.0413045][0.51534,0.327349,0][-0.342613,0.00159309,-0.37261][0.994957,0.0596342,-0.0806441][0.515296,0.345753,0][-0.343737,0.0701588,-0.388875][0.0102185,-0.342404,-0.939497][0.511409,0.325936,0][-0.336421,0.0657691,-0.374975][0.94672,-0.319399,-0.0413045][0.51534,0.327349,0][-0.348465,0.0015931,-0.386511][0.241434,0.112282,-0.9639][0.511316,0.345597,0][-0.286993,0.133996,-0.436162][-0.246898,-0.308098,-0.918758][0.575614,0.546647,0][-0.284798,0.123022,-0.417872][0.512695,-0.858529,0.0085265][0.574827,0.551868,0][-0.336421,0.0657691,-0.374975][0.94672,-0.319399,-0.0413045][0.557299,0.559788,0][-0.343737,0.0701588,-0.388875][0.0102185,-0.342404,-0.939497][0.556336,0.555391,0][-0.286993,0.133996,-0.436162][-0.246898,-0.308098,-0.918758][0.575614,0.546647,0][-0.336421,0.0657691,-0.374975][0.94672,-0.319399,-0.0413045][0.557299,0.559788,0][-0.166412,0.150546,-0.46217][-0.200675,-0.376492,-0.904424][0.610908,0.548644,0][-0.166412,0.141035,-0.440221][0.0948891,-0.956322,0.276484][0.609237,0.554708,0][-0.284798,0.123022,-0.417872][0.512695,-0.858529,0.0085265][0.574827,0.551868,0][-0.286993,0.133996,-0.436162][-0.246898,-0.308098,-0.918758][0.575614,0.546647,0][-0.166412,0.150546,-0.46217][-0.200675,-0.376492,-0.904424][0.610908,0.548644,0][-0.284798,0.123022,-0.417872][0.512695,-0.858529,0.0085265][0.574827,0.551868,0][-0.166412,0.150546,-0.46217][-0.200675,-0.376492,-0.904424][0.610908,0.548644,0][-0.0718383,0.129267,-0.469002][-0.471007,-0.158364,-0.867798][0.637556,0.553959,0][-0.0751454,0.123414,-0.458419][-0.287332,-0.765149,0.576184][0.635837,0.55663,0][-0.166412,0.150546,-0.46217][-0.200675,-0.376492,-0.904424][0.610908,0.548644,0][-0.0751454,0.123414,-0.458419][-0.287332,-0.765149,0.576184][0.635837,0.55663,0][-0.166412,0.141035,-0.440221][0.0948891,-0.956322,0.276484][0.609237,0.554708,0][-0.420127,-0.210538,-0.286361][0.0838206,-0.99626,0.0210021][0.0321033,0.448904,0][-0.377542,-0.193339,-0.243283][0.483356,-0.439256,0.757246][0.016171,0.442013,0][-0.44406,-0.179663,-0.144581][0.590691,-0.739298,0.3233][0.0232854,0.408653,0][-0.449803,-0.170113,-0.0406284][0.761121,-0.630539,-0.152038][0.608433,0.398652,0][-0.449644,0.203883,-0.0298285][0.913319,-0.398079,-0.0859155][0.615727,0.291676,0][-0.449644,-0.181451,-0.0298285][0.662542,-0.253587,-0.704792][0.611398,0.40202,0][-0.44406,0.199658,-0.144581][0.890617,-0.362062,0.275159][0.582819,0.291597,0][-0.44406,-0.169981,-0.0677555][0.736917,-0.665961,0.115968][0.600666,0.398309,0][-0.44406,-0.179663,-0.144581][0.590691,-0.739298,0.3233][0.578558,0.400219,0][-0.44406,-0.169981,-0.0677555][0.736917,-0.665961,0.115968][0.600666,0.398309,0][-0.449644,0.203883,-0.0298285][0.913319,-0.398079,-0.0859155][0.615727,0.291676,0][-0.449803,-0.170113,-0.0406284][0.761121,-0.630539,-0.152038][0.608433,0.398652,0][-0.44406,0.199658,-0.144581][0.890617,-0.362062,0.275159][0.582819,0.291597,0][-0.449644,0.203883,-0.0298285][0.913319,-0.398079,-0.0859155][0.615727,0.291676,0][-0.44406,-0.169981,-0.0677555][0.736917,-0.665961,0.115968][0.600666,0.398309,0][-0.30821,0.32603,-0.154059][0.471766,-0.861751,0.186607][0.0770357,0.312022,0][-0.300961,0.329981,-0.0298285][0.44534,-0.895265,-0.0131705][0.0594093,0.343024,0][-0.449644,0.203883,-0.0298285][0.913319,-0.398079,-0.0859155][0.0236582,0.319842,0][-0.44406,0.199658,-0.144581][0.890617,-0.362062,0.275159][0.0428925,0.29312,0][-0.30821,0.32603,-0.154059][0.471766,-0.861751,0.186607][0.0770357,0.312022,0][-0.449644,0.203883,-0.0298285][0.913319,-0.398079,-0.0859155][0.0236582,0.319842,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.551948,0.292296,0][-0.44406,-0.179663,-0.144581][0.590691,-0.739298,0.3233][0.578558,0.400219,0][-0.377542,-0.193339,-0.243283][0.483356,-0.439256,0.757246][0.55014,0.403026,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.551948,0.292296,0][-0.44406,0.199658,-0.144581][0.890617,-0.362062,0.275159][0.582819,0.291597,0][-0.44406,-0.179663,-0.144581][0.590691,-0.739298,0.3233][0.578558,0.400219,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.40744,0.194401,0][-0.231295,0.3234,-0.269816][0.262771,-0.846138,0.463683][0.417016,0.24976,0][-0.30821,0.32603,-0.154059][0.471766,-0.861751,0.186607][0.383275,0.237882,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.40744,0.194401,0][-0.30821,0.32603,-0.154059][0.471766,-0.861751,0.186607][0.383275,0.237882,0][-0.44406,0.199658,-0.144581][0.890617,-0.362062,0.275159][0.376242,0.185211,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.0107841,0.814019,0][-0.0344023,-0.125444,-0.489693][0.623794,0.408523,0.666326][0.0554756,0.783693,0][-0.140224,-0.156799,-0.445546][0.393756,0.00841703,0.919176][0.0464902,0.814019,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.0107841,0.814019,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.01,0.773509,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.0554756,0.773509,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.0107841,0.814019,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.0554756,0.773509,0][-0.0344023,-0.125444,-0.489693][0.623794,0.408523,0.666326][0.0554756,0.783693,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.103168,0.693779,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.0909381,0.739254,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.0881839,0.693779,0][-0.274002,-0.17699,-0.373223][0.706654,0.152214,0.690993][0.513114,0.396885,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.527783,0.423872,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.50342,0.424878,0][-0.274002,-0.17699,-0.373223][0.706654,0.152214,0.690993][0.513114,0.396885,0][-0.326261,-0.180746,-0.287194][0.778671,0.0186611,0.627155][0.537707,0.398927,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.527783,0.423872,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.0107841,0.814019,0][-0.140224,-0.156799,-0.445546][0.393756,0.00841703,0.919176][0.0464902,0.814019,0][-0.274002,-0.17699,-0.373223][0.706654,0.152214,0.690993][0.0407037,0.852356,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.0123522,0.848516,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.0107841,0.814019,0][-0.274002,-0.17699,-0.373223][0.706654,0.152214,0.690993][0.0407037,0.852356,0][-0.326261,-0.180746,-0.287194][0.778671,0.0186611,0.627155][0.537707,0.398927,0][-0.389321,-0.263381,-0.228135][-0.390944,-0.507866,0.767617][0.553691,0.423253,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.527783,0.423872,0][-0.326261,-0.180746,-0.287194][0.778671,0.0186611,0.627155][0.403544,0.711871,0][-0.377542,-0.193339,-0.243283][0.483356,-0.439256,0.757246][0.409896,0.698136,0][-0.389321,-0.263381,-0.228135][-0.390944,-0.507866,0.767617][0.430244,0.69866,0][-0.086587,-0.0387702,-0.477531][-0.178866,0.673923,0.716823][0.0803145,0.798648,0][-0.140224,-0.156799,-0.445546][0.393756,0.00841703,0.919176][0.0464902,0.814019,0][-0.0539422,-0.0403009,-0.489428][0.831007,-0.235348,0.504023][0.0798759,0.789292,0][-0.140224,-0.156799,-0.445546][0.393756,0.00841703,0.919176][0.0464902,0.814019,0][-0.0344023,-0.125444,-0.489693][0.623794,0.408523,0.666326][0.0554756,0.783693,0][-0.0587173,-0.0962159,-0.489728][0.821424,0.21549,0.528041][0.0638518,0.790661,0][-0.0587173,-0.0962159,-0.489728][0.821424,0.21549,0.528041][0.0638518,0.790661,0][-0.0539422,-0.0403009,-0.489428][0.831007,-0.235348,0.504023][0.0798759,0.789292,0][-0.140224,-0.156799,-0.445546][0.393756,0.00841703,0.919176][0.0464902,0.814019,0][-0.140224,-0.156799,-0.445546][0.393756,0.00841703,0.919176][0.0464902,0.814019,0][-0.086587,-0.0387702,-0.477531][-0.178866,0.673923,0.716823][0.0803145,0.798648,0][-0.297351,-0.094952,-0.414258][0.172728,0.960123,0.219837][0.0642141,0.859048,0][-0.274002,-0.17699,-0.373223][0.706654,0.152214,0.690993][0.0407037,0.852356,0][-0.140224,-0.156799,-0.445546][0.393756,0.00841703,0.919176][0.0464902,0.814019,0][-0.297351,-0.094952,-0.414258][0.172728,0.960123,0.219837][0.0642141,0.859048,0][-0.297351,-0.094952,-0.414258][0.172728,0.960123,0.219837][0.239816,0.0229268,0][-0.322627,-0.0885997,-0.388982][0.861209,0.503756,0.0674473][0.236217,0.0131644,0][-0.274002,-0.17699,-0.373223][0.706654,0.152214,0.690993][0.265464,0.0140962,0][-0.274002,-0.17699,-0.373223][0.706654,0.152214,0.690993][0.513114,0.396885,0][-0.350822,-0.0705871,-0.287194][0.89341,0.131189,0.429661][0.538945,0.367382,0][-0.326261,-0.180746,-0.287194][0.778671,0.0186611,0.627155][0.537707,0.398927,0][-0.322627,-0.0885997,-0.388982][0.861209,0.503756,0.0674473][0.509595,0.371396,0][-0.350822,-0.0705871,-0.287194][0.89341,0.131189,0.429661][0.538945,0.367382,0][-0.274002,-0.17699,-0.373223][0.706654,0.152214,0.690993][0.513114,0.396885,0][-0.342613,0.00159309,-0.37261][0.994957,0.0596342,-0.0806441][0.515296,0.345753,0][-0.350822,-0.0705871,-0.287194][0.89341,0.131189,0.429661][0.538945,0.367382,0][-0.322627,-0.0885997,-0.388982][0.861209,0.503756,0.0674473][0.509595,0.371396,0][-0.342613,0.00159309,-0.37261][0.994957,0.0596342,-0.0806441][0.515296,0.345753,0][-0.357839,0.0216338,-0.287194][0.978521,0.0412797,0.201971][0.539981,0.340974,0][-0.350822,-0.0705871,-0.287194][0.89341,0.131189,0.429661][0.538945,0.367382,0][-0.284798,0.123022,-0.417872][0.512695,-0.858529,0.0085265][0.503699,0.310472,0][-0.357839,0.118331,-0.287194][0.868163,-0.103317,0.485406][0.541067,0.313283,0][-0.336421,0.0657691,-0.374975][0.94672,-0.319399,-0.0413045][0.51534,0.327349,0][-0.284798,0.123022,-0.417872][0.512695,-0.858529,0.0085265][0.503699,0.310472,0][-0.284798,0.192573,-0.358874][0.534236,-0.536682,0.653119][0.521375,0.291219,0][-0.357839,0.118331,-0.287194][0.868163,-0.103317,0.485406][0.541067,0.313283,0][-0.0539422,-0.0403009,-0.489428][0.831007,-0.235348,0.504023][0.0798759,0.789292,0][-0.0165555,0.0384885,-0.503598][0.684621,-0.503928,0.526641][0.102455,0.778578,0][-0.0629437,-0.0055,-0.47376][-0.335125,0.055238,0.940553][0.089849,0.791872,0][-0.086587,-0.0387702,-0.477531][-0.178866,0.673923,0.716823][0.0803145,0.798648,0][-0.0539422,-0.0403009,-0.489428][0.831007,-0.235348,0.504023][0.0798759,0.789292,0][-0.0629437,-0.0055,-0.47376][-0.335125,0.055238,0.940553][0.089849,0.791872,0][-0.0629437,-0.0055,-0.47376][-0.335125,0.055238,0.940553][0.089849,0.791872,0][-0.0165555,0.0384885,-0.503598][0.684621,-0.503928,0.526641][0.102455,0.778578,0][-0.0751454,0.123414,-0.458419][-0.287332,-0.765149,0.576184][0.126793,0.795369,0][-0.0751454,0.123414,-0.458419][-0.287332,-0.765149,0.576184][0.126793,0.795369,0][-0.0165555,0.0384885,-0.503598][0.684621,-0.503928,0.526641][0.102455,0.778578,0][0.00113326,0.141089,-0.471031][-6.41022e-007,-0.397011,0.917814][0.131858,0.773509,0][0.00113327,0.0435716,-0.511434][-1.24944e-006,-0.922433,0.386157][0.103912,0.773509,0][0.00113326,0.141089,-0.471031][-6.41022e-007,-0.397011,0.917814][0.131858,0.773509,0][-0.0165555,0.0384885,-0.503598][0.684621,-0.503928,0.526641][0.102455,0.778578,0][-0.377542,-0.193339,-0.243283][0.483356,-0.439256,0.757246][0.409896,0.698136,0][-0.326261,-0.180746,-0.287194][0.778671,0.0186611,0.627155][0.403544,0.711871,0][-0.350822,-0.0705871,-0.287194][0.89341,0.131189,0.429661][0.373903,0.698927,0][-0.377542,-0.193339,-0.243283][0.483356,-0.439256,0.757246][0.55014,0.403026,0][-0.350822,-0.0705871,-0.287194][0.89341,0.131189,0.429661][0.538945,0.367382,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.551948,0.292296,0][-0.357839,0.118331,-0.287194][0.868163,-0.103317,0.485406][0.541067,0.313283,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.551948,0.292296,0][-0.357839,0.0216338,-0.287194][0.978521,0.0412797,0.201971][0.539981,0.340974,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.551948,0.292296,0][-0.350822,-0.0705871,-0.287194][0.89341,0.131189,0.429661][0.538945,0.367382,0][-0.357839,0.0216338,-0.287194][0.978521,0.0412797,0.201971][0.539981,0.340974,0][-0.231295,0.3234,-0.269816][0.262771,-0.846138,0.463683][0.184105,0.840118,0][-0.284798,0.192573,-0.358874][0.534236,-0.536682,0.653119][0.146612,0.855451,0][-0.166412,0.21729,-0.375991][0.279636,-0.602552,0.747486][0.153696,0.821524,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][-0.0812958,0.40625,-0.0214504][-0.059509,0.997404,-0.0405473][0.119033,0.146774,0][-0.0754579,0.40625,0.00694028][-0.0545336,0.998344,0.0183342][0.11881,0.138471,0][0.00113323,0.384615,-0.289312][3.44836e-007,0.965611,-0.25999][0.159516,0.216141,0][-0.0812958,0.40625,-0.0214504][-0.059509,0.997404,-0.0405473][0.119033,0.146774,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][-0.0754579,0.40625,0.00694028][-0.0545336,0.998344,0.0183342][0.11881,0.138471,0][-0.06323,0.40625,0.0323202][-0.0474733,0.998328,0.0329716][0.120565,0.13059,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][-0.06323,0.40625,0.0323202][-0.0474733,0.998328,0.0329716][0.120565,0.13059,0][-0.0442253,0.40625,0.0515651][-0.0337126,0.998394,0.0455291][0.124613,0.12398,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][-0.0442253,0.40625,0.0515651][-0.0337126,0.998394,0.0455291][0.124613,0.12398,0][-0.0204034,0.40625,0.0637519][-0.0173831,0.99836,0.0545409][0.130465,0.119025,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][-0.0204034,0.40625,0.0637519][-0.0173831,0.99836,0.0545409][0.130465,0.119025,0][0.00113319,0.40625,0.0668464][0,0.99845,0.0556613][0.136273,0.116756,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][0.00113319,0.40625,0.0668464][0,0.99845,0.0556613][0.136273,0.116756,0][0.0226698,0.40625,0.063752][0.0173844,0.99836,0.0545404][0.142484,0.116214,0][0.0464917,0.40625,0.0515651][0.0337139,0.998394,0.0455289][0.149927,0.11806,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][0.0226698,0.40625,0.063752][0.0173844,0.99836,0.0545404][0.142484,0.116214,0][0.0654964,0.40625,0.0323203][0.0474732,0.998328,0.0329722][0.156486,0.12219,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][0.0464917,0.40625,0.0515651][0.0337139,0.998394,0.0455289][0.149927,0.11806,0][0.0777243,0.40625,0.00694034][0.0545339,0.998344,0.0183343][0.161555,0.128474,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][0.0654964,0.40625,0.0323203][0.0474732,0.998328,0.0329722][0.156486,0.12219,0][0.0835622,0.40625,-0.0214503][0.0595095,0.997404,-0.0405472][0.165037,0.136015,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][0.0777243,0.40625,0.00694034][0.0545339,0.998344,0.0183343][0.161555,0.128474,0][0.00113323,0.384615,-0.289312][3.44836e-007,0.965611,-0.25999][0.159516,0.216141,0][0.0011332,0.406527,-0.0237357][4.24577e-007,0.999163,-0.040905][0.142184,0.142032,0][0.0835622,0.40625,-0.0214503][0.0595095,0.997404,-0.0405472][0.165037,0.136015,0][-0.231295,0.3234,-0.269816][0.262771,-0.846138,0.463683][0.184105,0.840118,0][-0.166412,0.21729,-0.375991][0.279636,-0.602552,0.747486][0.153696,0.821524,0][-0.0567257,0.240302,-0.403646][0.227804,-0.707166,0.669344][0.16029,0.79009,0][-0.0751454,0.123414,-0.458419][-0.287332,-0.765149,0.576184][0.126793,0.795369,0][0.00113326,0.141089,-0.471031][-6.41022e-007,-0.397011,0.917814][0.131858,0.773509,0][-0.0567257,0.240302,-0.403646][0.227804,-0.707166,0.669344][0.16029,0.79009,0][0.00113326,0.141089,-0.471031][-6.41022e-007,-0.397011,0.917814][0.131858,0.773509,0][0.00113325,0.250747,-0.423759][-8.95758e-007,-0.714996,0.699129][0.163284,0.773509,0][-0.0567257,0.240302,-0.403646][0.227804,-0.707166,0.669344][0.16029,0.79009,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.551948,0.292296,0][-0.357839,0.118331,-0.287194][0.868163,-0.103317,0.485406][0.541067,0.313283,0][-0.284798,0.192573,-0.358874][0.534236,-0.536682,0.653119][0.521375,0.291219,0][-0.377542,0.192997,-0.252127][0.765978,-0.341865,0.544431][0.40744,0.194401,0][-0.284798,0.192573,-0.358874][0.534236,-0.536682,0.653119][0.438817,0.210076,0][-0.231295,0.3234,-0.269816][0.262771,-0.846138,0.463683][0.417016,0.24976,0][-0.0751454,0.123414,-0.458419][-0.287332,-0.765149,0.576184][0.126793,0.795369,0][-0.0567257,0.240302,-0.403646][0.227804,-0.707166,0.669344][0.16029,0.79009,0][-0.166412,0.141035,-0.440221][0.0948891,-0.956322,0.276484][0.131843,0.821524,0][-0.0567257,0.240302,-0.403646][0.227804,-0.707166,0.669344][0.16029,0.79009,0][-0.166412,0.21729,-0.375991][0.279636,-0.602552,0.747486][0.153696,0.821524,0][-0.166412,0.141035,-0.440221][0.0948891,-0.956322,0.276484][0.131843,0.821524,0][-0.284798,0.123022,-0.417872][0.512695,-0.858529,0.0085265][0.126681,0.855451,0][-0.166412,0.141035,-0.440221][0.0948891,-0.956322,0.276484][0.131843,0.821524,0][-0.284798,0.192573,-0.358874][0.534236,-0.536682,0.653119][0.146612,0.855451,0][-0.166412,0.141035,-0.440221][0.0948891,-0.956322,0.276484][0.131843,0.821524,0][-0.166412,0.21729,-0.375991][0.279636,-0.602552,0.747486][0.153696,0.821524,0][-0.284798,0.192573,-0.358874][0.534236,-0.536682,0.653119][0.146612,0.855451,0][-0.342613,0.00159309,-0.37261][0.994957,0.0596342,-0.0806441][0.515296,0.345753,0][-0.336421,0.0657691,-0.374975][0.94672,-0.319399,-0.0413045][0.51534,0.327349,0][-0.357839,0.0216338,-0.287194][0.978521,0.0412797,0.201971][0.539981,0.340974,0][-0.336421,0.0657691,-0.374975][0.94672,-0.319399,-0.0413045][0.51534,0.327349,0][-0.357839,0.118331,-0.287194][0.868163,-0.103317,0.485406][0.541067,0.313283,0][-0.357839,0.0216338,-0.287194][0.978521,0.0412797,0.201971][0.539981,0.340974,0][-0.036477,-0.131148,-0.518954][-0.172933,0.813495,-0.555266][0.288994,0.753626,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.280143,0.746952,0][0.00113328,-0.131148,-0.550617][-0.386958,0.593677,-0.705557][0.289142,0.739537,0][-0.036477,-0.131148,-0.518954][-0.172933,0.813495,-0.555266][0.288994,0.753626,0][-0.0344023,-0.125444,-0.489693][0.623794,0.408523,0.666326][0.282144,0.7585,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.280143,0.746952,0][-0.0638375,-0.0996838,-0.52411][0.039114,-0.0168656,-0.999092][0.528666,0.801873,0][-0.0587173,-0.0962159,-0.489728][0.821424,0.21549,0.528041][0.518805,0.800965,0][-0.036477,-0.131148,-0.518954][-0.172933,0.813495,-0.555266][0.52894,0.79274,0][-0.036477,-0.131148,-0.518954][-0.172933,0.813495,-0.555266][0.52894,0.79274,0][-0.0587173,-0.0962159,-0.489728][0.821424,0.21549,0.528041][0.518805,0.800965,0][-0.0344023,-0.125444,-0.489693][0.623794,0.408523,0.666326][0.520397,0.792741,0][-0.0597334,-0.0394907,-0.528214][0.0850123,-0.0574182,-0.994724][0.526523,0.81903,0][-0.0539422,-0.0403009,-0.489428][0.831007,-0.235348,0.504023][0.515657,0.816677,0][-0.0587173,-0.0962159,-0.489728][0.821424,0.21549,0.528041][0.518805,0.800965,0][-0.0597334,-0.0394907,-0.528214][0.0850123,-0.0574182,-0.994724][0.526523,0.81903,0][-0.0587173,-0.0962159,-0.489728][0.821424,0.21549,0.528041][0.518805,0.800965,0][-0.0638375,-0.0996838,-0.52411][0.039114,-0.0168656,-0.999092][0.528666,0.801873,0][-0.0186926,0.0453269,-0.548734][-0.484326,-0.351377,-0.801226][0.527648,0.844013,0][-0.0165555,0.0384885,-0.503598][0.684621,-0.503928,0.526641][0.515326,0.839616,0][-0.0597334,-0.0394907,-0.528214][0.0850123,-0.0574182,-0.994724][0.526523,0.81903,0][-0.0165555,0.0384885,-0.503598][0.684621,-0.503928,0.526641][0.515326,0.839616,0][-0.0539422,-0.0403009,-0.489428][0.831007,-0.235348,0.504023][0.515657,0.816677,0][-0.0597334,-0.0394907,-0.528214][0.0850123,-0.0574182,-0.994724][0.526523,0.81903,0][0.00113327,0.050799,-0.559744][9.69897e-007,-0.220742,-0.975332][0.872537,0.398495,0][0.00113327,0.0435716,-0.511434][-1.24944e-006,-0.922433,0.386157][0.858692,0.398495,0][-0.0186926,0.0453269,-0.548734][-0.484326,-0.351377,-0.801226][0.869382,0.392813,0][0.00113327,0.0435716,-0.511434][-1.24944e-006,-0.922433,0.386157][0.858692,0.398495,0][-0.0165555,0.0384885,-0.503598][0.684621,-0.503928,0.526641][0.856447,0.393426,0][-0.0186926,0.0453269,-0.548734][-0.484326,-0.351377,-0.801226][0.869382,0.392813,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.425864,0.966626,0][-0.389321,-0.263381,-0.228135][-0.390944,-0.507866,0.767617][0.451772,0.966008,0][-0.380541,-0.294316,-0.247004][-0.215448,-0.752374,0.622507][0.446021,0.974654,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.425864,0.966626,0][-0.380541,-0.294316,-0.247004][-0.215448,-0.752374,0.622507][0.446021,0.974654,0][-0.334177,-0.298508,-0.313358][0.617343,-0.746519,0.248185][0.426973,0.975109,0][-0.389321,-0.263381,-0.228135][-0.390944,-0.507866,0.767617][0.75771,0.899674,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.772683,0.899115,0][-0.380541,-0.294316,-0.247004][-0.215448,-0.752374,0.622507][0.763445,0.908332,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.772683,0.899115,0][-0.375735,-0.294316,-0.276678][-0.659148,-0.710468,-0.246495][0.771943,0.908014,0][-0.380541,-0.294316,-0.247004][-0.215448,-0.752374,0.622507][0.763445,0.908332,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.410892,0.966039,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.425864,0.966626,0][-0.334177,-0.298508,-0.335961][0.17724,-0.856393,-0.484951][0.4205,0.974855,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.425864,0.966626,0][-0.334177,-0.298508,-0.313358][0.617343,-0.746519,0.248185][0.426973,0.975109,0][-0.334177,-0.298508,-0.335961][0.17724,-0.856393,-0.484951][0.4205,0.974855,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.772683,0.899115,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.798589,0.899781,0][-0.334177,-0.298508,-0.335961][0.17724,-0.856393,-0.484951][0.788965,0.90858,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.772683,0.899115,0][-0.334177,-0.298508,-0.335961][0.17724,-0.856393,-0.484951][0.788965,0.90858,0][-0.375735,-0.294316,-0.276678][-0.659148,-0.710468,-0.246495][0.771943,0.908014,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.895692,0.418773,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.910664,0.41936,0][-0.267801,-0.305352,-0.440447][0.170596,-0.738436,-0.652388][0.899666,0.42737,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.910664,0.41936,0][-0.267801,-0.305352,-0.399628][0.618402,-0.740457,0.263255][0.911355,0.427828,0][-0.267801,-0.305352,-0.440447][0.170596,-0.738436,-0.652388][0.899666,0.42737,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.910664,0.41936,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.935028,0.418355,0][-0.319061,-0.300012,-0.333417][-0.196331,-0.709284,0.677031][0.930375,0.427043,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.910664,0.41936,0][-0.319061,-0.300012,-0.333417][-0.196331,-0.709284,0.677031][0.930375,0.427043,0][-0.267801,-0.305352,-0.399628][0.618402,-0.740457,0.263255][0.911355,0.427828,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.556383,0.977695,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.571356,0.977135,0][-0.319061,-0.300012,-0.333417][-0.196331,-0.709284,0.677031][0.561019,0.986392,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.571356,0.977135,0][-0.319061,-0.300012,-0.374235][-0.699978,-0.669223,-0.249342][0.572709,0.985955,0][-0.319061,-0.300012,-0.333417][-0.196331,-0.709284,0.677031][0.561019,0.986392,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.571356,0.977135,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.595718,0.978186,0][-0.267801,-0.305352,-0.440447][0.170596,-0.738436,-0.652388][0.591728,0.986775,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.571356,0.977135,0][-0.267801,-0.305352,-0.440447][0.170596,-0.738436,-0.652388][0.591728,0.986775,0][-0.319061,-0.300012,-0.374235][-0.699978,-0.669223,-0.249342][0.572709,0.985955,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.563779,0.518831,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.563779,0.533815,0][-0.152013,-0.312958,-0.510823][0.277996,-0.728401,-0.62622][0.554733,0.52218,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.563779,0.533815,0][-0.152013,-0.312958,-0.468779][0.559968,-0.721694,0.406932][0.554733,0.534228,0][-0.152013,-0.312958,-0.510823][0.277996,-0.728401,-0.62622][0.554733,0.52218,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.471094,0.328237,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.470879,0.293705,0][-0.248811,-0.308558,-0.41488][-0.301815,-0.709131,0.637213][0.480093,0.297447,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.471094,0.328237,0][-0.248811,-0.308558,-0.41488][-0.301815,-0.709131,0.637213][0.480093,0.297447,0][-0.152013,-0.312958,-0.468779][0.559968,-0.721694,0.406932][0.480265,0.325216,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.871061,0.531156,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.856077,0.531156,0][-0.248811,-0.308558,-0.41488][-0.301815,-0.709131,0.637213][0.867712,0.521803,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.856077,0.531156,0][-0.248811,-0.308558,-0.456924][-0.598303,-0.692352,-0.403338][0.855664,0.521803,0][-0.248811,-0.308558,-0.41488][-0.301815,-0.709131,0.637213][0.867712,0.521803,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.648367,0.203602,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.648089,0.238134,0][-0.152013,-0.312958,-0.510823][0.277996,-0.728401,-0.62622][0.638923,0.235096,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.648367,0.203602,0][-0.152013,-0.312958,-0.510823][0.277996,-0.728401,-0.62622][0.638923,0.235096,0][-0.248811,-0.308558,-0.456924][-0.598303,-0.692352,-0.403338][0.639147,0.207328,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.531793,0.544804,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.531793,0.559788,0][-0.00835323,-0.315457,-0.545857][0.415355,-0.69518,-0.586691][0.522815,0.546737,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.531793,0.559788,0][-0.00835324,-0.315457,-0.502134][0.528525,-0.688406,0.496747][0.522815,0.559267,0][-0.00835323,-0.315457,-0.545857][0.415355,-0.69518,-0.586691][0.522815,0.546737,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.726278,0.185995,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.766788,0.185211,0][-0.128462,-0.31317,-0.476969][-0.399655,-0.695862,0.596701][0.763418,0.194317,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.726278,0.185995,0][-0.128462,-0.31317,-0.476969][-0.399655,-0.695862,0.596701][0.763418,0.194317,0][-0.00835324,-0.315457,-0.502134][0.528525,-0.688406,0.496747][0.728997,0.194973,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.548618,0.544804,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.548618,0.559788,0][-0.128462,-0.31317,-0.476969][-0.399655,-0.695862,0.596701][0.539511,0.546738,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.548618,0.559788,0][-0.128462,-0.31317,-0.520691][-0.522161,-0.693101,-0.496949][0.539511,0.559267,0][-0.128462,-0.31317,-0.476969][-0.399655,-0.695862,0.596701][0.539511,0.546738,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.410892,0.933879,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.451403,0.933149,0][-0.128462,-0.31317,-0.520691][-0.522161,-0.693101,-0.496949][0.4146,0.942853,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.451403,0.933149,0][-0.00835323,-0.315457,-0.545857][0.415355,-0.69518,-0.586691][0.449021,0.942222,0][-0.128462,-0.31317,-0.520691][-0.522161,-0.693101,-0.496949][0.4146,0.942853,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.257762,0.211319,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.268377,0.211376,0][-0.148762,-0.335756,-0.468062][-0.377,0.702222,0.60395][0.26748,0.219055,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.257762,0.211319,0][-0.148762,-0.335756,-0.468062][-0.377,0.702222,0.60395][0.26748,0.219055,0][-0.150114,-0.337151,-0.50064][-0.516371,0.679432,-0.521281][0.258136,0.219004,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.91614,0.80896,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.869993,0.808885,0][-0.0094043,-0.342679,-0.528786][0.400942,0.670285,-0.62447][0.912827,0.801169,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.869993,0.808885,0][-0.150114,-0.337151,-0.50064][-0.516371,0.679432,-0.521281][0.872471,0.801092,0][-0.0094043,-0.342679,-0.528786][0.400942,0.670285,-0.62447][0.912827,0.801169,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.249078,0.309247,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.249078,0.298641,0][-0.0094043,-0.342679,-0.528786][0.400942,0.670285,-0.62447][0.256988,0.299824,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.249078,0.309247,0][-0.0094043,-0.342679,-0.528786][0.400942,0.670285,-0.62447][0.256988,0.299824,0][-0.00805186,-0.342679,-0.496208][0.551986,0.661959,0.507073][0.256988,0.30916,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.693653,0.867232,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.647927,0.867694,0][-0.00805186,-0.342679,-0.496208][0.551986,0.661959,0.507073][0.650867,0.859893,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.693653,0.867232,0][-0.00805186,-0.342679,-0.496208][0.551986,0.661959,0.507073][0.650867,0.859893,0][-0.148762,-0.335756,-0.468062][-0.377,0.702222,0.60395][0.691239,0.859491,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.132671,0.629838,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.143337,0.62976,0][-0.262383,-0.326811,-0.415854][-0.25897,0.757351,0.599462][0.141511,0.637578,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.132671,0.629838,0][-0.262383,-0.326811,-0.415854][-0.25897,0.757351,0.599462][0.141511,0.637578,0][-0.263613,-0.329982,-0.445476][-0.557168,0.688377,-0.464435][0.132974,0.63764,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.864633,0.374007,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.864058,0.340849,0][-0.171149,-0.335466,-0.491509][0.2884,0.692521,-0.661241][0.872537,0.370132,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.864058,0.340849,0][-0.263613,-0.329982,-0.445476][-0.557168,0.688377,-0.464435][0.872077,0.343591,0][-0.171149,-0.335466,-0.491509][0.2884,0.692521,-0.661241][0.872537,0.370132,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.656393,0.516642,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.656431,0.527258,0][-0.171149,-0.335466,-0.491509][0.2884,0.692521,-0.661241][0.648365,0.524236,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.656393,0.516642,0][-0.171149,-0.335466,-0.491509][0.2884,0.692521,-0.661241][0.648365,0.524236,0][-0.169919,-0.334197,-0.461887][0.593494,0.697196,0.402097][0.648335,0.515739,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.726836,0.865887,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.693653,0.867232,0][-0.169919,-0.334197,-0.461887][0.593494,0.697196,0.402097][0.697315,0.859283,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.726836,0.865887,0][-0.169919,-0.334197,-0.461887][0.593494,0.697196,0.402097][0.697315,0.859283,0][-0.262383,-0.326811,-0.415854][-0.25897,0.757351,0.599462][0.723875,0.858207,0][-0.325794,-0.31129,-0.348787][0.096892,0.796056,0.597417][0.750828,0.294143,0][-0.280307,-0.320063,-0.402031][0.651846,0.742733,0.153113][0.770866,0.293037,0][-0.33714,-0.316238,-0.356323][-0.8013,0.597243,-0.0349128][0.750573,0.298038,0][-0.280307,-0.320063,-0.402031][0.651846,0.742733,0.153113][0.770866,0.293037,0][-0.281533,-0.326532,-0.42881][0.177519,0.643671,-0.744429][0.776754,0.297972,0][-0.33714,-0.316238,-0.356323][-0.8013,0.597243,-0.0349128][0.750573,0.298038,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.60863,0.650704,0][-0.280307,-0.320063,-0.402031][0.651846,0.742733,0.153113][0.602984,0.658439,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.590332,0.644327,0][-0.280307,-0.320063,-0.402031][0.651846,0.742733,0.153113][0.602984,0.658439,0][-0.325794,-0.31129,-0.348787][0.096892,0.796056,0.597417][0.588382,0.653349,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.590332,0.644327,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.618487,0.654779,0][-0.281533,-0.326532,-0.42881][0.177519,0.643671,-0.744429][0.610611,0.660481,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.60863,0.650704,0][-0.281533,-0.326532,-0.42881][0.177519,0.643671,-0.744429][0.610611,0.660481,0][-0.280307,-0.320063,-0.402031][0.651846,0.742733,0.153113][0.602984,0.658439,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.60863,0.650704,0][-0.34497,-0.348395,-0.349149][-0.825016,0.0991842,-0.556337][0.379684,0.822142,0][-0.33714,-0.316238,-0.356323][-0.8013,0.597243,-0.0349128][0.379588,0.812701,0][-0.281533,-0.326532,-0.42881][0.177519,0.643671,-0.744429][0.400487,0.810843,0][-0.34497,-0.348395,-0.349149][-0.825016,0.0991842,-0.556337][0.379684,0.822142,0][-0.281533,-0.326532,-0.42881][0.177519,0.643671,-0.744429][0.400487,0.810843,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.406565,0.818432,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.497141,0.502027,0][-0.325794,-0.31129,-0.348787][0.096892,0.796056,0.597417][0.496843,0.510992,0][-0.33714,-0.316238,-0.356323][-0.8013,0.597243,-0.0349128][0.493922,0.508979,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.497141,0.502027,0][-0.33714,-0.316238,-0.356323][-0.8013,0.597243,-0.0349128][0.493922,0.508979,0][-0.34497,-0.348395,-0.349149][-0.825016,0.0991842,-0.556337][0.493482,0.499504,0][-0.380654,-0.300839,-0.25673][0.147741,0.96983,0.193914][0.7939,0.605796,0][-0.356076,-0.305608,-0.321513][0.296109,0.934181,-0.199062][0.773997,0.605607,0][-0.395728,-0.309344,-0.254914][-0.821937,0.569551,-0.00564716][0.795791,0.601181,0][-0.356076,-0.305608,-0.321513][0.296109,0.934181,-0.199062][0.773997,0.605607,0][-0.362545,-0.315116,-0.334249][-0.460526,0.43379,-0.77443][0.7711,0.601657,0][-0.395728,-0.309344,-0.254914][-0.821937,0.569551,-0.00564716][0.795791,0.601181,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.590332,0.644327,0][-0.356076,-0.305608,-0.321513][0.296109,0.934181,-0.199062][0.580739,0.651041,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.560081,0.637352,0][-0.356076,-0.305608,-0.321513][0.296109,0.934181,-0.199062][0.580739,0.651041,0][-0.380654,-0.300839,-0.25673][0.147741,0.96983,0.193914][0.563781,0.643362,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.560081,0.637352,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.799375,0.605495,0][-0.380654,-0.300839,-0.25673][0.147741,0.96983,0.193914][0.7939,0.605796,0][-0.395728,-0.309344,-0.254914][-0.821937,0.569551,-0.00564716][0.795791,0.601181,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.636002,0.155404,0][-0.395728,-0.309344,-0.254914][-0.821937,0.569551,-0.00564716][0.633364,0.162056,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.627481,0.155401,0][-0.34497,-0.348395,-0.349149][-0.825016,0.0991842,-0.556337][0.696334,0.570787,0][-0.362545,-0.315116,-0.334249][-0.460526,0.43379,-0.77443][0.706574,0.574171,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.694629,0.574892,0][-0.362545,-0.315116,-0.334249][-0.460526,0.43379,-0.77443][0.359399,0.716076,0][-0.356076,-0.305608,-0.321513][0.296109,0.934181,-0.199062][0.361813,0.72036,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.348038,0.720151,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.346868,0.82502,0][-0.395728,-0.309344,-0.254914][-0.821937,0.569551,-0.00564716][0.35084,0.817395,0][-0.362545,-0.315116,-0.334249][-0.460526,0.43379,-0.77443][0.373355,0.813828,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.346868,0.82502,0][-0.362545,-0.315116,-0.334249][-0.460526,0.43379,-0.77443][0.373355,0.813828,0][-0.34497,-0.348395,-0.349149][-0.825016,0.0991842,-0.556337][0.379684,0.822142,0][-0.35659,-0.196288,-0.382306][-0.240678,-0.741179,-0.62668][0.0254862,0.481212,0][-0.304374,-0.189742,-0.392556][-0.530126,-0.190557,-0.826229][0.0127033,0.489527,0][-0.420127,-0.210538,-0.286361][0.0838206,-0.99626,0.0210021][0.0321033,0.448904,0][-0.35659,-0.196288,-0.382306][-0.240678,-0.741179,-0.62668][0.0254862,0.481212,0][-0.420127,-0.210538,-0.286361][0.0838206,-0.99626,0.0210021][0.0321033,0.448904,0][-0.442086,-0.210538,-0.286361][-0.647408,-0.742014,-0.174007][0.0379406,0.446553,0][-0.442086,-0.210538,-0.286361][-0.647408,-0.742014,-0.174007][0.0379406,0.446553,0][-0.420127,-0.210538,-0.286361][0.0838206,-0.99626,0.0210021][0.0321033,0.448904,0][-0.44406,-0.179663,-0.144581][0.590691,-0.739298,0.3233][0.0232854,0.408653,0][-0.442086,-0.210538,-0.286361][-0.647408,-0.742014,-0.174007][0.0379406,0.446553,0][-0.44406,-0.179663,-0.144581][0.590691,-0.739298,0.3233][0.0232854,0.408653,0][-0.466019,-0.179663,-0.144581][-0.821384,-0.568668,0.0440977][0.0291227,0.406302,0][-0.466019,-0.179663,-0.144581][-0.821384,-0.568668,0.0440977][0.0291227,0.406302,0][-0.44406,-0.179663,-0.144581][0.590691,-0.739298,0.3233][0.0232854,0.408653,0][-0.44406,-0.169981,-0.0677555][0.736917,-0.665961,0.115968][0.0150599,0.388231,0][-0.466019,-0.179663,-0.144581][-0.821384,-0.568668,0.0440977][0.0291227,0.406302,0][-0.44406,-0.169981,-0.0677555][0.736917,-0.665961,0.115968][0.0150599,0.388231,0][-0.466019,-0.169981,-0.0677555][-0.685121,-0.72089,0.104534][0.0208971,0.38588,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.895692,0.394483,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.908574,0.38683,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.926201,0.3952,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.908574,0.38683,0][-0.389321,-0.263381,-0.228135][-0.390944,-0.507866,0.767617][0.94004,0.389157,0][-0.382786,-0.263381,-0.28042][-0.842614,-0.459518,-0.280795][0.926201,0.3952,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.609995,0.758658,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.568586,0.759485,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.606583,0.744068,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.568586,0.759485,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.565174,0.744895,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.606583,0.744068,0][-0.140224,-0.281393,-0.522508][-1.09828,0.214978,-2.85739][0.330965,0.114934,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.33207,0.154403,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.318083,0.122586,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.33207,0.154403,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.319188,0.162056,0][-0.140224,-0.281393,-0.470223][1.2259,-0.361718,2.7765][0.318083,0.122586,0][-0.260601,-0.275922,-0.45548][-1.99164,0.427742,-2.20546][0.533228,0.986225,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.502491,0.986439,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.521317,0.977135,0][-0.326261,-0.269082,-0.370669][-2.47013,-0.190991,-2.23399][0.502491,0.986439,0][-0.326261,-0.269082,-0.318384][5.30507,-1.10779,2.5437][0.49058,0.977349,0][-0.260601,-0.275922,-0.403195][1.81576,-0.462669,2.33906][0.521317,0.977135,0][-0.0812958,0.40625,-0.0214504][-0.059509,0.997404,-0.0405473][0.119033,0.146774,0][0.00113323,0.384615,-0.289312][3.44836e-007,0.965611,-0.25999][0.159516,0.216141,0][-0.197172,0.367548,-0.288561][-0.231637,0.932835,-0.275978][0.10413,0.228873,0][-0.0812958,0.40625,-0.0214504][-0.059509,0.997404,-0.0405473][0.119033,0.146774,0][-0.197172,0.367548,-0.288561][-0.231637,0.932835,-0.275978][0.10413,0.228873,0][-0.253916,0.388426,-0.0206993][-0.283029,0.958447,-0.0356841][0.0708149,0.15783,0][-0.253916,0.388426,-0.0206993][-0.283029,0.958447,-0.0356841][0.0708149,0.15783,0][-0.197172,0.367548,-0.288561][-0.231637,0.932835,-0.275978][0.10413,0.228873,0][-0.315152,0.315116,-0.288041][-0.511441,0.804394,-0.302287][0.0711736,0.236427,0][-0.253916,0.388426,-0.0206993][-0.283029,0.958447,-0.0356841][0.0708149,0.15783,0][-0.315152,0.315116,-0.288041][-0.511441,0.804394,-0.302287][0.0711736,0.236427,0][-0.371896,0.333668,-0.0201789][-0.552901,0.832815,-0.0268446][0.0378586,0.165384,0][-0.371896,0.333668,-0.0201789][-0.552901,0.832815,-0.0268446][0.0378586,0.165384,0][-0.315152,0.315116,-0.288041][-0.511441,0.804394,-0.302287][0.0711736,0.236427,0][-0.400614,0.244271,-0.288782][-0.718405,0.583355,-0.378935][0.0473741,0.242211,0][-0.371896,0.333668,-0.0201789][-0.552901,0.832815,-0.0268446][0.0378586,0.165384,0][-0.400614,0.244271,-0.288782][-0.718405,0.583355,-0.378935][0.0473741,0.242211,0][-0.457358,0.259682,-0.0209202][-0.77979,0.624892,-0.0379121][0.014059,0.171168,0][-0.457358,0.259682,-0.0209202][-0.77979,0.624892,-0.0379121][0.382654,0.291219,0][-0.400614,0.244271,-0.288782][-0.718405,0.583355,-0.378935][0.459417,0.295635,0][-0.441184,0.173427,-0.288555][-0.867724,0.24743,-0.431084][0.459352,0.315937,0][-0.457358,0.259682,-0.0209202][-0.77979,0.624892,-0.0379121][0.382654,0.291219,0][-0.441184,0.173427,-0.288555][-0.867724,0.24743,-0.431084][0.459352,0.315937,0][-0.497928,0.185695,-0.0206928][-0.967728,0.248115,-0.0440671][0.382588,0.312422,0][-0.497928,0.185695,-0.0206928][-0.967728,0.248115,-0.0440671][0.382588,0.312422,0][-0.441184,0.173427,-0.288555][-0.867724,0.24743,-0.431084][0.459352,0.315937,0][-0.49808,0.111709,-0.0197783][-0.99719,0.0387471,-0.0641132][0.382326,0.333624,0][-0.441184,0.173427,-0.288555][-0.867724,0.24743,-0.431084][0.459352,0.315937,0][-0.446808,0.102583,-0.28764][-0.884114,0.0224028,-0.466733][0.45909,0.33624,0][-0.49808,0.111709,-0.0197783][-0.99719,0.0387471,-0.0641132][0.382326,0.333624,0][-0.49808,0.111709,-0.0197783][-0.99719,0.0387471,-0.0641132][0.382326,0.333624,0][-0.446808,0.102583,-0.28764][-0.884114,0.0224028,-0.466733][0.45909,0.33624,0][-0.501358,0.0377221,-0.0198231][-0.996509,0.0189693,-0.0812975][0.382339,0.354827,0][-0.446808,0.102583,-0.28764][-0.884114,0.0224028,-0.466733][0.45909,0.33624,0][-0.444614,0.0317381,-0.287685][-0.865065,-0.02557,-0.501008][0.459103,0.356542,0][-0.501358,0.0377221,-0.0198231][-0.996509,0.0189693,-0.0812975][0.382339,0.354827,0][-0.501358,0.0377221,-0.0198231][-0.996509,0.0189693,-0.0812975][0.382339,0.354827,0][-0.444614,0.0317381,-0.287685][-0.865065,-0.02557,-0.501008][0.459103,0.356542,0][-0.501358,-0.0362644,-0.0198231][-0.994536,-0.0659807,-0.0808974][0.382339,0.37603,0][-0.444614,0.0317381,-0.287685][-0.865065,-0.02557,-0.501008][0.459103,0.356542,0][-0.444614,-0.0391062,-0.287685][-0.8756,-0.0448734,-0.480947][0.459103,0.376845,0][-0.501358,-0.0362644,-0.0198231][-0.994536,-0.0659807,-0.0808974][0.382339,0.37603,0][-0.501358,-0.0362644,-0.0198231][-0.994536,-0.0659807,-0.0808974][0.382339,0.37603,0][-0.444614,-0.0391062,-0.287685][-0.8756,-0.0448734,-0.480947][0.459103,0.376845,0][-0.491835,-0.110251,-0.0196518][-0.980482,-0.18002,-0.079039][0.38229,0.397233,0][-0.444614,-0.0391062,-0.287685][-0.8756,-0.0448734,-0.480947][0.459103,0.376845,0][-0.435091,-0.109951,-0.287514][-0.930837,0.0954774,-0.352741][0.459054,0.397147,0][-0.491835,-0.110251,-0.0196518][-0.980482,-0.18002,-0.079039][0.38229,0.397233,0][-0.467496,-0.157819,-0.0638326][-0.963167,-0.262886,-0.0565705][0.394951,0.410865,0][-0.439048,-0.154088,-0.315018][-0.944647,0.0294687,-0.326762][0.466936,0.409796,0][-0.466019,-0.179663,-0.144581][-0.821384,-0.568668,0.0440977][0.418092,0.417125,0][-0.467496,-0.157819,-0.0638326][-0.963167,-0.262886,-0.0565705][0.394951,0.410865,0][-0.466019,-0.179663,-0.144581][-0.821384,-0.568668,0.0440977][0.418092,0.417125,0][-0.466019,-0.169981,-0.0677555][-0.685121,-0.72089,0.104534][0.396076,0.414351,0][-0.485045,-0.140154,-0.0278451][-0.919496,-0.35715,-0.164227][0.384638,0.405803,0][-0.467496,-0.157819,-0.0638326][-0.963167,-0.262886,-0.0565705][0.394951,0.410865,0][-0.459102,-0.170056,-0.0360383][-0.706429,-0.653491,-0.271859][0.386986,0.414372,0][-0.467496,-0.157819,-0.0638326][-0.963167,-0.262886,-0.0565705][0.394951,0.410865,0][-0.466019,-0.169981,-0.0677555][-0.685121,-0.72089,0.104534][0.396076,0.414351,0][-0.459102,-0.170056,-0.0360383][-0.706429,-0.653491,-0.271859][0.386986,0.414372,0][-0.435785,-0.187244,-0.162214][-0.767849,0.527075,-0.364143][0.317004,0.789373,0][-0.435047,-0.19012,-0.165974][-0.749571,0.317327,-0.580902][0.318241,0.78993,0][-0.439656,-0.189899,-0.152924][-0.894028,0.435659,0.104479][0.314584,0.79072,0][-0.435785,-0.187244,-0.162214][-0.767849,0.527075,-0.364143][0.317004,0.789373,0][-0.439656,-0.189899,-0.152924][-0.894028,0.435659,0.104479][0.314584,0.79072,0][-0.437813,-0.187244,-0.15602][-0.800805,0.587394,-0.116959][0.315275,0.789777,0][-0.435047,-0.19012,-0.165974][-0.749571,0.317327,-0.580902][0.318241,0.78993,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.346868,0.82502,0][-0.4608,-0.241167,-0.1292][-0.966918,0.230733,-0.108772][0.31131,0.806574,0][-0.435047,-0.19012,-0.165974][-0.749571,0.317327,-0.580902][0.318241,0.78993,0][-0.4608,-0.241167,-0.1292][-0.966918,0.230733,-0.108772][0.31131,0.806574,0][-0.439656,-0.189899,-0.152924][-0.894028,0.435659,0.104479][0.314584,0.79072,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.346868,0.82502,0][-0.424416,-0.350748,-0.111228][-0.690399,-0.473094,0.547294][0.313446,0.838326,0][-0.4608,-0.241167,-0.1292][-0.966918,0.230733,-0.108772][0.31131,0.806574,0][-0.424416,-0.350748,-0.111228][-0.690399,-0.473094,0.547294][0.313446,0.838326,0][-0.461884,-0.243336,-0.120956][-0.98717,0.135971,-0.0837112][0.309151,0.807718,0][-0.4608,-0.241167,-0.1292][-0.966918,0.230733,-0.108772][0.31131,0.806574,0][-0.461884,-0.243336,-0.120956][-0.98717,0.135971,-0.0837112][0.309151,0.807718,0][-0.424416,-0.350748,-0.111228][-0.690399,-0.473094,0.547294][0.313446,0.838326,0][-0.463767,-0.188224,-0.0405744][-0.902141,-0.0670734,0.426195][0.283124,0.797584,0][-0.461884,-0.243336,-0.120956][-0.98717,0.135971,-0.0837112][0.309151,0.807718,0][-0.463767,-0.188224,-0.0405744][-0.902141,-0.0670734,0.426195][0.283124,0.797584,0][-0.459144,-0.186252,-0.0535323][-0.78625,0.481728,-0.386974][0.286611,0.796189,0][-0.462572,-0.184844,-0.042828][-0.908589,0.395297,-0.134932][0.283533,0.796494,0][-0.459731,-0.184421,-0.0493069][-0.808968,0.500514,-0.308312][0.285313,0.795953,0][-0.463767,-0.188224,-0.0405744][-0.902141,-0.0670734,0.426195][0.283124,0.797584,0][-0.459731,-0.184421,-0.0493069][-0.808968,0.500514,-0.308312][0.285313,0.795953,0][-0.459144,-0.186252,-0.0535323][-0.78625,0.481728,-0.386974][0.286611,0.796189,0][-0.463767,-0.188224,-0.0405744][-0.902141,-0.0670734,0.426195][0.283124,0.797584,0][-0.392827,-0.425413,-0.188895][-0.618885,-0.784843,-0.0316831][0.339992,0.854092,0][-0.400632,-0.413528,-0.133036][-0.508808,-0.69829,0.503493][0.323629,0.854421,0][-0.424416,-0.350748,-0.111228][-0.690399,-0.473094,0.547294][0.313446,0.838326,0][-0.392827,-0.425413,-0.188895][-0.618885,-0.784843,-0.0316831][0.339992,0.854092,0][-0.424416,-0.350748,-0.111228][-0.690399,-0.473094,0.547294][0.313446,0.838326,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.346868,0.82502,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.680044,0.695916,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.726156,0.697716,0][-0.154065,-0.452004,-0.479535][-0.24575,-0.758857,-0.603111][0.68168,0.721136,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.726156,0.697716,0][0.00113329,-0.458284,-0.511509][0.367016,-0.702687,-0.609533][0.726156,0.722935,0][-0.154065,-0.452004,-0.479535][-0.24575,-0.758857,-0.603111][0.68168,0.721136,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.646938,0.693952,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.680044,0.695916,0][-0.266414,-0.445153,-0.422024][-0.462835,-0.732786,-0.498807][0.649483,0.719172,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.680044,0.695916,0][-0.154065,-0.452004,-0.479535][-0.24575,-0.758857,-0.603111][0.68168,0.721136,0][-0.266414,-0.445153,-0.422024][-0.462835,-0.732786,-0.498807][0.649483,0.719172,0][-0.34497,-0.348395,-0.349149][-0.825016,0.0991842,-0.556337][0.379684,0.822142,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.406565,0.818432,0][-0.266414,-0.445153,-0.422024][-0.462835,-0.732786,-0.498807][0.406334,0.844387,0][-0.34497,-0.348395,-0.349149][-0.825016,0.0991842,-0.556337][0.379684,0.822142,0][-0.266414,-0.445153,-0.422024][-0.462835,-0.732786,-0.498807][0.406334,0.844387,0][-0.348612,-0.436399,-0.327743][-0.6369,-0.699448,-0.324239][0.379454,0.848097,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.346868,0.82502,0][-0.34497,-0.348395,-0.349149][-0.825016,0.0991842,-0.556337][0.379684,0.822142,0][-0.348612,-0.436399,-0.327743][-0.6369,-0.699448,-0.324239][0.379454,0.848097,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.346868,0.82502,0][-0.348612,-0.436399,-0.327743][-0.6369,-0.699448,-0.324239][0.379454,0.848097,0][-0.392827,-0.425413,-0.188895][-0.618885,-0.784843,-0.0316831][0.339992,0.854092,0][-0.446903,-0.170974,-0.0516752][0.524247,0.846004,-0.0971696][0.543276,0.0151718,0][-0.445575,-0.175118,-0.0612374][0.447842,0.810948,-0.376564][0.543553,0.0181698,0][-0.459144,-0.186252,-0.0535323][-0.78625,0.481728,-0.386974][0.53811,0.017424,0][-0.446903,-0.170974,-0.0516752][0.524247,0.846004,-0.0971696][0.543276,0.0151718,0][-0.459144,-0.186252,-0.0535323][-0.78625,0.481728,-0.386974][0.53811,0.017424,0][-0.459731,-0.184421,-0.0493069][-0.808968,0.500514,-0.308312][0.537988,0.0160992,0][-0.453332,-0.17193,-0.037013][0.1283,0.858654,0.496238][0.281067,0.79327,0][-0.446903,-0.170974,-0.0516752][0.524247,0.846004,-0.0971696][0.285096,0.792046,0][-0.459731,-0.184421,-0.0493069][-0.808968,0.500514,-0.308312][0.285313,0.795953,0][-0.453332,-0.17193,-0.037013][0.1283,0.858654,0.496238][0.281067,0.79327,0][-0.459731,-0.184421,-0.0493069][-0.808968,0.500514,-0.308312][0.285313,0.795953,0][-0.462572,-0.184844,-0.042828][-0.908589,0.395297,-0.134932][0.283533,0.796494,0][-0.456035,-0.17958,-0.0319132][0.0058984,0.230756,0.972994][0.280143,0.795738,0][-0.453332,-0.17193,-0.037013][0.1283,0.858654,0.496238][0.281067,0.79327,0][-0.462572,-0.184844,-0.042828][-0.908589,0.395297,-0.134932][0.283533,0.796494,0][-0.456035,-0.17958,-0.0319132][0.0058984,0.230756,0.972994][0.280143,0.795738,0][-0.462572,-0.184844,-0.042828][-0.908589,0.395297,-0.134932][0.283533,0.796494,0][-0.463767,-0.188224,-0.0405744][-0.902141,-0.0670734,0.426195][0.283124,0.797584,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.665197,0.923768,0][-0.456035,-0.17958,-0.0319132][0.0058984,0.230756,0.972994][0.716811,0.924294,0][-0.463767,-0.188224,-0.0405744][-0.902141,-0.0670734,0.426195][0.715117,0.927154,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.665197,0.923768,0][-0.463767,-0.188224,-0.0405744][-0.902141,-0.0670734,0.426195][0.715117,0.927154,0][-0.424416,-0.350748,-0.111228][-0.690399,-0.473094,0.547294][0.667309,0.930447,0][-0.445575,-0.175118,-0.0612374][0.447842,0.810948,-0.376564][0.543553,0.0181698,0][-0.432801,-0.22244,-0.113846][0.514265,0.855732,-0.0570406][0.541621,0.0379653,0][-0.459144,-0.186252,-0.0535323][-0.78625,0.481728,-0.386974][0.53811,0.017424,0][-0.432801,-0.22244,-0.113846][0.514265,0.855732,-0.0570406][0.541621,0.0379653,0][-0.461884,-0.243336,-0.120956][-0.98717,0.135971,-0.0837112][0.532431,0.0419897,0][-0.459144,-0.186252,-0.0535323][-0.78625,0.481728,-0.386974][0.53811,0.017424,0][-0.432801,-0.22244,-0.113846][0.514265,0.855732,-0.0570406][0.541621,0.0379653,0][-0.431149,-0.219136,-0.126403][0.410159,0.647631,0.64214][0.543592,0.0407578,0][-0.4608,-0.241167,-0.1292][-0.966918,0.230733,-0.108772][0.533725,0.0438229,0][-0.432801,-0.22244,-0.113846][0.514265,0.855732,-0.0570406][0.541621,0.0379653,0][-0.4608,-0.241167,-0.1292][-0.966918,0.230733,-0.108772][0.533725,0.0438229,0][-0.461884,-0.243336,-0.120956][-0.98717,0.135971,-0.0837112][0.532431,0.0419897,0][-0.431149,-0.219136,-0.126403][0.410159,0.647631,0.64214][0.758469,0.473168,0][-0.428395,-0.182125,-0.140282][0.0954295,0.595382,0.797755][0.747211,0.474649,0][-0.439656,-0.189899,-0.152924][-0.894028,0.435659,0.104479][0.747555,0.469321,0][-0.431149,-0.219136,-0.126403][0.410159,0.647631,0.64214][0.497224,0.702349,0][-0.439656,-0.189899,-0.152924][-0.894028,0.435659,0.104479][0.49058,0.696693,0][-0.4608,-0.241167,-0.1292][-0.966918,0.230733,-0.108772][0.506465,0.697184,0][-0.428395,-0.182125,-0.140282][0.0954295,0.595382,0.797755][0.747211,0.474649,0][-0.42289,-0.174194,-0.149535][0.394478,0.812311,0.429579][0.744009,0.474545,0][-0.437813,-0.187244,-0.15602][-0.800805,0.587394,-0.116959][0.746484,0.469287,0][-0.428395,-0.182125,-0.140282][0.0954295,0.595382,0.797755][0.747211,0.474649,0][-0.437813,-0.187244,-0.15602][-0.800805,0.587394,-0.116959][0.746484,0.469287,0][-0.439656,-0.189899,-0.152924][-0.894028,0.435659,0.104479][0.747555,0.469321,0][-0.42289,-0.174194,-0.149535][0.394478,0.812311,0.429579][0.286726,0.69313,0][-0.416832,-0.174194,-0.16804][0.512561,0.838438,-0.185208][0.286726,0.69871,0][-0.435785,-0.187244,-0.162214][-0.767849,0.527075,-0.364143][0.280765,0.695433,0][-0.42289,-0.174194,-0.149535][0.394478,0.812311,0.429579][0.286726,0.69313,0][-0.435785,-0.187244,-0.162214][-0.767849,0.527075,-0.364143][0.280765,0.695433,0][-0.437813,-0.187244,-0.15602][-0.800805,0.587394,-0.116959][0.280765,0.693566,0][-0.416832,-0.174194,-0.16804][0.512561,0.838438,-0.185208][0.286726,0.69871,0][-0.414627,-0.182786,-0.179275][0.469047,0.614301,-0.634531][0.284869,0.701967,0][-0.435047,-0.19012,-0.165974][-0.749571,0.317327,-0.580902][0.280143,0.696523,0][-0.416832,-0.174194,-0.16804][0.512561,0.838438,-0.185208][0.286726,0.69871,0][-0.435047,-0.19012,-0.165974][-0.749571,0.317327,-0.580902][0.280143,0.696523,0][-0.435785,-0.187244,-0.162214][-0.767849,0.527075,-0.364143][0.280765,0.695433,0][-0.387194,-0.413528,-0.133036][0.624981,-0.535182,0.568313][0.646938,0.925701,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.665197,0.923768,0][-0.400632,-0.413528,-0.133036][-0.508808,-0.69829,0.503493][0.6481,0.929373,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.665197,0.923768,0][-0.424416,-0.350748,-0.111228][-0.690399,-0.473094,0.547294][0.667309,0.930447,0][-0.400632,-0.413528,-0.133036][-0.508808,-0.69829,0.503493][0.6481,0.929373,0][-0.378889,-0.425413,-0.188895][0.67282,-0.680604,0.289988][0.496811,0.558883,0][-0.387194,-0.413528,-0.133036][0.624981,-0.535182,0.568313][0.494431,0.574892,0][-0.392827,-0.425413,-0.188895][-0.618885,-0.784843,-0.0316831][0.492816,0.558883,0][-0.387194,-0.413528,-0.133036][0.624981,-0.535182,0.568313][0.494431,0.574892,0][-0.400632,-0.413528,-0.133036][-0.508808,-0.69829,0.503493][0.49058,0.574892,0][-0.392827,-0.425413,-0.188895][-0.618885,-0.784843,-0.0316831][0.492816,0.558883,0][-0.330938,-0.436399,-0.301194][0.620585,-0.677773,0.394333][0.510552,0.526701,0][-0.378889,-0.425413,-0.188895][0.67282,-0.680604,0.289988][0.496811,0.558883,0][-0.392827,-0.425413,-0.188895][-0.618885,-0.784843,-0.0316831][0.492816,0.558883,0][-0.330938,-0.436399,-0.301194][0.620585,-0.677773,0.394333][0.510552,0.526701,0][-0.392827,-0.425413,-0.188895][-0.618885,-0.784843,-0.0316831][0.492816,0.558883,0][-0.348612,-0.436399,-0.327743][-0.6369,-0.699448,-0.324239][0.505488,0.519093,0][-0.265829,-0.445153,-0.395475][0.389486,-0.732172,0.558771][0.529211,0.499682,0][-0.330938,-0.436399,-0.301194][0.620585,-0.677773,0.394333][0.510552,0.526701,0][-0.348612,-0.436399,-0.327743][-0.6369,-0.699448,-0.324239][0.505488,0.519093,0][-0.265829,-0.445153,-0.395475][0.389486,-0.732172,0.558771][0.529211,0.499682,0][-0.348612,-0.436399,-0.327743][-0.6369,-0.699448,-0.324239][0.505488,0.519093,0][-0.266414,-0.445153,-0.422024][-0.462835,-0.732786,-0.498807][0.529043,0.492074,0][-0.15348,-0.452004,-0.452986][0.199197,-0.700187,0.685608][0.561408,0.483201,0][-0.265829,-0.445153,-0.395475][0.389486,-0.732172,0.558771][0.529211,0.499682,0][-0.266414,-0.445153,-0.422024][-0.462835,-0.732786,-0.498807][0.529043,0.492074,0][-0.15348,-0.452004,-0.452986][0.199197,-0.700187,0.685608][0.561408,0.483201,0][-0.266414,-0.445153,-0.422024][-0.462835,-0.732786,-0.498807][0.529043,0.492074,0][-0.154065,-0.452004,-0.479535][-0.24575,-0.758857,-0.603111][0.56124,0.475592,0][0.00113329,-0.458284,-0.48496][0.313662,-0.687178,0.655288][0.605717,0.474038,0][-0.15348,-0.452004,-0.452986][0.199197,-0.700187,0.685608][0.561408,0.483201,0][-0.154065,-0.452004,-0.479535][-0.24575,-0.758857,-0.603111][0.56124,0.475592,0][0.00113329,-0.458284,-0.48496][0.313662,-0.687178,0.655288][0.605717,0.474038,0][-0.154065,-0.452004,-0.479535][-0.24575,-0.758857,-0.603111][0.56124,0.475592,0][0.00113329,-0.458284,-0.511509][0.367016,-0.702687,-0.609533][0.605717,0.466429,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.256268,0.697761,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.219287,0.697671,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.251959,0.68806,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.219287,0.697671,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.214978,0.68797,0][-0.275294,-0.357149,-0.44343][-0.597923,0.397965,-0.695782][0.251959,0.68806,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.355262,0.792329,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.40182,0.790851,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.357248,0.802757,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.40182,0.790851,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.404235,0.801178,0][-0.159774,-0.364,-0.500942][-0.292075,0.521555,-0.801669][0.357248,0.802757,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.518912,0.484271,0][0.00113329,-0.458284,-0.48496][0.313662,-0.687178,0.655288][0.493558,0.482528,0][0.00113329,-0.458284,-0.511509][0.367016,-0.702687,-0.609533][0.495012,0.47506,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.518912,0.484271,0][0.00113329,-0.458284,-0.511509][0.367016,-0.702687,-0.609533][0.495012,0.47506,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.52094,0.473861,0][-0.414627,-0.182786,-0.179275][0.469047,0.614301,-0.634531][0.863842,0.907414,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.825257,0.906878,0][-0.435047,-0.19012,-0.165974][-0.749571,0.317327,-0.580902][0.863371,0.901214,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.825257,0.906878,0][-0.403512,-0.332098,-0.235361][-0.931069,0.0124568,-0.364629][0.821744,0.899115,0][-0.435047,-0.19012,-0.165974][-0.749571,0.317327,-0.580902][0.863371,0.901214,0][-0.428395,-0.182125,-0.140282][0.0954295,0.595382,0.797755][0.518202,0.657278,0][-0.414627,-0.182786,-0.179275][0.469047,0.614301,-0.634531][0.528107,0.662457,0][-0.416832,-0.174194,-0.16804][0.512561,0.838438,-0.185208][0.524101,0.663079,0][-0.428395,-0.182125,-0.140282][0.0954295,0.595382,0.797755][0.518202,0.657278,0][-0.416832,-0.174194,-0.16804][0.512561,0.838438,-0.185208][0.524101,0.663079,0][-0.42289,-0.174194,-0.149535][0.394478,0.812311,0.429579][0.519444,0.660543,0][-0.431149,-0.219136,-0.126403][0.410159,0.647631,0.64214][0.519782,0.646061,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.560081,0.637352,0][-0.414627,-0.182786,-0.179275][0.469047,0.614301,-0.634531][0.528107,0.662457,0][-0.431149,-0.219136,-0.126403][0.410159,0.647631,0.64214][0.519782,0.646061,0][-0.414627,-0.182786,-0.179275][0.469047,0.614301,-0.634531][0.528107,0.662457,0][-0.428395,-0.182125,-0.140282][0.0954295,0.595382,0.797755][0.518202,0.657278,0][-0.432801,-0.22244,-0.113846][0.514265,0.855732,-0.0570406][0.517075,0.643509,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.534002,0.610858,0][-0.431149,-0.219136,-0.126403][0.410159,0.647631,0.64214][0.519782,0.646061,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.534002,0.610858,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.560081,0.637352,0][-0.431149,-0.219136,-0.126403][0.410159,0.647631,0.64214][0.519782,0.646061,0][-0.456035,-0.17958,-0.0319132][0.0058984,0.230756,0.972994][0.49058,0.643066,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.534002,0.610858,0][-0.432801,-0.22244,-0.113846][0.514265,0.855732,-0.0570406][0.517075,0.643509,0][-0.456035,-0.17958,-0.0319132][0.0058984,0.230756,0.972994][0.49058,0.643066,0][-0.432801,-0.22244,-0.113846][0.514265,0.855732,-0.0570406][0.517075,0.643509,0][-0.445575,-0.175118,-0.0612374][0.447842,0.810948,-0.376564][0.497348,0.648208,0][-0.445575,-0.175118,-0.0612374][0.447842,0.810948,-0.376564][0.497348,0.648208,0][-0.446903,-0.170974,-0.0516752][0.524247,0.846004,-0.0971696][0.494374,0.64794,0][-0.456035,-0.17958,-0.0319132][0.0058984,0.230756,0.972994][0.49058,0.643066,0][-0.446903,-0.170974,-0.0516752][0.524247,0.846004,-0.0971696][0.494374,0.64794,0][-0.453332,-0.17193,-0.037013][0.1283,0.858654,0.496238][0.490815,0.64569,0][-0.456035,-0.17958,-0.0319132][0.0058984,0.230756,0.972994][0.49058,0.643066,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.534002,0.610858,0][-0.387194,-0.413528,-0.133036][0.624981,-0.535182,0.568313][0.548095,0.598047,0][-0.378889,-0.425413,-0.188895][0.67282,-0.680604,0.289988][0.563783,0.602712,0][-0.399973,-0.350748,-0.111228][0.668305,-0.10613,0.736278][0.534002,0.610858,0][-0.378889,-0.425413,-0.188895][0.67282,-0.680604,0.289988][0.563783,0.602712,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.560081,0.637352,0][0.00113329,-0.458284,-0.48496][0.313662,-0.687178,0.655288][0.646938,0.892894,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.647927,0.867694,0][-0.15348,-0.452004,-0.452986][0.199197,-0.700187,0.685608][0.691284,0.892833,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.647927,0.867694,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.693653,0.867232,0][-0.15348,-0.452004,-0.452986][0.199197,-0.700187,0.685608][0.691284,0.892833,0][-0.15348,-0.452004,-0.452986][0.199197,-0.700187,0.685608][0.691284,0.892833,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.693653,0.867232,0][-0.265829,-0.445153,-0.395475][0.389486,-0.732172,0.558771][0.723533,0.892133,0][-0.158237,-0.362416,-0.463933][0.278163,0.699667,0.658097][0.693653,0.867232,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.726836,0.865887,0][-0.265829,-0.445153,-0.395475][0.389486,-0.732172,0.558771][0.723533,0.892133,0][-0.265829,-0.445153,-0.395475][0.389486,-0.732172,0.558771][0.61848,0.626058,0][-0.273758,-0.353187,-0.406422][0.635314,0.445581,0.630741][0.60863,0.650704,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.590332,0.644327,0][-0.265829,-0.445153,-0.395475][0.389486,-0.732172,0.558771][0.61848,0.626058,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.590332,0.644327,0][-0.330938,-0.436399,-0.301194][0.620585,-0.677773,0.394333][0.593551,0.615339,0][-0.330938,-0.436399,-0.301194][0.620585,-0.677773,0.394333][0.593551,0.615339,0][-0.330754,-0.342194,-0.339707][0.713973,0.461264,0.526762][0.590332,0.644327,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.560081,0.637352,0][-0.330938,-0.436399,-0.301194][0.620585,-0.677773,0.394333][0.593551,0.615339,0][-0.380654,-0.313082,-0.235361][0.677714,0.719157,0.153354][0.560081,0.637352,0][-0.378889,-0.425413,-0.188895][0.67282,-0.680604,0.289988][0.563783,0.602712,0][0.00113317,0.388426,0.245271][1.51657e-007,0.958468,0.285201][0.124629,0.0669663,0][-0.0204034,0.40625,0.0637519][-0.0173831,0.99836,0.0545409][0.130465,0.119025,0][-0.142251,0.388426,0.19924][-0.146941,0.959553,0.24014][0.0876216,0.0891685,0][-0.0204034,0.40625,0.0637519][-0.0173831,0.99836,0.0545409][0.130465,0.119025,0][-0.0442253,0.40625,0.0515651][-0.0337126,0.998394,0.0455291][0.124613,0.12398,0][-0.142251,0.388426,0.19924][-0.146941,0.959553,0.24014][0.0876216,0.0891685,0][-0.142251,0.388426,0.19924][-0.146941,0.959553,0.24014][0.0876216,0.0891685,0][-0.0442253,0.40625,0.0515651][-0.0337126,0.998394,0.0455291][0.124613,0.12398,0][-0.199497,0.388426,0.14127][-0.228848,0.960306,0.159506][0.0754301,0.109081,0][-0.0442253,0.40625,0.0515651][-0.0337126,0.998394,0.0455291][0.124613,0.12398,0][-0.06323,0.40625,0.0323202][-0.0474733,0.998328,0.0329716][0.120565,0.13059,0][-0.199497,0.388426,0.14127][-0.228848,0.960306,0.159506][0.0754301,0.109081,0][-0.199497,0.388426,0.14127][-0.228848,0.960306,0.159506][0.0754301,0.109081,0][-0.06323,0.40625,0.0323202][-0.0474733,0.998328,0.0329716][0.120565,0.13059,0][-0.236331,0.388426,0.06482][-0.265106,0.960084,0.0892051][0.070141,0.132818,0][-0.06323,0.40625,0.0323202][-0.0474733,0.998328,0.0329716][0.120565,0.13059,0][-0.0754579,0.40625,0.00694028][-0.0545336,0.998344,0.0183342][0.11881,0.138471,0][-0.236331,0.388426,0.06482][-0.265106,0.960084,0.0892051][0.070141,0.132818,0][-0.236331,0.388426,0.06482][-0.265106,0.960084,0.0892051][0.070141,0.132818,0][-0.0754579,0.40625,0.00694028][-0.0545336,0.998344,0.0183342][0.11881,0.138471,0][-0.0812958,0.40625,-0.0214504][-0.059509,0.997404,-0.0405473][0.119033,0.146774,0][-0.236331,0.388426,0.06482][-0.265106,0.960084,0.0892051][0.070141,0.132818,0][-0.0812958,0.40625,-0.0214504][-0.059509,0.997404,-0.0405473][0.119033,0.146774,0][-0.253916,0.388426,-0.0206993][-0.283029,0.958447,-0.0356841][0.0708149,0.15783,0][0.00113316,0.333668,0.368682][0,0.818081,0.575103][0.116575,0.0325288,0][0.00113317,0.388426,0.245271][1.51657e-007,0.958468,0.285201][0.124629,0.0669663,0][-0.208637,0.333668,0.301382][-0.258822,0.854723,0.449956][0.0624307,0.0649982,0][0.00113317,0.388426,0.245271][1.51657e-007,0.958468,0.285201][0.124629,0.0669663,0][-0.142251,0.388426,0.19924][-0.146941,0.959553,0.24014][0.0876216,0.0891685,0][-0.208637,0.333668,0.301382][-0.258822,0.854723,0.449956][0.0624307,0.0649982,0][-0.208637,0.333668,0.301382][-0.258822,0.854723,0.449956][0.0624307,0.0649982,0][-0.142251,0.388426,0.19924][-0.146941,0.959553,0.24014][0.0876216,0.0891685,0][-0.292334,0.333668,0.216628][-0.42474,0.85606,0.294545][0.0446063,0.0941109,0][-0.142251,0.388426,0.19924][-0.146941,0.959553,0.24014][0.0876216,0.0891685,0][-0.199497,0.388426,0.14127][-0.228848,0.960306,0.159506][0.0754301,0.109081,0][-0.292334,0.333668,0.216628][-0.42474,0.85606,0.294545][0.0446063,0.0941109,0][-0.292334,0.333668,0.216628][-0.42474,0.85606,0.294545][0.0446063,0.0941109,0][-0.199497,0.388426,0.14127][-0.228848,0.960306,0.159506][0.0754301,0.109081,0][-0.346186,0.333668,0.104854][-0.509207,0.844817,0.164293][0.0368733,0.128816,0][-0.199497,0.388426,0.14127][-0.228848,0.960306,0.159506][0.0754301,0.109081,0][-0.236331,0.388426,0.06482][-0.265106,0.960084,0.0892051][0.070141,0.132818,0][-0.346186,0.333668,0.104854][-0.509207,0.844817,0.164293][0.0368733,0.128816,0][-0.346186,0.333668,0.104854][-0.509207,0.844817,0.164293][0.0368733,0.128816,0][-0.236331,0.388426,0.06482][-0.265106,0.960084,0.0892051][0.070141,0.132818,0][-0.253916,0.388426,-0.0206993][-0.283029,0.958447,-0.0356841][0.0708149,0.15783,0][-0.346186,0.333668,0.104854][-0.509207,0.844817,0.164293][0.0368733,0.128816,0][-0.253916,0.388426,-0.0206993][-0.283029,0.958447,-0.0356841][0.0708149,0.15783,0][-0.371896,0.333668,-0.0201789][-0.552901,0.832815,-0.0268446][0.0378586,0.165384,0][0.0011332,0.259681,0.447402][0,0.625066,0.780572][0.111438,0.0105621,0][0.00113316,0.333668,0.368682][0,0.818081,0.575103][0.116575,0.0325288,0][-0.208637,0.333668,0.301382][-0.258822,0.854723,0.449956][0.0624307,0.0649982,0][0.0011332,0.259681,0.447402][0,0.625066,0.780572][0.111438,0.0105621,0][-0.208637,0.333668,0.301382][-0.258822,0.854723,0.449956][0.0624307,0.0649982,0][-0.265298,0.259681,0.387106][-0.357525,0.671112,0.64945][0.0410251,0.0447747,0][-0.265298,0.259681,0.387106][-0.357525,0.671112,0.64945][0.0410251,0.0447747,0][-0.208637,0.333668,0.301382][-0.258822,0.854723,0.449956][0.0624307,0.0649982,0][-0.371501,0.259681,0.279562][-0.608819,0.676715,0.413999][0.0184078,0.0817156,0][-0.208637,0.333668,0.301382][-0.258822,0.854723,0.449956][0.0624307,0.0649982,0][-0.292334,0.333668,0.216628][-0.42474,0.85606,0.294545][0.0446063,0.0941109,0][-0.371501,0.259681,0.279562][-0.608819,0.676715,0.413999][0.0184078,0.0817156,0][-0.371501,0.259681,0.279562][-0.608819,0.676715,0.413999][0.0184078,0.0817156,0][-0.292334,0.333668,0.216628][-0.42474,0.85606,0.294545][0.0446063,0.0941109,0][-0.4348,0.259681,0.137733][-0.725072,0.658348,0.20211][0.01,0.125424,0][-0.292334,0.333668,0.216628][-0.42474,0.85606,0.294545][0.0446063,0.0941109,0][-0.346186,0.333668,0.104854][-0.509207,0.844817,0.164293][0.0368733,0.128816,0][-0.4348,0.259681,0.137733][-0.725072,0.658348,0.20211][0.01,0.125424,0][-0.4348,0.259681,0.137733][-0.725072,0.658348,0.20211][0.01,0.125424,0][-0.346186,0.333668,0.104854][-0.509207,0.844817,0.164293][0.0368733,0.128816,0][-0.457358,0.259682,-0.0209202][-0.77979,0.624892,-0.0379121][0.014059,0.171168,0][-0.346186,0.333668,0.104854][-0.509207,0.844817,0.164293][0.0368733,0.128816,0][-0.371896,0.333668,-0.0201789][-0.552901,0.832815,-0.0268446][0.0378586,0.165384,0][-0.457358,0.259682,-0.0209202][-0.77979,0.624892,-0.0379121][0.014059,0.171168,0][0.0011332,0.185695,0.490326][0,0.427468,0.90403][0.423027,0.0312029,0][0.0011332,0.259681,0.447402][0,0.625066,0.780572][0.423027,0.01,0][-0.265298,0.259681,0.387106][-0.357525,0.671112,0.64945][0.49938,0.01,0][0.0011332,0.185695,0.490326][0,0.427468,0.90403][0.423027,0.0312029,0][-0.265298,0.259681,0.387106][-0.357525,0.671112,0.64945][0.49938,0.01,0][-0.286849,0.185695,0.429161][-0.43572,0.422781,0.794609][0.505556,0.0312029,0][-0.286849,0.185695,0.429161][-0.43572,0.422781,0.794609][0.354691,0.891055,0][-0.265298,0.259681,0.387106][-0.357525,0.671112,0.64945][0.379536,0.895015,0][-0.406793,0.185695,0.312786][-0.753516,0.396549,0.524368][0.354691,0.938949,0][-0.265298,0.259681,0.387106][-0.357525,0.671112,0.64945][0.379536,0.895015,0][-0.371501,0.259681,0.279562][-0.608819,0.676715,0.413999][0.380019,0.93832,0][-0.406793,0.185695,0.312786][-0.753516,0.396549,0.524368][0.354691,0.938949,0][-0.406793,0.185695,0.312786][-0.753516,0.396549,0.524368][0.287021,0.312422,0][-0.371501,0.259681,0.279562][-0.608819,0.676715,0.413999][0.296542,0.291219,0][-0.475514,0.185695,0.162294][-0.900732,0.364774,0.235844][0.330148,0.312422,0][-0.371501,0.259681,0.279562][-0.608819,0.676715,0.413999][0.296542,0.291219,0][-0.4348,0.259681,0.137733][-0.725072,0.658348,0.20211][0.337187,0.291219,0][-0.475514,0.185695,0.162294][-0.900732,0.364774,0.235844][0.330148,0.312422,0][-0.475514,0.185695,0.162294][-0.900732,0.364774,0.235844][0.330148,0.312422,0][-0.4348,0.259681,0.137733][-0.725072,0.658348,0.20211][0.337187,0.291219,0][-0.497928,0.185695,-0.0206928][-0.967728,0.248115,-0.0440671][0.382588,0.312422,0][-0.4348,0.259681,0.137733][-0.725072,0.658348,0.20211][0.337187,0.291219,0][-0.457358,0.259682,-0.0209202][-0.77979,0.624892,-0.0379121][0.382654,0.291219,0][-0.497928,0.185695,-0.0206928][-0.967728,0.248115,-0.0440671][0.382588,0.312422,0][0.0011332,0.111708,0.518354][-1.37978e-007,0.234995,0.971997][0.423027,0.0524059,0][0.0011332,0.185695,0.490326][0,0.427468,0.90403][0.423027,0.0312029,0][-0.291504,0.111708,0.455062][-0.461115,0.201949,0.864054][0.50689,0.0524058,0][0.0011332,0.185695,0.490326][0,0.427468,0.90403][0.423027,0.0312029,0][-0.286849,0.185695,0.429161][-0.43572,0.422781,0.794609][0.505556,0.0312029,0][-0.291504,0.111708,0.455062][-0.461115,0.201949,0.864054][0.50689,0.0524058,0][-0.291504,0.111708,0.455062][-0.461115,0.201949,0.864054][0.333335,0.886844,0][-0.286849,0.185695,0.429161][-0.43572,0.422781,0.794609][0.354691,0.891055,0][-0.417867,0.111708,0.331279][-0.804822,0.159792,0.571602][0.333462,0.937536,0][-0.286849,0.185695,0.429161][-0.43572,0.422781,0.794609][0.354691,0.891055,0][-0.406793,0.185695,0.312786][-0.753516,0.396549,0.524368][0.354691,0.938949,0][-0.417867,0.111708,0.331279][-0.804822,0.159792,0.571602][0.333462,0.937536,0][-0.417867,0.111708,0.331279][-0.804822,0.159792,0.571602][0.281721,0.333624,0][-0.406793,0.185695,0.312786][-0.753516,0.396549,0.524368][0.287021,0.312422,0][-0.490962,0.111708,0.172425][-0.962946,0.13695,0.232335][0.327245,0.333624,0][-0.406793,0.185695,0.312786][-0.753516,0.396549,0.524368][0.287021,0.312422,0][-0.475514,0.185695,0.162294][-0.900732,0.364774,0.235844][0.330148,0.312422,0][-0.490962,0.111708,0.172425][-0.962946,0.13695,0.232335][0.327245,0.333624,0][-0.490962,0.111708,0.172425][-0.962946,0.13695,0.232335][0.327245,0.333624,0][-0.475514,0.185695,0.162294][-0.900732,0.364774,0.235844][0.330148,0.312422,0][-0.49808,0.111709,-0.0197783][-0.99719,0.0387471,-0.0641132][0.382326,0.333624,0][-0.475514,0.185695,0.162294][-0.900732,0.364774,0.235844][0.330148,0.312422,0][-0.497928,0.185695,-0.0206928][-0.967728,0.248115,-0.0440671][0.382588,0.312422,0][-0.49808,0.111709,-0.0197783][-0.99719,0.0387471,-0.0641132][0.382326,0.333624,0][0.00113316,0.0377218,0.527536][-2.90087e-007,0.0611803,0.998127][0.423027,0.0736088,0][0.0011332,0.111708,0.518354][-1.37978e-007,0.234995,0.971997][0.423027,0.0524059,0][-0.291213,0.0377219,0.462524][-0.471376,0.0441677,0.880826][0.506807,0.0736087,0][0.0011332,0.111708,0.518354][-1.37978e-007,0.234995,0.971997][0.423027,0.0524059,0][-0.291504,0.111708,0.455062][-0.461115,0.201949,0.864054][0.50689,0.0524058,0][-0.291213,0.0377219,0.462524][-0.471376,0.0441677,0.880826][0.506807,0.0736087,0][-0.291213,0.0377219,0.462524][-0.471376,0.0441677,0.880826][0.506807,0.0736087,0][-0.291504,0.111708,0.455062][-0.461115,0.201949,0.864054][0.50689,0.0524058,0][-0.419574,0.0377219,0.336785][-0.815705,0.0308253,0.577647][0.543592,0.0736087,0][-0.291504,0.111708,0.455062][-0.461115,0.201949,0.864054][0.50689,0.0524058,0][-0.417867,0.111708,0.331279][-0.804822,0.159792,0.571602][0.543103,0.0524058,0][-0.419574,0.0377219,0.336785][-0.815705,0.0308253,0.577647][0.543592,0.0736087,0][-0.419574,0.0377219,0.336785][-0.815705,0.0308253,0.577647][0.280143,0.354827,0][-0.417867,0.111708,0.331279][-0.804822,0.159792,0.571602][0.281721,0.333624,0][-0.493824,0.037722,0.175419][-0.971833,0.0234906,0.234498][0.326387,0.354827,0][-0.417867,0.111708,0.331279][-0.804822,0.159792,0.571602][0.281721,0.333624,0][-0.490962,0.111708,0.172425][-0.962946,0.13695,0.232335][0.327245,0.333624,0][-0.493824,0.037722,0.175419][-0.971833,0.0234906,0.234498][0.326387,0.354827,0][-0.493824,0.037722,0.175419][-0.971833,0.0234906,0.234498][0.326387,0.354827,0][-0.490962,0.111708,0.172425][-0.962946,0.13695,0.232335][0.327245,0.333624,0][-0.501358,0.0377221,-0.0198231][-0.996509,0.0189693,-0.0812975][0.382339,0.354827,0][-0.490962,0.111708,0.172425][-0.962946,0.13695,0.232335][0.327245,0.333624,0][-0.49808,0.111709,-0.0197783][-0.99719,0.0387471,-0.0641132][0.382326,0.333624,0][-0.501358,0.0377221,-0.0198231][-0.996509,0.0189693,-0.0812975][0.382339,0.354827,0][0.00113316,-0.0362647,0.527536][-2.67553e-007,-0.108992,0.994043][0.423027,0.0948117,0][0.00113316,0.0377218,0.527536][-2.90087e-007,0.0611803,0.998127][0.423027,0.0736088,0][-0.291213,-0.0362646,0.462524][-0.467022,-0.100346,0.878533][0.506807,0.0948116,0][0.00113316,0.0377218,0.527536][-2.90087e-007,0.0611803,0.998127][0.423027,0.0736088,0][-0.291213,0.0377219,0.462524][-0.471376,0.0441677,0.880826][0.506807,0.0736087,0][-0.291213,-0.0362646,0.462524][-0.467022,-0.100346,0.878533][0.506807,0.0948116,0][-0.291213,-0.0362646,0.462524][-0.467022,-0.100346,0.878533][0.506807,0.0948116,0][-0.291213,0.0377219,0.462524][-0.471376,0.0441677,0.880826][0.506807,0.0736087,0][-0.419574,-0.0362646,0.336785][-0.813339,-0.0898748,0.574807][0.543592,0.0948116,0][-0.291213,0.0377219,0.462524][-0.471376,0.0441677,0.880826][0.506807,0.0736087,0][-0.419574,0.0377219,0.336785][-0.815705,0.0308253,0.577647][0.543592,0.0736087,0][-0.419574,-0.0362646,0.336785][-0.813339,-0.0898748,0.574807][0.543592,0.0948116,0][-0.419574,-0.0362646,0.336785][-0.813339,-0.0898748,0.574807][0.280143,0.37603,0][-0.419574,0.0377219,0.336785][-0.815705,0.0308253,0.577647][0.280143,0.354827,0][-0.493824,-0.0362645,0.175419][-0.968328,-0.0898543,0.232955][0.326387,0.37603,0][-0.419574,0.0377219,0.336785][-0.815705,0.0308253,0.577647][0.280143,0.354827,0][-0.493824,0.037722,0.175419][-0.971833,0.0234906,0.234498][0.326387,0.354827,0][-0.493824,-0.0362645,0.175419][-0.968328,-0.0898543,0.232955][0.326387,0.37603,0][-0.493824,-0.0362645,0.175419][-0.968328,-0.0898543,0.232955][0.326387,0.37603,0][-0.493824,0.037722,0.175419][-0.971833,0.0234906,0.234498][0.326387,0.354827,0][-0.501358,-0.0362644,-0.0198231][-0.994536,-0.0659807,-0.0808974][0.382339,0.37603,0][-0.493824,0.037722,0.175419][-0.971833,0.0234906,0.234498][0.326387,0.354827,0][-0.501358,0.0377221,-0.0198231][-0.996509,0.0189693,-0.0812975][0.382339,0.354827,0][-0.501358,-0.0362644,-0.0198231][-0.994536,-0.0659807,-0.0808974][0.382339,0.37603,0][0.00113317,-0.110251,0.510857][-2.8115e-007,-0.339201,0.940714][0.423027,0.116015,0][0.00113316,-0.0362647,0.527536][-2.67553e-007,-0.108992,0.994043][0.423027,0.0948117,0][-0.291213,-0.0362646,0.462524][-0.467022,-0.100346,0.878533][0.506807,0.0948116,0][0.00113317,-0.110251,0.510857][-2.8115e-007,-0.339201,0.940714][0.423027,0.116015,0][-0.291213,-0.0362646,0.462524][-0.467022,-0.100346,0.878533][0.506807,0.0948116,0][-0.291213,-0.110251,0.445157][-0.456129,-0.319458,0.830598][0.506807,0.116015,0][-0.291213,-0.110251,0.445157][-0.456129,-0.319458,0.830598][0.280143,0.88876,0][-0.291213,-0.0362646,0.462524][-0.467022,-0.100346,0.878533][0.296376,0.885294,0][-0.419574,-0.0362646,0.336785][-0.813339,-0.0898748,0.574807][0.296504,0.936788,0][-0.291213,-0.110251,0.445157][-0.456129,-0.319458,0.830598][0.280143,0.88876,0][-0.419574,-0.0362646,0.336785][-0.813339,-0.0898748,0.574807][0.296504,0.936788,0][-0.411574,-0.110251,0.32399][-0.789981,-0.219352,0.572551][0.280614,0.937696,0][-0.411574,-0.110251,0.32399][-0.789981,-0.219352,0.572551][0.28381,0.397233,0][-0.419574,-0.0362646,0.336785][-0.813339,-0.0898748,0.574807][0.280143,0.37603,0][-0.493824,-0.0362645,0.175419][-0.968328,-0.0898543,0.232955][0.326387,0.37603,0][-0.411574,-0.110251,0.32399][-0.789981,-0.219352,0.572551][0.28381,0.397233,0][-0.493824,-0.0362645,0.175419][-0.968328,-0.0898543,0.232955][0.326387,0.37603,0][-0.481253,-0.110251,0.168491][-0.951216,-0.216041,0.220261][0.328373,0.397233,0][-0.481253,-0.110251,0.168491][-0.951216,-0.216041,0.220261][0.328373,0.397233,0][-0.493824,-0.0362645,0.175419][-0.968328,-0.0898543,0.232955][0.326387,0.37603,0][-0.501358,-0.0362644,-0.0198231][-0.994536,-0.0659807,-0.0808974][0.382339,0.37603,0][-0.481253,-0.110251,0.168491][-0.951216,-0.216041,0.220261][0.328373,0.397233,0][-0.501358,-0.0362644,-0.0198231][-0.994536,-0.0659807,-0.0808974][0.382339,0.37603,0][-0.491835,-0.110251,-0.0196518][-0.980482,-0.18002,-0.079039][0.38229,0.397233,0][0.00113325,-0.179971,0.474456][0,-0.485564,0.874201][0.423027,0.135995,0][0.00113317,-0.110251,0.510857][-2.8115e-007,-0.339201,0.940714][0.423027,0.116015,0][-0.291213,-0.110251,0.445157][-0.456129,-0.319458,0.830598][0.506807,0.116015,0][0.00113325,-0.179971,0.474456][0,-0.485564,0.874201][0.423027,0.135995,0][-0.291213,-0.110251,0.445157][-0.456129,-0.319458,0.830598][0.506807,0.116015,0][-0.285653,-0.179971,0.409074][-0.42123,-0.492507,0.761579][0.505213,0.135995,0][-0.285653,-0.179971,0.409074][-0.42123,-0.492507,0.761579][0.755073,0.356079,0][-0.291213,-0.110251,0.445157][-0.456129,-0.319458,0.830598][0.776754,0.349866,0][-0.411574,-0.110251,0.32399][-0.789981,-0.219352,0.572551][0.776754,0.39881,0][-0.285653,-0.179971,0.409074][-0.42123,-0.492507,0.761579][0.740668,0.325737,0][-0.411574,-0.110251,0.32399][-0.789981,-0.219352,0.572551][0.776754,0.305757,0][-0.41117,-0.179971,0.297192][-0.755895,-0.423118,0.499594][0.776638,0.325737,0][-0.41117,-0.179971,0.297192][-0.755895,-0.423118,0.499594][0.29149,0.417213,0][-0.411574,-0.110251,0.32399][-0.789981,-0.219352,0.572551][0.28381,0.397233,0][-0.481253,-0.110251,0.168491][-0.951216,-0.216041,0.220261][0.328373,0.397233,0][-0.41117,-0.179971,0.297192][-0.755895,-0.423118,0.499594][0.29149,0.417213,0][-0.481253,-0.110251,0.168491][-0.951216,-0.216041,0.220261][0.328373,0.397233,0][-0.464122,-0.179971,0.153611][-0.914751,-0.355767,0.191467][0.332637,0.417213,0][0.00113318,-0.231407,0.443991][-4.18238e-007,-0.523725,0.851887][0.423027,0.150735,0][0.00113325,-0.179971,0.474456][0,-0.485564,0.874201][0.423027,0.135995,0][-0.285653,-0.179971,0.409074][-0.42123,-0.492507,0.761579][0.505213,0.135995,0][0.00113318,-0.231407,0.443991][-4.18238e-007,-0.523725,0.851887][0.423027,0.150735,0][-0.285653,-0.179971,0.409074][-0.42123,-0.492507,0.761579][0.505213,0.135995,0][-0.274044,-0.231407,0.374273][-0.391306,-0.64917,0.652272][0.501886,0.150735,0][-0.274044,-0.231407,0.374273][-0.391306,-0.64917,0.652272][0.737844,0.36081,0][-0.285653,-0.179971,0.409074][-0.42123,-0.492507,0.761579][0.755073,0.356079,0][-0.41117,-0.179971,0.297192][-0.755895,-0.423118,0.499594][0.756208,0.404177,0][-0.274044,-0.231407,0.374273][-0.391306,-0.64917,0.652272][0.737844,0.36081,0][-0.41117,-0.179971,0.297192][-0.755895,-0.423118,0.499594][0.756208,0.404177,0][-0.378286,-0.231407,0.27174][-0.60965,-0.668902,0.425319][0.738032,0.40271,0][-0.378286,-0.231407,0.27174][-0.60965,-0.668902,0.425319][0.298784,0.431954,0][-0.41117,-0.179971,0.297192][-0.755895,-0.423118,0.499594][0.29149,0.417213,0][-0.464122,-0.179971,0.153611][-0.914751,-0.355767,0.191467][0.332637,0.417213,0][-0.378286,-0.231407,0.27174][-0.60965,-0.668902,0.425319][0.298784,0.431954,0][-0.464122,-0.179971,0.153611][-0.914751,-0.355767,0.191467][0.332637,0.417213,0][-0.444933,-0.231407,0.140155][-0.82215,-0.542456,0.172659][0.336493,0.431954,0][-0.444933,-0.231407,0.140155][-0.82215,-0.542456,0.172659][0.336493,0.431954,0][-0.464122,-0.179971,0.153611][-0.914751,-0.355767,0.191467][0.332637,0.417213,0][-0.4604,-0.181209,-0.0293556][-0.792094,-0.358161,-0.494275][0.385071,0.417568,0][-0.464122,-0.179971,0.153611][-0.914751,-0.355767,0.191467][0.332637,0.417213,0][-0.459102,-0.170056,-0.0360383][-0.706429,-0.653491,-0.271859][0.386986,0.414372,0][-0.4604,-0.181209,-0.0293556][-0.792094,-0.358161,-0.494275][0.385071,0.417568,0][-0.132732,-0.27091,0.395006][0.0805189,-0.994264,-0.0704028][0.46139,0.162056,0][0.00113318,-0.231407,0.443991][-4.18238e-007,-0.523725,0.851887][0.423027,0.150735,0][-0.274044,-0.231407,0.374273][-0.391306,-0.64917,0.652272][0.501886,0.150735,0][-0.132732,-0.27091,0.395006][0.0805189,-0.994264,-0.0704028][0.810441,0.769876,0][-0.274044,-0.231407,0.374273][-0.391306,-0.64917,0.652272][0.843751,0.746091,0][-0.253395,-0.27091,0.333087][0.203023,-0.94715,-0.248372][0.847666,0.7587,0][-0.253395,-0.27091,0.333087][0.203023,-0.94715,-0.248372][0.847666,0.7587,0][-0.274044,-0.231407,0.374273][-0.391306,-0.64917,0.652272][0.843751,0.746091,0][-0.378286,-0.231407,0.27174][-0.60965,-0.668902,0.425319][0.885651,0.746566,0][-0.253395,-0.27091,0.333087][0.203023,-0.94715,-0.248372][0.847666,0.7587,0][-0.378286,-0.231407,0.27174][-0.60965,-0.668902,0.425319][0.885651,0.746566,0][-0.350244,-0.270909,0.237826][0.20314,-0.956436,-0.209676][0.886594,0.759142,0][-0.350244,-0.270909,0.237826][0.20314,-0.956436,-0.209676][0.886594,0.759142,0][-0.378286,-0.231407,0.27174][-0.60965,-0.668902,0.425319][0.885651,0.746566,0][-0.444933,-0.231407,0.140155][-0.82215,-0.542456,0.172659][0.925555,0.76051,0][-0.350244,-0.270909,0.237826][0.20314,-0.956436,-0.209676][0.886594,0.759142,0][-0.444933,-0.231407,0.140155][-0.82215,-0.542456,0.172659][0.925555,0.76051,0][-0.412163,-0.270909,0.115575][0.186064,-0.931443,-0.31272][0.923668,0.772097,0][-0.412163,-0.270909,0.115575][0.186064,-0.931443,-0.31272][0.343537,0.443274,0][-0.444933,-0.231407,0.140155][-0.82215,-0.542456,0.172659][0.336493,0.431954,0][-0.433891,-0.223385,-0.0201754][0.364067,-0.688226,-0.627535][0.38244,0.429655,0][-0.444933,-0.231407,0.140155][-0.82215,-0.542456,0.172659][0.336493,0.431954,0][-0.4604,-0.181209,-0.0293556][-0.792094,-0.358161,-0.494275][0.385071,0.417568,0][-0.433891,-0.223385,-0.0201754][0.364067,-0.688226,-0.627535][0.38244,0.429655,0][0.0589922,0.240302,-0.403646][-0.227805,-0.707166,0.669344][0.16029,0.756928,0][0.168678,0.21729,-0.375991][-0.279636,-0.602552,0.747486][0.153696,0.725494,0][0.233562,0.3234,-0.269816][-0.262772,-0.846138,0.463683][0.184105,0.7069,0][0.077412,0.123414,-0.458419][0.287331,-0.765149,0.576183][0.126793,0.751649,0][0.0589922,0.240302,-0.403646][-0.227805,-0.707166,0.669344][0.16029,0.756928,0][0.00113326,0.141089,-0.471031][-6.41022e-007,-0.397011,0.917814][0.131858,0.773509,0][0.0589922,0.240302,-0.403646][-0.227805,-0.707166,0.669344][0.16029,0.756928,0][0.00113325,0.250747,-0.423759][-8.95758e-007,-0.714996,0.699129][0.163284,0.773509,0][0.00113326,0.141089,-0.471031][-6.41022e-007,-0.397011,0.917814][0.131858,0.773509,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.598153,0.194343,0][0.233562,0.3234,-0.269816][-0.262772,-0.846138,0.463683][0.588476,0.249685,0][0.287064,0.192572,-0.358874][-0.534237,-0.536682,0.653118][0.566747,0.209961,0][0.379809,0.192996,-0.252127][-0.765978,-0.341865,0.544431][0.92537,0.0110214,0][0.287064,0.192572,-0.358874][-0.534237,-0.536682,0.653118][0.955944,0.01,0][0.360105,0.118331,-0.287194][-0.868163,-0.103317,0.485406][0.936211,0.0320284,0][0.077412,0.123414,-0.458419][0.287331,-0.765149,0.576183][0.126793,0.751649,0][0.168678,0.141035,-0.440221][-0.0948896,-0.956322,0.276485][0.131843,0.725494,0][0.0589922,0.240302,-0.403646][-0.227805,-0.707166,0.669344][0.16029,0.756928,0][0.168678,0.141035,-0.440221][-0.0948896,-0.956322,0.276485][0.131843,0.725494,0][0.168678,0.21729,-0.375991][-0.279636,-0.602552,0.747486][0.153696,0.725494,0][0.0589922,0.240302,-0.403646][-0.227805,-0.707166,0.669344][0.16029,0.756928,0][0.287064,0.123021,-0.417872][-0.512694,-0.858529,0.00852589][0.12668,0.691567,0][0.287064,0.192572,-0.358874][-0.534237,-0.536682,0.653118][0.146612,0.691567,0][0.168678,0.141035,-0.440221][-0.0948896,-0.956322,0.276485][0.131843,0.725494,0][0.287064,0.192572,-0.358874][-0.534237,-0.536682,0.653118][0.146612,0.691567,0][0.168678,0.21729,-0.375991][-0.279636,-0.602552,0.747486][0.153696,0.725494,0][0.168678,0.141035,-0.440221][-0.0948896,-0.956322,0.276485][0.131843,0.725494,0][0.344879,0.00159295,-0.37261][-0.994957,0.0596343,-0.0806462][0.961923,0.0645453,0][0.360105,0.0216337,-0.287194][-0.978521,0.0412792,0.201972][0.937246,0.0597205,0][0.338687,0.065769,-0.374974][-0.94672,-0.319399,-0.041304][0.961913,0.0461414,0][0.360105,0.0216337,-0.287194][-0.978521,0.0412792,0.201972][0.937246,0.0597205,0][0.360105,0.118331,-0.287194][-0.868163,-0.103317,0.485406][0.936211,0.0320284,0][0.338687,0.065769,-0.374974][-0.94672,-0.319399,-0.041304][0.961913,0.0461414,0][0.0387435,-0.131148,-0.518954][0.172934,0.813495,-0.555265][0.729451,0.339535,0][0.00113328,-0.131148,-0.550617][-0.386958,0.593677,-0.705557][0.730125,0.353608,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.720856,0.346534,0][0.0387435,-0.131148,-0.518954][0.172934,0.813495,-0.555265][0.729451,0.339535,0][0.00113328,-0.125444,-0.509928][-0.188321,0.847156,0.496851][0.720856,0.346534,0][0.0366688,-0.125444,-0.489693][-0.623794,0.408523,0.666326][0.722424,0.33492,0][0.066104,-0.0996838,-0.52411][-0.0391138,-0.016866,-0.999092][0.317309,0.928584,0][0.0387435,-0.131148,-0.518954][0.172934,0.813495,-0.555265][0.317224,0.937721,0][0.0609838,-0.096216,-0.489728][-0.821424,0.215489,0.528041][0.307419,0.929105,0][0.0387435,-0.131148,-0.518954][0.172934,0.813495,-0.555265][0.317224,0.937721,0][0.0366688,-0.125444,-0.489693][-0.623794,0.408523,0.666326][0.308687,0.937385,0][0.0609838,-0.096216,-0.489728][-0.821424,0.215489,0.528041][0.307419,0.929105,0][0.0619999,-0.0394907,-0.528214][-0.0850126,-0.0574177,-0.994724][0.315839,0.911357,0][0.066104,-0.0996838,-0.52411][-0.0391138,-0.016866,-0.999092][0.317309,0.928584,0][0.0609838,-0.096216,-0.489728][-0.821424,0.215489,0.528041][0.307419,0.929105,0][0.0619999,-0.0394907,-0.528214][-0.0850126,-0.0574177,-0.994724][0.315839,0.911357,0][0.0609838,-0.096216,-0.489728][-0.821424,0.215489,0.528041][0.307419,0.929105,0][0.0562088,-0.040301,-0.489428][-0.831007,-0.235348,0.504023][0.30489,0.913282,0][0.0209592,0.0453269,-0.548734][0.484326,-0.351378,-0.801225][0.317943,0.886437,0][0.0619999,-0.0394907,-0.528214][-0.0850126,-0.0574177,-0.994724][0.315839,0.911357,0][0.018822,0.0384884,-0.503598][-0.684622,-0.503927,0.52664][0.305459,0.890347,0][0.0619999,-0.0394907,-0.528214][-0.0850126,-0.0574177,-0.994724][0.315839,0.911357,0][0.0562088,-0.040301,-0.489428][-0.831007,-0.235348,0.504023][0.30489,0.913282,0][0.018822,0.0384884,-0.503598][-0.684622,-0.503927,0.52664][0.305459,0.890347,0][0.00113327,0.050799,-0.559744][9.69897e-007,-0.220742,-0.975332][0.872537,0.398495,0][0.0209592,0.0453269,-0.548734][0.484326,-0.351378,-0.801225][0.869382,0.404177,0][0.00113327,0.0435716,-0.511434][-1.24944e-006,-0.922433,0.386157][0.858692,0.398495,0][0.0209592,0.0453269,-0.548734][0.484326,-0.351378,-0.801225][0.869382,0.404177,0][0.018822,0.0384884,-0.503598][-0.684622,-0.503927,0.52664][0.856447,0.403564,0][0.00113327,0.0435716,-0.511434][-1.24944e-006,-0.922433,0.386157][0.858692,0.398495,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.240884,0.721583,0][0.336443,-0.298508,-0.313358][-0.621307,-0.743297,0.247967][0.23976,0.730064,0][0.382807,-0.294316,-0.247004][0.21578,-0.751747,0.62315][0.220713,0.729574,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.240884,0.721583,0][0.382807,-0.294316,-0.247004][0.21578,-0.751747,0.62315][0.220713,0.729574,0][0.391588,-0.263381,-0.228135][0.390944,-0.507866,0.767617][0.214978,0.720916,0][0.391588,-0.263381,-0.228135][0.390944,-0.507866,0.767617][0.872426,0.858794,0][0.382807,-0.294316,-0.247004][0.21578,-0.751747,0.62315][0.866675,0.86744,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.857454,0.858207,0][0.382807,-0.294316,-0.247004][0.21578,-0.751747,0.62315][0.866675,0.86744,0][0.378002,-0.294316,-0.276678][0.663799,-0.705835,-0.247323][0.858178,0.867107,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.857454,0.858207,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.255858,0.721023,0][0.336443,-0.298508,-0.335961][-0.177566,-0.855846,-0.485797][0.246233,0.729822,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.240884,0.721583,0][0.336443,-0.298508,-0.335961][-0.177566,-0.855846,-0.485797][0.246233,0.729822,0][0.336443,-0.298508,-0.313358][-0.621307,-0.743297,0.247967][0.23976,0.730064,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.240884,0.721583,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.857454,0.858207,0][0.378002,-0.294316,-0.276678][0.663799,-0.705835,-0.247323][0.858178,0.867107,0][0.336443,-0.298508,-0.335961][-0.177566,-0.855846,-0.485797][0.841155,0.867641,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.857454,0.858207,0][0.336443,-0.298508,-0.335961][-0.177566,-0.855846,-0.485797][0.841155,0.867641,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.831547,0.858825,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.765613,0.218619,0][0.270067,-0.305352,-0.440447][-0.170597,-0.738436,-0.652387][0.761623,0.227208,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.75064,0.219179,0][0.270067,-0.305352,-0.440447][-0.170597,-0.738436,-0.652387][0.761623,0.227208,0][0.270067,-0.305352,-0.399628][-0.618403,-0.740456,0.263255][0.749933,0.227645,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.75064,0.219179,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.75064,0.219179,0][0.270067,-0.305352,-0.399628][-0.618403,-0.740456,0.263255][0.749933,0.227645,0][0.321328,-0.300012,-0.333417][0.196331,-0.709284,0.677031][0.730915,0.226825,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.75064,0.219179,0][0.321328,-0.300012,-0.333417][0.196331,-0.709284,0.677031][0.730915,0.226825,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.726278,0.218128,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.97863,0.801679,0][0.321328,-0.300012,-0.333417][0.196331,-0.709284,0.677031][0.973978,0.810368,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.963658,0.801092,0][0.321328,-0.300012,-0.333417][0.196331,-0.709284,0.677031][0.973978,0.810368,0][0.321328,-0.300012,-0.374235][0.699978,-0.669223,-0.249343][0.962289,0.809909,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.963658,0.801092,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.963658,0.801092,0][0.321328,-0.300012,-0.374235][0.699978,-0.669223,-0.249343][0.962289,0.809909,0][0.270067,-0.305352,-0.440447][-0.170597,-0.738436,-0.652387][0.943269,0.810694,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.963658,0.801092,0][0.270067,-0.305352,-0.440447][-0.170597,-0.738436,-0.652387][0.943269,0.810694,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.939295,0.802098,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.397754,0.66213,0][0.15428,-0.312958,-0.510823][-0.277996,-0.728401,-0.626219][0.401102,0.653084,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.412737,0.66213,0][0.15428,-0.312958,-0.510823][-0.277996,-0.728401,-0.626219][0.401102,0.653084,0][0.15428,-0.312958,-0.468779][-0.559968,-0.721694,0.406933][0.413151,0.653084,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.412737,0.66213,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.579535,0.0470184,0][0.15428,-0.312958,-0.468779][-0.559968,-0.721694,0.406933][0.570369,0.0439801,0][0.251078,-0.308559,-0.41488][0.301815,-0.709131,0.637213][0.570593,0.0162121,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.579535,0.0470184,0][0.251078,-0.308559,-0.41488][0.301815,-0.709131,0.637213][0.570593,0.0162121,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.579813,0.0124865,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.802729,0.342933,0][0.251078,-0.308559,-0.41488][0.301815,-0.709131,0.637213][0.79938,0.352286,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.787745,0.342933,0][0.251078,-0.308559,-0.41488][0.301815,-0.709131,0.637213][0.79938,0.352286,0][0.251078,-0.308559,-0.456924][0.598303,-0.692352,-0.403338][0.787332,0.352286,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.787745,0.342933,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.937832,0.858207,0][0.251078,-0.308559,-0.456924][0.598303,-0.692352,-0.403338][0.934089,0.86742,0][0.15428,-0.312958,-0.510823][-0.277996,-0.728401,-0.626219][0.906321,0.867592,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.937832,0.858207,0][0.15428,-0.312958,-0.510823][-0.277996,-0.728401,-0.626219][0.906321,0.867592,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.9033,0.858421,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.58354,0.534228,0][0.0106198,-0.315457,-0.545857][-0.415355,-0.695179,-0.586691][0.574562,0.532295,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.58354,0.519245,0][0.0106198,-0.315457,-0.545857][-0.415355,-0.695179,-0.586691][0.574562,0.532295,0][0.0106198,-0.315457,-0.502134][-0.528525,-0.688406,0.496748][0.574562,0.519765,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.58354,0.519245,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.969507,0.645367,0][0.0106198,-0.315457,-0.502134][-0.528525,-0.688406,0.496748][0.967126,0.65444,0][0.130729,-0.31317,-0.476969][0.399655,-0.695862,0.596701][0.932705,0.655071,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.969507,0.645367,0][0.130729,-0.31317,-0.476969][0.399655,-0.695862,0.596701][0.932705,0.655071,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.928996,0.646097,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.673255,0.527258,0][0.130729,-0.31317,-0.476969][0.399655,-0.695862,0.596701][0.664149,0.525324,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.673255,0.512274,0][0.130729,-0.31317,-0.476969][0.399655,-0.695862,0.596701][0.664149,0.525324,0][0.130729,-0.31317,-0.520691][0.522161,-0.693101,-0.496949][0.664149,0.512795,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.673255,0.512274,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.862793,0.427332,0][0.130729,-0.31317,-0.520691][0.522161,-0.693101,-0.496949][0.859423,0.436438,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.822284,0.428116,0][0.130729,-0.31317,-0.520691][0.522161,-0.693101,-0.496949][0.859423,0.436438,0][0.0106198,-0.315457,-0.545857][-0.415355,-0.695179,-0.586691][0.825002,0.437094,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.822284,0.428116,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.437438,0.797091,0][0.152381,-0.337151,-0.50064][0.516371,0.679432,-0.521281][0.437826,0.789406,0][0.151028,-0.335756,-0.468062][0.377,0.70222,0.603952][0.447171,0.789373,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.437438,0.797091,0][0.151028,-0.335756,-0.468062][0.377,0.70222,0.603952][0.447171,0.789373,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.448054,0.797053,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.646938,0.969107,0][0.0116709,-0.342679,-0.528786][-0.400941,0.670286,-0.62447][0.650266,0.961322,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.693086,0.969117,0][0.0116709,-0.342679,-0.528786][-0.400941,0.670286,-0.62447][0.650266,0.961322,0][0.152381,-0.337151,-0.50064][0.516371,0.679432,-0.521281][0.690622,0.96132,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.693086,0.969117,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.0206058,0.0279201,0][0.0103184,-0.342679,-0.496208][-0.551986,0.661959,0.507073][0.0205194,0.03583,0][0.0116709,-0.342679,-0.528786][-0.400941,0.670286,-0.62447][0.0111833,0.03583,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.0206058,0.0279201,0][0.0116709,-0.342679,-0.528786][-0.400941,0.670286,-0.62447][0.0111833,0.03583,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.01,0.0279201,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.928873,0.3003,0][0.151028,-0.335756,-0.468062][0.377,0.70222,0.603952][0.931302,0.292564,0][0.0103184,-0.342679,-0.496208][-0.551986,0.661959,0.507073][0.971672,0.29304,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.928873,0.3003,0][0.0103184,-0.342679,-0.496208][-0.551986,0.661959,0.507073][0.971672,0.29304,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.974598,0.300846,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.180311,0.782166,0][0.265879,-0.329982,-0.445476][0.557169,0.688379,-0.464433][0.171824,0.781784,0][0.264649,-0.326811,-0.415854][0.25897,0.757351,0.599462][0.171822,0.773239,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.180311,0.782166,0][0.264649,-0.326811,-0.415854][0.25897,0.757351,0.599462][0.171822,0.773239,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.180308,0.77149,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.0656361,0.590787,0][0.173415,-0.335466,-0.491509][-0.2884,0.692521,-0.661241][0.0692139,0.582744,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.0987932,0.590123,0][0.173415,-0.335466,-0.491509][-0.2884,0.692521,-0.661241][0.0692139,0.582744,0][0.265879,-0.329982,-0.445476][0.557169,0.688379,-0.464433][0.0957533,0.582212,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.0987932,0.590123,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.612408,0.599002,0][0.172185,-0.334197,-0.461887][-0.593495,0.697195,0.402098][0.613296,0.607061,0][0.173415,-0.335466,-0.491509][-0.2884,0.692521,-0.661241][0.604799,0.607015,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.612408,0.599002,0][0.173415,-0.335466,-0.491509][-0.2884,0.692521,-0.661241][0.604799,0.607015,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.601792,0.598944,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.895692,0.298894,0][0.264649,-0.326811,-0.415854][0.25897,0.757351,0.599462][0.898667,0.291219,0][0.172185,-0.334197,-0.461887][-0.593495,0.697195,0.402098][0.925226,0.292344,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.895692,0.298894,0][0.172185,-0.334197,-0.461887][-0.593495,0.697195,0.402098][0.925226,0.292344,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.928873,0.3003,0][0.328061,-0.31129,-0.348787][-0.096891,0.796057,0.597416][0.302862,0.190867,0][0.339407,-0.316238,-0.356323][0.8013,0.597243,-0.0349127][0.302461,0.186984,0][0.282574,-0.320063,-0.402031][-0.651846,0.742733,0.153113][0.322928,0.191223,0][0.339407,-0.316238,-0.356323][0.8013,0.597243,-0.0349127][0.302461,0.186984,0][0.2838,-0.326533,-0.42881][-0.177519,0.643671,-0.744429][0.328627,0.186072,0][0.282574,-0.320063,-0.402031][-0.651846,0.742733,0.153113][0.322928,0.191223,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.861691,0.476274,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.843645,0.48333,0][0.282574,-0.320063,-0.402031][-0.651846,0.742733,0.153113][0.855761,0.468755,0][0.282574,-0.320063,-0.402031][-0.651846,0.742733,0.153113][0.855761,0.468755,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.843645,0.48333,0][0.328061,-0.31129,-0.348787][-0.096891,0.796057,0.597416][0.841358,0.474387,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.871389,0.471833,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.861691,0.476274,0][0.2838,-0.326533,-0.42881][-0.177519,0.643671,-0.744429][0.863306,0.466429,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.861691,0.476274,0][0.282574,-0.320063,-0.402031][-0.651846,0.742733,0.153113][0.855761,0.468755,0][0.2838,-0.326533,-0.42881][-0.177519,0.643671,-0.744429][0.863306,0.466429,0][0.347237,-0.348395,-0.349149][0.825016,0.0991854,-0.556336][0.589065,0.724397,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.616065,0.7271,0][0.2838,-0.326533,-0.42881][-0.177519,0.643671,-0.744429][0.610275,0.734912,0][0.347237,-0.348395,-0.349149][0.825016,0.0991854,-0.556336][0.589065,0.724397,0][0.2838,-0.326533,-0.42881][-0.177519,0.643671,-0.744429][0.610275,0.734912,0][0.339407,-0.316238,-0.356323][0.8013,0.597243,-0.0349127][0.589321,0.733836,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.720854,0.508334,0][0.347237,-0.348395,-0.349149][0.825016,0.0991854,-0.556336][0.717291,0.510992,0][0.339407,-0.316238,-0.356323][0.8013,0.597243,-0.0349127][0.717378,0.501508,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.720854,0.508334,0][0.339407,-0.316238,-0.356323][0.8013,0.597243,-0.0349127][0.717378,0.501508,0][0.328061,-0.31129,-0.348787][-0.096891,0.796057,0.597416][0.720221,0.499387,0][0.38292,-0.300839,-0.25673][-0.147737,0.969831,0.193913][0.661421,0.605796,0][0.397995,-0.309345,-0.254914][0.821937,0.56955,-0.00564736][0.659539,0.601177,0][0.358343,-0.305608,-0.321513][-0.29611,0.934181,-0.199062][0.681324,0.605644,0][0.397995,-0.309345,-0.254914][0.821937,0.56955,-0.00564736][0.659539,0.601177,0][0.364811,-0.315116,-0.334248][0.460527,0.43379,-0.77443][0.68423,0.601699,0][0.358343,-0.305608,-0.321513][-0.29611,0.934181,-0.199062][0.681324,0.605644,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.843645,0.48333,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.813675,0.49143,0][0.358343,-0.305608,-0.321513][-0.29611,0.934181,-0.199062][0.833807,0.476979,0][0.358343,-0.305608,-0.321513][-0.29611,0.934181,-0.199062][0.833807,0.476979,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.813675,0.49143,0][0.38292,-0.300839,-0.25673][-0.147737,0.969831,0.193913][0.817148,0.485286,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.547015,0.528566,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.540647,0.534228,0][0.397995,-0.309345,-0.254914][0.821937,0.56955,-0.00564736][0.540624,0.525346,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.655948,0.605485,0][0.397995,-0.309345,-0.254914][0.821937,0.56955,-0.00564736][0.659539,0.601177,0][0.38292,-0.300839,-0.25673][-0.147737,0.969831,0.193913][0.661421,0.605796,0][0.347237,-0.348395,-0.349149][0.825016,0.0991854,-0.556336][0.638079,0.494174,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.639936,0.498212,0][0.364811,-0.315116,-0.334248][0.460527,0.43379,-0.77443][0.627972,0.497938,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.788972,0.363119,0][0.358343,-0.305608,-0.321513][-0.29611,0.934181,-0.199062][0.802729,0.362395,0][0.364811,-0.315116,-0.334248][0.460527,0.43379,-0.77443][0.800477,0.366767,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.556164,0.722747,0][0.347237,-0.348395,-0.349149][0.825016,0.0991854,-0.556336][0.589065,0.724397,0][0.364811,-0.315116,-0.334248][0.460527,0.43379,-0.77443][0.58305,0.732942,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.556164,0.722747,0][0.364811,-0.315116,-0.334248][0.460527,0.43379,-0.77443][0.58305,0.732942,0][0.397995,-0.309345,-0.254914][0.821937,0.56955,-0.00564736][0.560418,0.730219,0][0.358856,-0.196289,-0.382306][0.240678,-0.741179,-0.62668][0.498411,0.940896,0][0.444352,-0.210538,-0.286361][0.647408,-0.742014,-0.174007][0.532581,0.927155,0][0.422393,-0.210538,-0.286361][-0.120884,-0.991221,0.0535599][0.530449,0.933076,0][0.358856,-0.196289,-0.382306][0.240678,-0.741179,-0.62668][0.498411,0.940896,0][0.422393,-0.210538,-0.286361][-0.120884,-0.991221,0.0535599][0.530449,0.933076,0][0.306641,-0.189743,-0.392555][0.514566,-0.238254,-0.823685][0.49058,0.95398,0][0.444352,-0.210538,-0.286361][0.647408,-0.742014,-0.174007][0.532581,0.927155,0][0.468286,-0.179663,-0.144581][0.821385,-0.568666,0.0440982][0.573133,0.934463,0][0.446327,-0.179663,-0.144581][-0.590691,-0.739298,0.323299][0.571002,0.940384,0][0.444352,-0.210538,-0.286361][0.647408,-0.742014,-0.174007][0.532581,0.927155,0][0.446327,-0.179663,-0.144581][-0.590691,-0.739298,0.323299][0.571002,0.940384,0][0.422393,-0.210538,-0.286361][-0.120884,-0.991221,0.0535599][0.530449,0.933076,0][0.468286,-0.179663,-0.144581][0.821385,-0.568666,0.0440982][0.573133,0.934463,0][0.468286,-0.169981,-0.0677553][0.685122,-0.720888,0.104535][0.593849,0.94192,0][0.446327,-0.169981,-0.0677553][-0.736917,-0.665962,0.115969][0.591717,0.947841,0][0.468286,-0.179663,-0.144581][0.821385,-0.568666,0.0440982][0.573133,0.934463,0][0.446327,-0.169981,-0.0677553][-0.736917,-0.665962,0.115969][0.591717,0.947841,0][0.446327,-0.179663,-0.144581][-0.590691,-0.739298,0.323299][0.571002,0.940384,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.947433,0.562502,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.916919,0.562022,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.934861,0.55435,0][0.385052,-0.263381,-0.28042][0.842613,-0.459518,-0.280795][0.916919,0.562022,0][0.391588,-0.263381,-0.228135][0.390944,-0.507866,0.767617][0.903328,0.555442,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.934861,0.55435,0][0.00113329,-0.284129,-0.552602][1.05836,0.0696442,-3.02317][0.103611,0.855472,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.0889041,0.852607,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.102891,0.814061,0][0.00113328,-0.284129,-0.500317][1.5103,0.184981,3.05431][0.0889041,0.852607,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.0881839,0.811196,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.102891,0.814061,0][0.14249,-0.281393,-0.522508][1.09828,0.214978,-2.85739][0.839119,0.801092,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.831953,0.814251,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.799636,0.801462,0][0.14249,-0.281393,-0.470223][-1.2259,-0.361717,2.7765][0.831953,0.814251,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.79247,0.814621,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.799636,0.801462,0][0.262867,-0.275922,-0.45548][1.99164,0.427745,-2.20546][0.75771,0.866822,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.769968,0.858207,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.788415,0.868241,0][0.262867,-0.275922,-0.403195][-1.81576,-0.462669,2.33906][0.769968,0.858207,0][0.328527,-0.269082,-0.318384][-5.30507,-1.10779,2.5437][0.800673,0.859625,0][0.328527,-0.269082,-0.370669][2.47013,-0.19099,-2.23399][0.788415,0.868241,0][0.0835622,0.40625,-0.0214503][0.0595095,0.997404,-0.0405472][0.165037,0.136015,0][0.256182,0.388426,-0.0206992][0.28303,0.958447,-0.0356843][0.213157,0.12454,0][0.199438,0.367548,-0.288561][0.231637,0.932835,-0.275978][0.214803,0.20299,0][0.0835622,0.40625,-0.0214503][0.0595095,0.997404,-0.0405472][0.165037,0.136015,0][0.199438,0.367548,-0.288561][0.231637,0.932835,-0.275978][0.214803,0.20299,0][0.00113323,0.384615,-0.289312][3.44836e-007,0.965611,-0.25999][0.159516,0.216141,0][0.256182,0.388426,-0.0206992][0.28303,0.958447,-0.0356843][0.213157,0.12454,0][0.374163,0.333668,-0.0201787][0.552901,0.832815,-0.0268445][0.246045,0.116696,0][0.317419,0.315115,-0.288041][0.511441,0.804394,-0.302287][0.247692,0.195145,0][0.256182,0.388426,-0.0206992][0.28303,0.958447,-0.0356843][0.213157,0.12454,0][0.317419,0.315115,-0.288041][0.511441,0.804394,-0.302287][0.247692,0.195145,0][0.199438,0.367548,-0.288561][0.231637,0.932835,-0.275978][0.214803,0.20299,0][0.374163,0.333668,-0.0201787][0.552901,0.832815,-0.0268445][0.246045,0.116696,0][0.459624,0.259681,-0.0209201][0.77979,0.624892,-0.037912][0.269942,0.111325,0][0.40288,0.244271,-0.288782][0.718405,0.583355,-0.378935][0.271588,0.189775,0][0.374163,0.333668,-0.0201787][0.552901,0.832815,-0.0268445][0.246045,0.116696,0][0.40288,0.244271,-0.288782][0.718405,0.583355,-0.378935][0.271588,0.189775,0][0.317419,0.315115,-0.288041][0.511441,0.804394,-0.302287][0.247692,0.195145,0][0.459624,0.259681,-0.0209201][0.77979,0.624892,-0.037912][0.664359,0.01,0][0.500194,0.185695,-0.0206926][0.967728,0.248115,-0.0440669][0.664424,0.0312029,0][0.44345,0.173427,-0.288554][0.867724,0.24743,-0.431084][0.58766,0.0347187,0][0.459624,0.259681,-0.0209201][0.77979,0.624892,-0.037912][0.664359,0.01,0][0.44345,0.173427,-0.288554][0.867724,0.24743,-0.431084][0.58766,0.0347187,0][0.40288,0.244271,-0.288782][0.718405,0.583355,-0.378935][0.587595,0.0144162,0][0.500194,0.185695,-0.0206926][0.967728,0.248115,-0.0440669][0.664424,0.0312029,0][0.500347,0.111708,-0.0197782][0.99719,0.0387475,-0.0641131][0.664686,0.0524058,0][0.44345,0.173427,-0.288554][0.867724,0.24743,-0.431084][0.58766,0.0347187,0][0.500347,0.111708,-0.0197782][0.99719,0.0387475,-0.0641131][0.664686,0.0524058,0][0.449075,0.102582,-0.28764][0.884115,0.0224029,-0.466733][0.587923,0.0550211,0][0.44345,0.173427,-0.288554][0.867724,0.24743,-0.431084][0.58766,0.0347187,0][0.500347,0.111708,-0.0197782][0.99719,0.0387475,-0.0641131][0.664686,0.0524058,0][0.503624,0.0377219,-0.0198229][0.996509,0.0189702,-0.0812972][0.664673,0.0736087,0][0.449075,0.102582,-0.28764][0.884115,0.0224029,-0.466733][0.587923,0.0550211,0][0.503624,0.0377219,-0.0198229][0.996509,0.0189702,-0.0812972][0.664673,0.0736087,0][0.44688,0.031738,-0.287685][0.865065,-0.0255697,-0.501007][0.58791,0.0753236,0][0.449075,0.102582,-0.28764][0.884115,0.0224029,-0.466733][0.587923,0.0550211,0][0.503624,0.0377219,-0.0198229][0.996509,0.0189702,-0.0812972][0.664673,0.0736087,0][0.503624,-0.0362646,-0.0198229][0.994536,-0.0659805,-0.0808971][0.664673,0.0948116,0][0.44688,0.031738,-0.287685][0.865065,-0.0255697,-0.501007][0.58791,0.0753236,0][0.503624,-0.0362646,-0.0198229][0.994536,-0.0659805,-0.0808971][0.664673,0.0948116,0][0.44688,-0.0391064,-0.287685][0.8756,-0.0448736,-0.480947][0.58791,0.095626,0][0.44688,0.031738,-0.287685][0.865065,-0.0255697,-0.501007][0.58791,0.0753236,0][0.503624,-0.0362646,-0.0198229][0.994536,-0.0659805,-0.0808971][0.664673,0.0948116,0][0.494101,-0.110251,-0.0196517][0.980482,-0.180022,-0.0790386][0.664722,0.116015,0][0.44688,-0.0391064,-0.287685][0.8756,-0.0448736,-0.480947][0.58791,0.095626,0][0.494101,-0.110251,-0.0196517][0.980482,-0.180022,-0.0790386][0.664722,0.116015,0][0.437357,-0.109951,-0.287514][0.930837,0.0954772,-0.352741][0.587959,0.115929,0][0.44688,-0.0391064,-0.287685][0.8756,-0.0448736,-0.480947][0.58791,0.095626,0][0.469763,-0.157819,-0.0638324][0.963167,-0.262884,-0.0565703][0.652061,0.129647,0][0.468286,-0.169981,-0.0677553][0.685122,-0.720888,0.104535][0.650937,0.133132,0][0.468286,-0.179663,-0.144581][0.821385,-0.568666,0.0440982][0.62892,0.135907,0][0.469763,-0.157819,-0.0638324][0.963167,-0.262884,-0.0565703][0.652061,0.129647,0][0.468286,-0.179663,-0.144581][0.821385,-0.568666,0.0440982][0.62892,0.135907,0][0.441315,-0.154088,-0.315017][0.944647,0.0294692,-0.326762][0.580077,0.128577,0][0.487311,-0.140154,-0.0278449][0.919496,-0.357152,-0.164226][0.662374,0.124584,0][0.461369,-0.170056,-0.0360382][0.70643,-0.65349,-0.271859][0.660026,0.133153,0][0.469763,-0.157819,-0.0638324][0.963167,-0.262884,-0.0565703][0.652061,0.129647,0][0.461369,-0.170056,-0.0360382][0.70643,-0.65349,-0.271859][0.660026,0.133153,0][0.468286,-0.169981,-0.0677553][0.685122,-0.720888,0.104535][0.650937,0.133132,0][0.469763,-0.157819,-0.0638324][0.963167,-0.262884,-0.0565703][0.652061,0.129647,0][0.438052,-0.187245,-0.162214][0.767851,0.527069,-0.364146][0.527652,0.759485,0][0.44008,-0.187245,-0.15602][0.800805,0.587394,-0.11696][0.52591,0.759146,0][0.441922,-0.189899,-0.152923][0.894028,0.435659,0.104478][0.525184,0.75823,0][0.438052,-0.187245,-0.162214][0.767851,0.527069,-0.364146][0.527652,0.759485,0][0.441922,-0.189899,-0.152923][0.894028,0.435659,0.104478][0.525184,0.75823,0][0.437314,-0.19012,-0.165974][0.749571,0.317325,-0.580903][0.528867,0.758882,0][0.437314,-0.19012,-0.165974][0.749571,0.317325,-0.580903][0.528867,0.758882,0][0.441922,-0.189899,-0.152923][0.894028,0.435659,0.104478][0.525184,0.75823,0][0.463066,-0.241167,-0.129199][0.966919,0.230732,-0.10877][0.52132,0.742509,0][0.437314,-0.19012,-0.165974][0.749571,0.317325,-0.580903][0.528867,0.758882,0][0.463066,-0.241167,-0.129199][0.966919,0.230732,-0.10877][0.52132,0.742509,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.556164,0.722747,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.556164,0.722747,0][0.463066,-0.241167,-0.129199][0.966919,0.230732,-0.10877][0.52132,0.742509,0][0.426682,-0.350748,-0.111228][0.690399,-0.473094,0.547294][0.522268,0.710699,0][0.463066,-0.241167,-0.129199][0.966919,0.230732,-0.10877][0.52132,0.742509,0][0.464151,-0.243336,-0.120956][0.98717,0.135973,-0.0837074][0.51912,0.741447,0][0.426682,-0.350748,-0.111228][0.690399,-0.473094,0.547294][0.522268,0.710699,0][0.464151,-0.243336,-0.120956][0.98717,0.135973,-0.0837074][0.51912,0.741447,0][0.461411,-0.186253,-0.0535321][0.786252,0.481726,-0.386972][0.497026,0.75381,0][0.466033,-0.188224,-0.0405743][0.902141,-0.0670716,0.426197][0.49349,0.752545,0][0.464151,-0.243336,-0.120956][0.98717,0.135973,-0.0837074][0.51912,0.741447,0][0.466033,-0.188224,-0.0405743][0.902141,-0.0670716,0.426197][0.49349,0.752545,0][0.426682,-0.350748,-0.111228][0.690399,-0.473094,0.547294][0.522268,0.710699,0][0.464839,-0.184844,-0.0428278][0.908587,0.395304,-0.134923][0.493938,0.753619,0][0.466033,-0.188224,-0.0405743][0.902141,-0.0670716,0.426197][0.49349,0.752545,0][0.461998,-0.184422,-0.0493067][0.808971,0.500511,-0.308308][0.495738,0.754093,0][0.466033,-0.188224,-0.0405743][0.902141,-0.0670716,0.426197][0.49349,0.752545,0][0.461411,-0.186253,-0.0535321][0.786252,0.481726,-0.386972][0.497026,0.75381,0][0.461998,-0.184422,-0.0493067][0.808971,0.500511,-0.308308][0.495738,0.754093,0][0.395093,-0.425413,-0.188895][0.618884,-0.784843,-0.0316835][0.548207,0.693952,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.556164,0.722747,0][0.426682,-0.350748,-0.111228][0.690399,-0.473094,0.547294][0.522268,0.710699,0][0.395093,-0.425413,-0.188895][0.618884,-0.784843,-0.0316835][0.548207,0.693952,0][0.426682,-0.350748,-0.111228][0.690399,-0.473094,0.547294][0.522268,0.710699,0][0.402898,-0.413528,-0.133035][0.508808,-0.69829,0.503493][0.531843,0.694235,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.772269,0.695916,0][0.156332,-0.452004,-0.479535][0.24575,-0.758857,-0.603111][0.770633,0.721136,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.726156,0.697716,0][0.156332,-0.452004,-0.479535][0.24575,-0.758857,-0.603111][0.770633,0.721136,0][0.00113329,-0.458284,-0.511509][0.367016,-0.702687,-0.609533][0.726156,0.722935,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.726156,0.697716,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.805374,0.693952,0][0.268681,-0.445153,-0.422024][0.462835,-0.732787,-0.498807][0.80283,0.719172,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.772269,0.695916,0][0.268681,-0.445153,-0.422024][0.462835,-0.732787,-0.498807][0.80283,0.719172,0][0.156332,-0.452004,-0.479535][0.24575,-0.758857,-0.603111][0.770633,0.721136,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.772269,0.695916,0][0.347237,-0.348395,-0.349149][0.825016,0.0991854,-0.556336][0.589065,0.724397,0][0.350878,-0.436399,-0.327743][0.636899,-0.699449,-0.324239][0.587865,0.69847,0][0.268681,-0.445153,-0.422024][0.462835,-0.732787,-0.498807][0.614865,0.701173,0][0.347237,-0.348395,-0.349149][0.825016,0.0991854,-0.556336][0.589065,0.724397,0][0.268681,-0.445153,-0.422024][0.462835,-0.732787,-0.498807][0.614865,0.701173,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.616065,0.7271,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.556164,0.722747,0][0.395093,-0.425413,-0.188895][0.618884,-0.784843,-0.0316835][0.548207,0.693952,0][0.350878,-0.436399,-0.327743][0.636899,-0.699449,-0.324239][0.587865,0.69847,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.556164,0.722747,0][0.350878,-0.436399,-0.327743][0.636899,-0.699449,-0.324239][0.587865,0.69847,0][0.347237,-0.348395,-0.349149][0.825016,0.0991854,-0.556336][0.589065,0.724397,0][0.449169,-0.170974,-0.051675][-0.524245,0.846006,-0.0971682][0.32438,0.0438229,0][0.461998,-0.184422,-0.0493067][0.808971,0.500511,-0.308308][0.319366,0.0419016,0][0.461411,-0.186253,-0.0535321][0.786252,0.481726,-0.386972][0.31974,0.0406247,0][0.449169,-0.170974,-0.051675][-0.524245,0.846006,-0.0971682][0.32438,0.0438229,0][0.461411,-0.186253,-0.0535321][0.786252,0.481726,-0.386972][0.31974,0.0406247,0][0.447841,-0.175118,-0.0612373][-0.447843,0.810948,-0.376565][0.325225,0.0409332,0][0.455599,-0.171931,-0.0370129][-0.128295,0.858654,0.496239][0.491595,0.756933,0][0.464839,-0.184844,-0.0428278][0.908587,0.395304,-0.134923][0.493938,0.753619,0][0.461998,-0.184422,-0.0493067][0.808971,0.500511,-0.308308][0.495738,0.754093,0][0.455599,-0.171931,-0.0370129][-0.128295,0.858654,0.496239][0.491595,0.756933,0][0.461998,-0.184422,-0.0493067][0.808971,0.500511,-0.308308][0.495738,0.754093,0][0.449169,-0.170974,-0.051675][-0.524245,0.846006,-0.0971682][0.495667,0.758005,0][0.458302,-0.17958,-0.031913][-0.00589911,0.230755,0.972994][0.49058,0.754502,0][0.466033,-0.188224,-0.0405743][0.902141,-0.0670716,0.426197][0.49349,0.752545,0][0.464839,-0.184844,-0.0428278][0.908587,0.395304,-0.134923][0.493938,0.753619,0][0.458302,-0.17958,-0.031913][-0.00589911,0.230755,0.972994][0.49058,0.754502,0][0.464839,-0.184844,-0.0428278][0.908587,0.395304,-0.134923][0.493938,0.753619,0][0.455599,-0.171931,-0.0370129][-0.128295,0.858654,0.496239][0.491595,0.756933,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.91401,0.355957,0][0.426682,-0.350748,-0.111228][0.690399,-0.473094,0.547294][0.915871,0.349204,0][0.466033,-0.188224,-0.0405743][0.902141,-0.0670716,0.426197][0.963769,0.350708,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.91401,0.355957,0][0.466033,-0.188224,-0.0405743][0.902141,-0.0670716,0.426197][0.963769,0.350708,0][0.458302,-0.17958,-0.031913][-0.00589911,0.230755,0.972994][0.965569,0.353502,0][0.447841,-0.175118,-0.0612373][-0.447843,0.810948,-0.376565][0.325225,0.0409332,0][0.461411,-0.186253,-0.0535321][0.786252,0.481726,-0.386972][0.31974,0.0406247,0][0.435067,-0.22244,-0.113846][-0.514265,0.855732,-0.0570412][0.327114,0.0211336,0][0.461411,-0.186253,-0.0535321][0.786252,0.481726,-0.386972][0.31974,0.0406247,0][0.464151,-0.243336,-0.120956][0.98717,0.135973,-0.0837074][0.318862,0.0154263,0][0.435067,-0.22244,-0.113846][-0.514265,0.855732,-0.0570412][0.327114,0.0211336,0][0.435067,-0.22244,-0.113846][-0.514265,0.855732,-0.0570412][0.327114,0.0211336,0][0.464151,-0.243336,-0.120956][0.98717,0.135973,-0.0837074][0.318862,0.0154263,0][0.463066,-0.241167,-0.129199][0.966919,0.230732,-0.10877][0.320482,0.0138742,0][0.435067,-0.22244,-0.113846][-0.514265,0.855732,-0.0570412][0.327114,0.0211336,0][0.463066,-0.241167,-0.129199][0.966919,0.230732,-0.10877][0.320482,0.0138742,0][0.433415,-0.219136,-0.126403][-0.41016,0.647631,0.64214][0.329582,0.0187694,0][0.433415,-0.219136,-0.126403][-0.41016,0.647631,0.64214][0.287004,0.848898,0][0.463066,-0.241167,-0.129199][0.966919,0.230732,-0.10877][0.296035,0.854421,0][0.441922,-0.189899,-0.152923][0.894028,0.435659,0.104478][0.280143,0.85429,0][0.433415,-0.219136,-0.126403][-0.41016,0.647631,0.64214][0.504975,0.659663,0][0.441922,-0.189899,-0.152923][0.894028,0.435659,0.104478][0.493919,0.663079,0][0.430662,-0.182125,-0.140282][-0.0954306,0.595382,0.797755][0.493784,0.657742,0][0.430662,-0.182125,-0.140282][-0.0954306,0.595382,0.797755][0.493784,0.657742,0][0.441922,-0.189899,-0.152923][0.894028,0.435659,0.104478][0.493919,0.663079,0][0.44008,-0.187245,-0.15602][0.800805,0.587394,-0.11696][0.492846,0.663072,0][0.430662,-0.182125,-0.140282][-0.0954306,0.595382,0.797755][0.493784,0.657742,0][0.44008,-0.187245,-0.15602][0.800805,0.587394,-0.11696][0.492846,0.663072,0][0.425157,-0.174195,-0.149535][-0.394475,0.812312,0.429579][0.49058,0.65772,0][0.425157,-0.174195,-0.149535][-0.394475,0.812312,0.429579][0.652557,0.155473,0][0.44008,-0.187245,-0.15602][0.800805,0.587394,-0.11696][0.652121,0.161434,0][0.438052,-0.187245,-0.162214][0.767851,0.527069,-0.364146][0.650254,0.161434,0][0.425157,-0.174195,-0.149535][-0.394475,0.812312,0.429579][0.652557,0.155473,0][0.438052,-0.187245,-0.162214][0.767851,0.527069,-0.364146][0.650254,0.161434,0][0.419098,-0.174195,-0.16804][-0.512559,0.838439,-0.185209][0.646977,0.155473,0][0.419098,-0.174195,-0.16804][-0.512559,0.838439,-0.185209][0.646977,0.155473,0][0.438052,-0.187245,-0.162214][0.767851,0.527069,-0.364146][0.650254,0.161434,0][0.437314,-0.19012,-0.165974][0.749571,0.317325,-0.580903][0.649164,0.162056,0][0.419098,-0.174195,-0.16804][-0.512559,0.838439,-0.185209][0.646977,0.155473,0][0.437314,-0.19012,-0.165974][0.749571,0.317325,-0.580903][0.649164,0.162056,0][0.416893,-0.182786,-0.179275][-0.469046,0.614302,-0.634531][0.64372,0.15733,0][0.389461,-0.413528,-0.133035][-0.62498,-0.535183,0.568313][0.895692,0.354706,0][0.402898,-0.413528,-0.133035][0.508808,-0.69829,0.503493][0.896716,0.350994,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.91401,0.355957,0][0.402898,-0.413528,-0.133035][0.508808,-0.69829,0.503493][0.896716,0.350994,0][0.426682,-0.350748,-0.111228][0.690399,-0.473094,0.547294][0.915871,0.349204,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.91401,0.355957,0][0.381155,-0.425413,-0.188895][-0.672821,-0.680602,0.289987][0.714623,0.558883,0][0.395093,-0.425413,-0.188895][0.618884,-0.784843,-0.0316835][0.718617,0.558883,0][0.389461,-0.413528,-0.133035][-0.62498,-0.535183,0.568313][0.717003,0.574892,0][0.395093,-0.425413,-0.188895][0.618884,-0.784843,-0.0316835][0.718617,0.558883,0][0.402898,-0.413528,-0.133035][0.508808,-0.69829,0.503493][0.720854,0.574892,0][0.389461,-0.413528,-0.133035][-0.62498,-0.535183,0.568313][0.717003,0.574892,0][0.333205,-0.436399,-0.301194][-0.620585,-0.677772,0.394333][0.700881,0.526701,0][0.350878,-0.436399,-0.327743][0.636899,-0.699449,-0.324239][0.705946,0.519093,0][0.395093,-0.425413,-0.188895][0.618884,-0.784843,-0.0316835][0.718617,0.558883,0][0.333205,-0.436399,-0.301194][-0.620585,-0.677772,0.394333][0.700881,0.526701,0][0.395093,-0.425413,-0.188895][0.618884,-0.784843,-0.0316835][0.718617,0.558883,0][0.381155,-0.425413,-0.188895][-0.672821,-0.680602,0.289987][0.714623,0.558883,0][0.268096,-0.445153,-0.395475][-0.389486,-0.732172,0.558771][0.682222,0.499682,0][0.268681,-0.445153,-0.422024][0.462835,-0.732787,-0.498807][0.68239,0.492074,0][0.350878,-0.436399,-0.327743][0.636899,-0.699449,-0.324239][0.705946,0.519093,0][0.268096,-0.445153,-0.395475][-0.389486,-0.732172,0.558771][0.682222,0.499682,0][0.350878,-0.436399,-0.327743][0.636899,-0.699449,-0.324239][0.705946,0.519093,0][0.333205,-0.436399,-0.301194][-0.620585,-0.677772,0.394333][0.700881,0.526701,0][0.155746,-0.452004,-0.452986][-0.199198,-0.700187,0.685608][0.650025,0.483201,0][0.156332,-0.452004,-0.479535][0.24575,-0.758857,-0.603111][0.650193,0.475592,0][0.268681,-0.445153,-0.422024][0.462835,-0.732787,-0.498807][0.68239,0.492074,0][0.155746,-0.452004,-0.452986][-0.199198,-0.700187,0.685608][0.650025,0.483201,0][0.268681,-0.445153,-0.422024][0.462835,-0.732787,-0.498807][0.68239,0.492074,0][0.268096,-0.445153,-0.395475][-0.389486,-0.732172,0.558771][0.682222,0.499682,0][0.00113329,-0.458284,-0.48496][0.313662,-0.687178,0.655288][0.605717,0.474038,0][0.156332,-0.452004,-0.479535][0.24575,-0.758857,-0.603111][0.650193,0.475592,0][0.155746,-0.452004,-0.452986][-0.199198,-0.700187,0.685608][0.650025,0.483201,0][0.00113329,-0.458284,-0.48496][0.313662,-0.687178,0.655288][0.605717,0.474038,0][0.00113329,-0.458284,-0.511509][0.367016,-0.702687,-0.609533][0.605717,0.466429,0][0.156332,-0.452004,-0.479535][0.24575,-0.758857,-0.603111][0.650193,0.475592,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.94871,0.746091,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.985691,0.746181,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.953019,0.755792,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.985691,0.746181,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.99,0.755882,0][0.277561,-0.357149,-0.44343][3.63058,0.395955,-3.96472][0.953019,0.755792,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.355769,0.199706,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.366263,0.201301,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.356031,0.246287,0][0.16204,-0.364,-0.500942][1.97969,0.463781,-5.00861][0.366263,0.201301,0][0.00113329,-0.37028,-0.532915][0.21257,0.51091,-0.832938][0.366441,0.248315,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.356031,0.246287,0][0.416893,-0.182786,-0.179275][-0.469046,0.614302,-0.634531][0.0523906,0.253703,0][0.437314,-0.19012,-0.165974][0.749571,0.317325,-0.580903][0.0516768,0.25988,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.0138148,0.252726,0][0.437314,-0.19012,-0.165974][0.749571,0.317325,-0.580903][0.0516768,0.25988,0][0.405779,-0.332098,-0.235361][0.931069,0.012457,-0.364629][0.01,0.260345,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.0138148,0.252726,0][0.430662,-0.182125,-0.140282][-0.0954306,0.595382,0.797755][0.771081,0.473082,0][0.425157,-0.174195,-0.149535][-0.394475,0.812312,0.429579][0.7722,0.469774,0][0.419098,-0.174195,-0.16804][-0.512559,0.838439,-0.185209][0.77676,0.467065,0][0.430662,-0.182125,-0.140282][-0.0954306,0.595382,0.797755][0.771081,0.473082,0][0.419098,-0.174195,-0.16804][-0.512559,0.838439,-0.185209][0.77676,0.467065,0][0.416893,-0.182786,-0.179275][-0.469046,0.614302,-0.634531][0.780785,0.467537,0][0.433415,-0.219136,-0.126403][-0.41016,0.647631,0.64214][0.773079,0.484232,0][0.430662,-0.182125,-0.140282][-0.0954306,0.595382,0.797755][0.771081,0.473082,0][0.416893,-0.182786,-0.179275][-0.469046,0.614302,-0.634531][0.780785,0.467537,0][0.433415,-0.219136,-0.126403][-0.41016,0.647631,0.64214][0.773079,0.484232,0][0.416893,-0.182786,-0.179275][-0.469046,0.614302,-0.634531][0.780785,0.467537,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.813675,0.49143,0][0.435067,-0.22244,-0.113846][-0.514265,0.855732,-0.0570412][0.770469,0.486884,0][0.433415,-0.219136,-0.126403][-0.41016,0.647631,0.64214][0.773079,0.484232,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.788604,0.51888,0][0.433415,-0.219136,-0.126403][-0.41016,0.647631,0.64214][0.773079,0.484232,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.813675,0.49143,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.788604,0.51888,0][0.458302,-0.17958,-0.031913][-0.00589911,0.230755,0.972994][0.744009,0.488317,0][0.447841,-0.175118,-0.0612373][-0.447843,0.810948,-0.376565][0.750581,0.482925,0][0.435067,-0.22244,-0.113846][-0.514265,0.855732,-0.0570412][0.770469,0.486884,0][0.458302,-0.17958,-0.031913][-0.00589911,0.230755,0.972994][0.744009,0.488317,0][0.435067,-0.22244,-0.113846][-0.514265,0.855732,-0.0570412][0.770469,0.486884,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.788604,0.51888,0][0.447841,-0.175118,-0.0612373][-0.447843,0.810948,-0.376565][0.750581,0.482925,0][0.458302,-0.17958,-0.031913][-0.00589911,0.230755,0.972994][0.744009,0.488317,0][0.449169,-0.170974,-0.051675][-0.524245,0.846006,-0.0971682][0.747618,0.483304,0][0.458302,-0.17958,-0.031913][-0.00589911,0.230755,0.972994][0.744009,0.488317,0][0.455599,-0.171931,-0.0370129][-0.128295,0.858654,0.496239][0.744146,0.485685,0][0.449169,-0.170974,-0.051675][-0.524245,0.846006,-0.0971682][0.747618,0.483304,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.788604,0.51888,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.813675,0.49143,0][0.381155,-0.425413,-0.188895][-0.672821,-0.680602,0.289987][0.818669,0.525908,0][0.402239,-0.350748,-0.111228][-0.668305,-0.10613,0.736277][0.788604,0.51888,0][0.381155,-0.425413,-0.188895][-0.672821,-0.680602,0.289987][0.818669,0.525908,0][0.389461,-0.413528,-0.133035][-0.62498,-0.535183,0.568313][0.803166,0.531156,0][0.00113329,-0.458284,-0.48496][0.313662,-0.687178,0.655288][0.97554,0.326049,0][0.155746,-0.452004,-0.452986][-0.199198,-0.700187,0.685608][0.931195,0.325905,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.974598,0.300846,0][0.155746,-0.452004,-0.452986][-0.199198,-0.700187,0.685608][0.931195,0.325905,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.928873,0.3003,0][0.00113329,-0.37028,-0.495907][0.221764,0.675295,0.703418][0.974598,0.300846,0][0.155746,-0.452004,-0.452986][-0.199198,-0.700187,0.685608][0.931195,0.325905,0][0.268096,-0.445153,-0.395475][-0.389486,-0.732172,0.558771][0.898947,0.325146,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.928873,0.3003,0][0.268096,-0.445153,-0.395475][-0.389486,-0.732172,0.558771][0.898947,0.325146,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.895692,0.298894,0][0.160504,-0.362416,-0.463933][-0.892503,1.37798,2.16409][0.928873,0.3003,0][0.268096,-0.445153,-0.395475][-0.389486,-0.732172,0.558771][0.872455,0.500534,0][0.333205,-0.436399,-0.301194][-0.620585,-0.677772,0.394333][0.847945,0.512177,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.843645,0.48333,0][0.268096,-0.445153,-0.395475][-0.389486,-0.732172,0.558771][0.872455,0.500534,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.843645,0.48333,0][0.276024,-0.353187,-0.406422][-1.9399,1.1525,1.65154][0.861691,0.476274,0][0.333205,-0.436399,-0.301194][-0.620585,-0.677772,0.394333][0.847945,0.512177,0][0.381155,-0.425413,-0.188895][-0.672821,-0.680602,0.289987][0.818669,0.525908,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.813675,0.49143,0][0.333205,-0.436399,-0.301194][-0.620585,-0.677772,0.394333][0.847945,0.512177,0][0.38292,-0.313082,-0.235361][-0.677713,0.719158,0.153353][0.813675,0.49143,0][0.33302,-0.342195,-0.339706][-0.713973,0.461264,0.526761][0.843645,0.48333,0][0.00113317,0.388426,0.245271][1.51657e-007,0.958468,0.285201][0.124629,0.0669663,0][0.144517,0.388426,0.19924][0.146941,0.959553,0.24014][0.167644,0.0704539,0][0.0226698,0.40625,0.063752][0.0173844,0.99836,0.0545404][0.142484,0.116214,0][0.144517,0.388426,0.19924][0.146941,0.959553,0.24014][0.167644,0.0704539,0][0.0464917,0.40625,0.0515651][0.0337139,0.998394,0.0455289][0.149927,0.11806,0][0.0226698,0.40625,0.063752][0.0173844,0.99836,0.0545404][0.142484,0.116214,0][0.144517,0.388426,0.19924][0.146941,0.959553,0.24014][0.167644,0.0704539,0][0.201764,0.388426,0.14127][0.228848,0.960305,0.159506][0.187402,0.0828944,0][0.0464917,0.40625,0.0515651][0.0337139,0.998394,0.0455289][0.149927,0.11806,0][0.201764,0.388426,0.14127][0.228848,0.960305,0.159506][0.187402,0.0828944,0][0.0654964,0.40625,0.0323203][0.0474732,0.998328,0.0329722][0.156486,0.12219,0][0.0464917,0.40625,0.0515651][0.0337139,0.998394,0.0455289][0.149927,0.11806,0][0.201764,0.388426,0.14127][0.228848,0.960305,0.159506][0.187402,0.0828944,0][0.238597,0.388426,0.0648201][0.265107,0.960084,0.0892049][0.202669,0.101824,0][0.0654964,0.40625,0.0323203][0.0474732,0.998328,0.0329722][0.156486,0.12219,0][0.238597,0.388426,0.0648201][0.265107,0.960084,0.0892049][0.202669,0.101824,0][0.0777243,0.40625,0.00694034][0.0545339,0.998344,0.0183343][0.161555,0.128474,0][0.0654964,0.40625,0.0323203][0.0474732,0.998328,0.0329722][0.156486,0.12219,0][0.238597,0.388426,0.0648201][0.265107,0.960084,0.0892049][0.202669,0.101824,0][0.256182,0.388426,-0.0206992][0.28303,0.958447,-0.0356843][0.213157,0.12454,0][0.0835622,0.40625,-0.0214503][0.0595095,0.997404,-0.0405472][0.165037,0.136015,0][0.238597,0.388426,0.0648201][0.265107,0.960084,0.0892049][0.202669,0.101824,0][0.0835622,0.40625,-0.0214503][0.0595095,0.997404,-0.0405472][0.165037,0.136015,0][0.0777243,0.40625,0.00694034][0.0545339,0.998344,0.0183343][0.161555,0.128474,0][0.00113316,0.333668,0.368682][0,0.818081,0.575103][0.116575,0.0325288,0][0.210904,0.333668,0.301382][0.258822,0.854723,0.449956][0.179503,0.0376189,0][0.00113317,0.388426,0.245271][1.51657e-007,0.958468,0.285201][0.124629,0.0669663,0][0.210904,0.333668,0.301382][0.258822,0.854723,0.449956][0.179503,0.0376189,0][0.144517,0.388426,0.19924][0.146941,0.959553,0.24014][0.167644,0.0704539,0][0.00113317,0.388426,0.245271][1.51657e-007,0.958468,0.285201][0.124629,0.0669663,0][0.210904,0.333668,0.301382][0.258822,0.854723,0.449956][0.179503,0.0376189,0][0.294601,0.333668,0.216628][0.424741,0.85606,0.294545][0.20839,0.0558075,0][0.144517,0.388426,0.19924][0.146941,0.959553,0.24014][0.167644,0.0704539,0][0.294601,0.333668,0.216628][0.424741,0.85606,0.294545][0.20839,0.0558075,0][0.201764,0.388426,0.14127][0.228848,0.960305,0.159506][0.187402,0.0828944,0][0.144517,0.388426,0.19924][0.146941,0.959553,0.24014][0.167644,0.0704539,0][0.294601,0.333668,0.216628][0.424741,0.85606,0.294545][0.20839,0.0558075,0][0.348452,0.333668,0.104854][0.509207,0.844817,0.164293][0.230711,0.0834834,0][0.201764,0.388426,0.14127][0.228848,0.960305,0.159506][0.187402,0.0828944,0][0.348452,0.333668,0.104854][0.509207,0.844817,0.164293][0.230711,0.0834834,0][0.238597,0.388426,0.0648201][0.265107,0.960084,0.0892049][0.202669,0.101824,0][0.201764,0.388426,0.14127][0.228848,0.960305,0.159506][0.187402,0.0828944,0][0.348452,0.333668,0.104854][0.509207,0.844817,0.164293][0.230711,0.0834834,0][0.374163,0.333668,-0.0201787][0.552901,0.832815,-0.0268445][0.246045,0.116696,0][0.256182,0.388426,-0.0206992][0.28303,0.958447,-0.0356843][0.213157,0.12454,0][0.348452,0.333668,0.104854][0.509207,0.844817,0.164293][0.230711,0.0834834,0][0.256182,0.388426,-0.0206992][0.28303,0.958447,-0.0356843][0.213157,0.12454,0][0.238597,0.388426,0.0648201][0.265107,0.960084,0.0892049][0.202669,0.101824,0][0.0011332,0.259681,0.447402][0,0.625066,0.780572][0.111438,0.0105621,0][0.267565,0.259681,0.387107][0.357525,0.671112,0.64945][0.18972,0.01,0][0.210904,0.333668,0.301382][0.258822,0.854723,0.449956][0.179503,0.0376189,0][0.0011332,0.259681,0.447402][0,0.625066,0.780572][0.111438,0.0105621,0][0.210904,0.333668,0.301382][0.258822,0.854723,0.449956][0.179503,0.0376189,0][0.00113316,0.333668,0.368682][0,0.818081,0.575103][0.116575,0.0325288,0][0.267565,0.259681,0.387107][0.357525,0.671112,0.64945][0.18972,0.01,0][0.373767,0.259681,0.279562][0.608819,0.676715,0.413999][0.226374,0.0330793,0][0.210904,0.333668,0.301382][0.258822,0.854723,0.449956][0.179503,0.0376189,0][0.373767,0.259681,0.279562][0.608819,0.676715,0.413999][0.226374,0.0330793,0][0.294601,0.333668,0.216628][0.424741,0.85606,0.294545][0.20839,0.0558075,0][0.210904,0.333668,0.301382][0.258822,0.854723,0.449956][0.179503,0.0376189,0][0.373767,0.259681,0.279562][0.608819,0.676715,0.413999][0.226374,0.0330793,0][0.437067,0.259681,0.137733][0.725072,0.658348,0.20211][0.253293,0.0685256,0][0.294601,0.333668,0.216628][0.424741,0.85606,0.294545][0.20839,0.0558075,0][0.437067,0.259681,0.137733][0.725072,0.658348,0.20211][0.253293,0.0685256,0][0.348452,0.333668,0.104854][0.509207,0.844817,0.164293][0.230711,0.0834834,0][0.294601,0.333668,0.216628][0.424741,0.85606,0.294545][0.20839,0.0558075,0][0.437067,0.259681,0.137733][0.725072,0.658348,0.20211][0.253293,0.0685256,0][0.459624,0.259681,-0.0209201][0.77979,0.624892,-0.037912][0.269942,0.111325,0][0.348452,0.333668,0.104854][0.509207,0.844817,0.164293][0.230711,0.0834834,0][0.459624,0.259681,-0.0209201][0.77979,0.624892,-0.037912][0.269942,0.111325,0][0.374163,0.333668,-0.0201787][0.552901,0.832815,-0.0268445][0.246045,0.116696,0][0.348452,0.333668,0.104854][0.509207,0.844817,0.164293][0.230711,0.0834834,0][0.0011332,0.185695,0.490326][0,0.427468,0.90403][0.423027,0.0312029,0][0.289115,0.185695,0.429161][0.43572,0.422781,0.794609][0.340498,0.031203,0][0.267565,0.259681,0.387107][0.357525,0.671112,0.64945][0.346673,0.01,0][0.0011332,0.185695,0.490326][0,0.427468,0.90403][0.423027,0.0312029,0][0.267565,0.259681,0.387107][0.357525,0.671112,0.64945][0.346673,0.01,0][0.0011332,0.259681,0.447402][0,0.625066,0.780572][0.423027,0.01,0][0.289115,0.185695,0.429161][0.43572,0.422781,0.794609][0.565127,0.838252,0][0.40906,0.185695,0.312786][0.753516,0.396549,0.524368][0.565127,0.790359,0][0.267565,0.259681,0.387107][0.357525,0.671112,0.64945][0.589972,0.834292,0][0.40906,0.185695,0.312786][0.753516,0.396549,0.524368][0.565127,0.790359,0][0.373767,0.259681,0.279562][0.608819,0.676715,0.413999][0.590455,0.790987,0][0.267565,0.259681,0.387107][0.357525,0.671112,0.64945][0.589972,0.834292,0][0.40906,0.185695,0.312786][0.753516,0.396549,0.524368][0.759992,0.0312029,0][0.47778,0.185695,0.162295][0.900732,0.364774,0.235844][0.716864,0.0312029,0][0.373767,0.259681,0.279562][0.608819,0.676715,0.413999][0.75047,0.01,0][0.47778,0.185695,0.162295][0.900732,0.364774,0.235844][0.716864,0.0312029,0][0.437067,0.259681,0.137733][0.725072,0.658348,0.20211][0.709825,0.01,0][0.373767,0.259681,0.279562][0.608819,0.676715,0.413999][0.75047,0.01,0][0.47778,0.185695,0.162295][0.900732,0.364774,0.235844][0.716864,0.0312029,0][0.500194,0.185695,-0.0206926][0.967728,0.248115,-0.0440669][0.664424,0.0312029,0][0.437067,0.259681,0.137733][0.725072,0.658348,0.20211][0.709825,0.01,0][0.500194,0.185695,-0.0206926][0.967728,0.248115,-0.0440669][0.664424,0.0312029,0][0.459624,0.259681,-0.0209201][0.77979,0.624892,-0.037912][0.664359,0.01,0][0.437067,0.259681,0.137733][0.725072,0.658348,0.20211][0.709825,0.01,0][0.0011332,0.111708,0.518354][-1.37978e-007,0.234995,0.971997][0.423027,0.0524059,0][0.29377,0.111708,0.455062][0.461115,0.201949,0.864054][0.339163,0.0524059,0][0.0011332,0.185695,0.490326][0,0.427468,0.90403][0.423027,0.0312029,0][0.29377,0.111708,0.455062][0.461115,0.201949,0.864054][0.339163,0.0524059,0][0.289115,0.185695,0.429161][0.43572,0.422781,0.794609][0.340498,0.031203,0][0.0011332,0.185695,0.490326][0,0.427468,0.90403][0.423027,0.0312029,0][0.29377,0.111708,0.455062][0.461115,0.201949,0.864054][0.543772,0.842463,0][0.420134,0.111708,0.331279][0.804821,0.159792,0.571602][0.543898,0.791771,0][0.289115,0.185695,0.429161][0.43572,0.422781,0.794609][0.565127,0.838252,0][0.420134,0.111708,0.331279][0.804821,0.159792,0.571602][0.543898,0.791771,0][0.40906,0.185695,0.312786][0.753516,0.396549,0.524368][0.565127,0.790359,0][0.289115,0.185695,0.429161][0.43572,0.422781,0.794609][0.565127,0.838252,0][0.420134,0.111708,0.331279][0.804821,0.159792,0.571602][0.765291,0.0524058,0][0.493228,0.111708,0.172425][0.962946,0.13695,0.232335][0.719767,0.0524058,0][0.40906,0.185695,0.312786][0.753516,0.396549,0.524368][0.759992,0.0312029,0][0.493228,0.111708,0.172425][0.962946,0.13695,0.232335][0.719767,0.0524058,0][0.47778,0.185695,0.162295][0.900732,0.364774,0.235844][0.716864,0.0312029,0][0.40906,0.185695,0.312786][0.753516,0.396549,0.524368][0.759992,0.0312029,0][0.493228,0.111708,0.172425][0.962946,0.13695,0.232335][0.719767,0.0524058,0][0.500347,0.111708,-0.0197782][0.99719,0.0387475,-0.0641131][0.664686,0.0524058,0][0.47778,0.185695,0.162295][0.900732,0.364774,0.235844][0.716864,0.0312029,0][0.500347,0.111708,-0.0197782][0.99719,0.0387475,-0.0641131][0.664686,0.0524058,0][0.500194,0.185695,-0.0206926][0.967728,0.248115,-0.0440669][0.664424,0.0312029,0][0.47778,0.185695,0.162295][0.900732,0.364774,0.235844][0.716864,0.0312029,0][0.00113316,0.0377218,0.527536][-2.90087e-007,0.0611803,0.998127][0.423027,0.0736088,0][0.293479,0.0377218,0.462525][0.471376,0.0441678,0.880826][0.339247,0.0736088,0][0.0011332,0.111708,0.518354][-1.37978e-007,0.234995,0.971997][0.423027,0.0524059,0][0.293479,0.0377218,0.462525][0.471376,0.0441678,0.880826][0.339247,0.0736088,0][0.29377,0.111708,0.455062][0.461115,0.201949,0.864054][0.339163,0.0524059,0][0.0011332,0.111708,0.518354][-1.37978e-007,0.234995,0.971997][0.423027,0.0524059,0][0.293479,0.0377218,0.462525][0.471376,0.0441678,0.880826][0.339247,0.0736088,0][0.42184,0.0377218,0.336785][0.815705,0.0308255,0.577647][0.302461,0.0736088,0][0.29377,0.111708,0.455062][0.461115,0.201949,0.864054][0.339163,0.0524059,0][0.42184,0.0377218,0.336785][0.815705,0.0308255,0.577647][0.302461,0.0736088,0][0.420134,0.111708,0.331279][0.804821,0.159792,0.571602][0.30295,0.0524059,0][0.29377,0.111708,0.455062][0.461115,0.201949,0.864054][0.339163,0.0524059,0][0.42184,0.0377218,0.336785][0.815705,0.0308255,0.577647][0.766869,0.0736087,0][0.496091,0.0377218,0.175419][0.971833,0.0234908,0.234498][0.720625,0.0736087,0][0.420134,0.111708,0.331279][0.804821,0.159792,0.571602][0.765291,0.0524058,0][0.496091,0.0377218,0.175419][0.971833,0.0234908,0.234498][0.720625,0.0736087,0][0.493228,0.111708,0.172425][0.962946,0.13695,0.232335][0.719767,0.0524058,0][0.420134,0.111708,0.331279][0.804821,0.159792,0.571602][0.765291,0.0524058,0][0.496091,0.0377218,0.175419][0.971833,0.0234908,0.234498][0.720625,0.0736087,0][0.503624,0.0377219,-0.0198229][0.996509,0.0189702,-0.0812972][0.664673,0.0736087,0][0.493228,0.111708,0.172425][0.962946,0.13695,0.232335][0.719767,0.0524058,0][0.503624,0.0377219,-0.0198229][0.996509,0.0189702,-0.0812972][0.664673,0.0736087,0][0.500347,0.111708,-0.0197782][0.99719,0.0387475,-0.0641131][0.664686,0.0524058,0][0.493228,0.111708,0.172425][0.962946,0.13695,0.232335][0.719767,0.0524058,0][0.00113316,-0.0362647,0.527536][-2.67553e-007,-0.108992,0.994043][0.423027,0.0948117,0][0.293479,-0.0362647,0.462525][0.467022,-0.100347,0.878533][0.339247,0.0948117,0][0.293479,0.0377218,0.462525][0.471376,0.0441678,0.880826][0.339247,0.0736088,0][0.00113316,-0.0362647,0.527536][-2.67553e-007,-0.108992,0.994043][0.423027,0.0948117,0][0.293479,0.0377218,0.462525][0.471376,0.0441678,0.880826][0.339247,0.0736088,0][0.00113316,0.0377218,0.527536][-2.90087e-007,0.0611803,0.998127][0.423027,0.0736088,0][0.293479,-0.0362647,0.462525][0.467022,-0.100347,0.878533][0.339247,0.0948117,0][0.42184,-0.0362647,0.336785][0.813338,-0.0898747,0.574807][0.302461,0.0948117,0][0.42184,0.0377218,0.336785][0.815705,0.0308255,0.577647][0.302461,0.0736088,0][0.293479,-0.0362647,0.462525][0.467022,-0.100347,0.878533][0.339247,0.0948117,0][0.42184,0.0377218,0.336785][0.815705,0.0308255,0.577647][0.302461,0.0736088,0][0.293479,0.0377218,0.462525][0.471376,0.0441678,0.880826][0.339247,0.0736088,0][0.42184,-0.0362647,0.336785][0.813338,-0.0898747,0.574807][0.766869,0.0948117,0][0.496091,-0.0362647,0.175419][0.968328,-0.0898538,0.232955][0.720625,0.0948117,0][0.496091,0.0377218,0.175419][0.971833,0.0234908,0.234498][0.720625,0.0736087,0][0.42184,-0.0362647,0.336785][0.813338,-0.0898747,0.574807][0.766869,0.0948117,0][0.496091,0.0377218,0.175419][0.971833,0.0234908,0.234498][0.720625,0.0736087,0][0.42184,0.0377218,0.336785][0.815705,0.0308255,0.577647][0.766869,0.0736087,0][0.496091,-0.0362647,0.175419][0.968328,-0.0898538,0.232955][0.720625,0.0948117,0][0.503624,-0.0362646,-0.0198229][0.994536,-0.0659805,-0.0808971][0.664673,0.0948116,0][0.496091,0.0377218,0.175419][0.971833,0.0234908,0.234498][0.720625,0.0736087,0][0.503624,-0.0362646,-0.0198229][0.994536,-0.0659805,-0.0808971][0.664673,0.0948116,0][0.503624,0.0377219,-0.0198229][0.996509,0.0189702,-0.0812972][0.664673,0.0736087,0][0.496091,0.0377218,0.175419][0.971833,0.0234908,0.234498][0.720625,0.0736087,0][0.00113317,-0.110251,0.510857][-2.8115e-007,-0.339201,0.940714][0.423027,0.116015,0][0.293479,-0.110251,0.445157][0.456128,-0.319459,0.830598][0.339247,0.116015,0][0.293479,-0.0362647,0.462525][0.467022,-0.100347,0.878533][0.339247,0.0948117,0][0.00113317,-0.110251,0.510857][-2.8115e-007,-0.339201,0.940714][0.423027,0.116015,0][0.293479,-0.0362647,0.462525][0.467022,-0.100347,0.878533][0.339247,0.0948117,0][0.00113316,-0.0362647,0.527536][-2.67553e-007,-0.108992,0.994043][0.423027,0.0948117,0][0.293479,-0.110251,0.445157][0.456128,-0.319459,0.830598][0.49058,0.840547,0][0.413841,-0.110251,0.32399][0.789981,-0.219352,0.572551][0.49105,0.791611,0][0.42184,-0.0362647,0.336785][0.813338,-0.0898747,0.574807][0.506941,0.792519,0][0.293479,-0.110251,0.445157][0.456128,-0.319459,0.830598][0.49058,0.840547,0][0.42184,-0.0362647,0.336785][0.813338,-0.0898747,0.574807][0.506941,0.792519,0][0.293479,-0.0362647,0.462525][0.467022,-0.100347,0.878533][0.506813,0.844013,0][0.413841,-0.110251,0.32399][0.789981,-0.219352,0.572551][0.763202,0.116015,0][0.48352,-0.110251,0.168491][0.951216,-0.216041,0.220261][0.71864,0.116015,0][0.496091,-0.0362647,0.175419][0.968328,-0.0898538,0.232955][0.720625,0.0948117,0][0.413841,-0.110251,0.32399][0.789981,-0.219352,0.572551][0.763202,0.116015,0][0.496091,-0.0362647,0.175419][0.968328,-0.0898538,0.232955][0.720625,0.0948117,0][0.42184,-0.0362647,0.336785][0.813338,-0.0898747,0.574807][0.766869,0.0948117,0][0.48352,-0.110251,0.168491][0.951216,-0.216041,0.220261][0.71864,0.116015,0][0.494101,-0.110251,-0.0196517][0.980482,-0.180022,-0.0790386][0.664722,0.116015,0][0.503624,-0.0362646,-0.0198229][0.994536,-0.0659805,-0.0808971][0.664673,0.0948116,0][0.48352,-0.110251,0.168491][0.951216,-0.216041,0.220261][0.71864,0.116015,0][0.503624,-0.0362646,-0.0198229][0.994536,-0.0659805,-0.0808971][0.664673,0.0948116,0][0.496091,-0.0362647,0.175419][0.968328,-0.0898538,0.232955][0.720625,0.0948117,0][0.00113325,-0.179971,0.474456][0,-0.485564,0.874201][0.423027,0.135995,0][0.287919,-0.179971,0.409074][0.42123,-0.492507,0.761579][0.34084,0.135995,0][0.293479,-0.110251,0.445157][0.456128,-0.319459,0.830598][0.339247,0.116015,0][0.00113325,-0.179971,0.474456][0,-0.485564,0.874201][0.423027,0.135995,0][0.293479,-0.110251,0.445157][0.456128,-0.319459,0.830598][0.339247,0.116015,0][0.00113317,-0.110251,0.510857][-2.8115e-007,-0.339201,0.940714][0.423027,0.116015,0][0.287919,-0.179971,0.409074][0.42123,-0.492507,0.761579][0.692295,0.559788,0][0.413436,-0.179971,0.297192][0.755894,-0.423118,0.499594][0.656325,0.559788,0][0.413841,-0.110251,0.32399][0.789981,-0.219352,0.572551][0.656208,0.539808,0][0.287919,-0.179971,0.409074][0.42123,-0.492507,0.761579][0.380117,0.736818,0][0.413841,-0.110251,0.32399][0.789981,-0.219352,0.572551][0.422847,0.7585,0][0.293479,-0.110251,0.445157][0.456128,-0.319459,0.830598][0.373903,0.7585,0][0.413436,-0.179971,0.297192][0.755894,-0.423118,0.499594][0.755523,0.135995,0][0.466388,-0.179971,0.153611][0.914751,-0.355768,0.191467][0.714376,0.135995,0][0.48352,-0.110251,0.168491][0.951216,-0.216041,0.220261][0.71864,0.116015,0][0.413436,-0.179971,0.297192][0.755894,-0.423118,0.499594][0.755523,0.135995,0][0.48352,-0.110251,0.168491][0.951216,-0.216041,0.220261][0.71864,0.116015,0][0.413841,-0.110251,0.32399][0.789981,-0.219352,0.572551][0.763202,0.116015,0][0.00113318,-0.231407,0.443991][-4.18238e-007,-0.523725,0.851887][0.423027,0.150735,0][0.27631,-0.231407,0.374274][0.391305,-0.649169,0.652272][0.344167,0.150735,0][0.287919,-0.179971,0.409074][0.42123,-0.492507,0.761579][0.34084,0.135995,0][0.00113318,-0.231407,0.443991][-4.18238e-007,-0.523725,0.851887][0.423027,0.150735,0][0.287919,-0.179971,0.409074][0.42123,-0.492507,0.761579][0.34084,0.135995,0][0.00113325,-0.179971,0.474456][0,-0.485564,0.874201][0.423027,0.135995,0][0.27631,-0.231407,0.374274][0.391305,-0.649169,0.652272][0.384847,0.719589,0][0.380552,-0.231407,0.27174][0.60965,-0.668902,0.425319][0.426747,0.719778,0][0.413436,-0.179971,0.297192][0.755894,-0.423118,0.499594][0.428214,0.737954,0][0.27631,-0.231407,0.374274][0.391305,-0.649169,0.652272][0.384847,0.719589,0][0.413436,-0.179971,0.297192][0.755894,-0.423118,0.499594][0.428214,0.737954,0][0.287919,-0.179971,0.409074][0.42123,-0.492507,0.761579][0.380117,0.736818,0][0.380552,-0.231407,0.27174][0.60965,-0.668902,0.425319][0.748229,0.150735,0][0.447199,-0.231407,0.140155][0.82215,-0.542456,0.172659][0.710519,0.150735,0][0.466388,-0.179971,0.153611][0.914751,-0.355768,0.191467][0.714376,0.135995,0][0.380552,-0.231407,0.27174][0.60965,-0.668902,0.425319][0.748229,0.150735,0][0.466388,-0.179971,0.153611][0.914751,-0.355768,0.191467][0.714376,0.135995,0][0.413436,-0.179971,0.297192][0.755894,-0.423118,0.499594][0.755523,0.135995,0][0.447199,-0.231407,0.140155][0.82215,-0.542456,0.172659][0.710519,0.150735,0][0.462666,-0.181209,-0.0293555][0.792094,-0.35816,-0.494275][0.661941,0.136349,0][0.466388,-0.179971,0.153611][0.914751,-0.355768,0.191467][0.714376,0.135995,0][0.462666,-0.181209,-0.0293555][0.792094,-0.35816,-0.494275][0.661941,0.136349,0][0.461369,-0.170056,-0.0360382][0.70643,-0.65349,-0.271859][0.660026,0.133153,0][0.466388,-0.179971,0.153611][0.914751,-0.355768,0.191467][0.714376,0.135995,0][0.134999,-0.27091,0.395006][-0.0805193,-0.994264,-0.0704018][0.761597,0.827333,0][0.255662,-0.27091,0.333087][-0.203023,-0.94715,-0.248373][0.724838,0.814706,0][0.27631,-0.231407,0.374274][0.391305,-0.649169,0.652272][0.729245,0.80226,0][0.134999,-0.27091,0.395006][-0.0805193,-0.994264,-0.0704018][0.384664,0.162056,0][0.27631,-0.231407,0.374274][0.391305,-0.649169,0.652272][0.344167,0.150735,0][0.00113318,-0.231407,0.443991][-4.18238e-007,-0.523725,0.851887][0.423027,0.150735,0][0.255662,-0.27091,0.333087][-0.203023,-0.94715,-0.248373][0.724838,0.814706,0][0.35251,-0.27091,0.237826][-0.20314,-0.956436,-0.209676][0.685923,0.813621,0][0.380552,-0.231407,0.27174][0.60965,-0.668902,0.425319][0.687359,0.801092,0][0.255662,-0.27091,0.333087][-0.203023,-0.94715,-0.248373][0.724838,0.814706,0][0.380552,-0.231407,0.27174][0.60965,-0.668902,0.425319][0.687359,0.801092,0][0.27631,-0.231407,0.374274][0.391305,-0.649169,0.652272][0.729245,0.80226,0][0.35251,-0.27091,0.237826][-0.20314,-0.956436,-0.209676][0.685923,0.813621,0][0.414429,-0.27091,0.115575][-0.186064,-0.931443,-0.31272][0.64837,0.825113,0][0.447199,-0.231407,0.140155][0.82215,-0.542456,0.172659][0.646938,0.813461,0][0.35251,-0.27091,0.237826][-0.20314,-0.956436,-0.209676][0.685923,0.813621,0][0.447199,-0.231407,0.140155][0.82215,-0.542456,0.172659][0.646938,0.813461,0][0.380552,-0.231407,0.27174][0.60965,-0.668902,0.425319][0.687359,0.801092,0][0.414429,-0.27091,0.115575][-0.186064,-0.931443,-0.31272][0.703475,0.162056,0][0.436158,-0.223385,-0.0201752][-0.364067,-0.688226,-0.627535][0.664572,0.148436,0][0.447199,-0.231407,0.140155][0.82215,-0.542456,0.172659][0.710519,0.150735,0][0.436158,-0.223385,-0.0201752][-0.364067,-0.688226,-0.627535][0.664572,0.148436,0][0.462666,-0.181209,-0.0293555][0.792094,-0.35816,-0.494275][0.661941,0.136349,0][0.447199,-0.231407,0.140155][0.82215,-0.542456,0.172659][0.710519,0.150735,0][0.0116709,-0.342679,-0.528786][-0.400941,0.670286,-0.62447][0.945855,0.514031,0][0.0103184,-0.342679,-0.496208][-0.551986,0.661959,0.507073][0.944451,0.523269,0][0.151028,-0.335756,-0.468062][0.377,0.70222,0.603952][0.903328,0.523476,0][0.152381,-0.337151,-0.50064][0.516371,0.679432,-0.521281][0.904733,0.514238,0][0.0116709,-0.342679,-0.528786][-0.400941,0.670286,-0.62447][0.945855,0.514031,0][0.151028,-0.335756,-0.468062][0.377,0.70222,0.603952][0.903328,0.523476,0][-0.0094043,-0.342679,-0.528786][0.400942,0.670285,-0.62447][0.728797,0.361326,0][-0.150114,-0.337151,-0.50064][-0.516371,0.679432,-0.521281][0.730125,0.402428,0][-0.148762,-0.335756,-0.468062][-0.377,0.702222,0.60395][0.720946,0.404177,0][-0.0094043,-0.342679,-0.528786][0.400942,0.670285,-0.62447][0.728797,0.361326,0][-0.148762,-0.335756,-0.468062][-0.377,0.702222,0.60395][0.720946,0.404177,0][-0.00805186,-0.342679,-0.496208][0.551986,0.661959,0.507073][0.719618,0.363075,0][-0.171149,-0.335466,-0.491509][0.2884,0.692521,-0.661241][0.219583,0.889921,0][-0.263613,-0.329982,-0.445476][-0.557168,0.688377,-0.464435][0.249183,0.889994,0][-0.262383,-0.326811,-0.415854][-0.25897,0.757351,0.599462][0.252632,0.897759,0][-0.171149,-0.335466,-0.491509][0.2884,0.692521,-0.661241][0.219583,0.889921,0][-0.262383,-0.326811,-0.415854][-0.25897,0.757351,0.599462][0.252632,0.897759,0][-0.169919,-0.334197,-0.461887][0.593494,0.697196,0.402097][0.223031,0.897686,0][0.173415,-0.335466,-0.491509][-0.2884,0.692521,-0.661241][0.148286,0.657191,0][0.172185,-0.334197,-0.461887][-0.593495,0.697195,0.402098][0.144536,0.664815,0][0.264649,-0.326811,-0.415854][0.25897,0.757351,0.599462][0.114955,0.663727,0][0.265879,-0.329982,-0.445476][0.557169,0.688379,-0.464433][0.118706,0.656103,0][0.173415,-0.335466,-0.491509][-0.2884,0.692521,-0.661241][0.148286,0.657191,0][0.264649,-0.326811,-0.415854][0.25897,0.757351,0.599462][0.114955,0.663727,0][0.270067,-0.305352,-0.440447][-0.170597,-0.738436,-0.652387][0.743459,0.335051,0][0.321328,-0.300012,-0.333417][0.196331,-0.709284,0.677031][0.776754,0.341981,0][0.270067,-0.305352,-0.399628][-0.618403,-0.740456,0.263255][0.752758,0.342147,0][0.321328,-0.300012,-0.374235][0.699978,-0.669223,-0.249343][0.767455,0.334884,0][0.321328,-0.300012,-0.333417][0.196331,-0.709284,0.677031][0.776754,0.341981,0][0.270067,-0.305352,-0.440447][-0.170597,-0.738436,-0.652387][0.743459,0.335051,0][0.336443,-0.298508,-0.335961][-0.177566,-0.855846,-0.485797][0.364964,0.190473,0][0.382807,-0.294316,-0.247004][0.21578,-0.751747,0.62315][0.336345,0.187752,0][0.336443,-0.298508,-0.313358][-0.621307,-0.743297,0.247967][0.359529,0.186949,0][0.378002,-0.294316,-0.276678][0.663799,-0.705835,-0.247323][0.34423,0.191223,0][0.382807,-0.294316,-0.247004][0.21578,-0.751747,0.62315][0.336345,0.187752,0][0.336443,-0.298508,-0.335961][-0.177566,-0.855846,-0.485797][0.364964,0.190473,0][0.15428,-0.312958,-0.510823][-0.277996,-0.728401,-0.626219][0.562734,0.415871,0][0.251078,-0.308559,-0.41488][0.301815,-0.709131,0.637213][0.600626,0.425341,0][0.15428,-0.312958,-0.468779][-0.559968,-0.721694,0.406933][0.568888,0.42623,0][0.251078,-0.308559,-0.456924][0.598303,-0.692352,-0.403338][0.594473,0.414983,0][0.251078,-0.308559,-0.41488][0.301815,-0.709131,0.637213][0.600626,0.425341,0][0.15428,-0.312958,-0.510823][-0.277996,-0.728401,-0.626219][0.562734,0.415871,0][0.0106198,-0.315457,-0.545857][-0.415355,-0.695179,-0.586691][0.790528,0.334184,0][0.130729,-0.31317,-0.476969][0.399655,-0.695862,0.596701][0.801913,0.296172,0][0.0106198,-0.315457,-0.502134][-0.528525,-0.688406,0.496748][0.802729,0.331331,0][0.130729,-0.31317,-0.520691][0.522161,-0.693101,-0.496949][0.789713,0.299026,0][0.130729,-0.31317,-0.476969][0.399655,-0.695862,0.596701][0.801913,0.296172,0][0.0106198,-0.315457,-0.545857][-0.415355,-0.695179,-0.586691][0.790528,0.334184,0][-0.128462,-0.31317,-0.520691][-0.522161,-0.693101,-0.496949][0.911939,0.144216,0][-0.00835324,-0.315457,-0.502134][0.528525,-0.688406,0.496747][0.87917,0.132415,0][-0.128462,-0.31317,-0.476969][-0.399655,-0.695862,0.596701][0.914335,0.131917,0][-0.00835323,-0.315457,-0.545857][0.415355,-0.69518,-0.586691][0.876775,0.144714,0][-0.00835324,-0.315457,-0.502134][0.528525,-0.688406,0.496747][0.87917,0.132415,0][-0.128462,-0.31317,-0.520691][-0.522161,-0.693101,-0.496949][0.911939,0.144216,0][-0.248811,-0.308558,-0.456924][-0.598303,-0.692352,-0.403338][0.50144,0.238115,0][-0.152013,-0.312958,-0.468779][0.559968,-0.721694,0.406932][0.475453,0.227831,0][-0.248811,-0.308558,-0.41488][-0.301815,-0.709131,0.637213][0.507203,0.227534,0][-0.152013,-0.312958,-0.510823][0.277996,-0.728401,-0.62622][0.469691,0.238413,0][-0.152013,-0.312958,-0.468779][0.559968,-0.721694,0.406932][0.475453,0.227831,0][-0.248811,-0.308558,-0.456924][-0.598303,-0.692352,-0.403338][0.50144,0.238115,0][-0.319061,-0.300012,-0.374235][-0.699978,-0.669223,-0.249342][0.178758,0.581851,0][-0.267801,-0.305352,-0.399628][0.618402,-0.740457,0.263255][0.193158,0.589685,0][-0.319061,-0.300012,-0.333417][-0.196331,-0.709284,0.677031][0.169187,0.588577,0][-0.267801,-0.305352,-0.440447][0.170596,-0.738436,-0.652388][0.202729,0.582958,0][-0.267801,-0.305352,-0.399628][0.618402,-0.740457,0.263255][0.193158,0.589685,0][-0.319061,-0.300012,-0.374235][-0.699978,-0.669223,-0.249342][0.178758,0.581851,0][-0.375735,-0.294316,-0.276678][-0.659148,-0.710468,-0.246495][0.498329,0.598933,0][-0.334177,-0.298508,-0.313358][0.617343,-0.746519,0.248185][0.513777,0.602632,0][-0.380541,-0.294316,-0.247004][-0.215448,-0.752374,0.622507][0.49058,0.602696,0][-0.334177,-0.298508,-0.335961][0.17724,-0.856393,-0.484951][0.519077,0.598907,0][-0.334177,-0.298508,-0.313358][0.617343,-0.746519,0.248185][0.513777,0.602632,0][-0.375735,-0.294316,-0.276678][-0.659148,-0.710468,-0.246495][0.498329,0.598933,0][0.303228,0.329981,-0.0298283][-0.445341,-0.895264,-0.0131706][0.204688,0.437226,0][0.294263,0.33486,0.0681681][-0.488533,-0.863297,-0.126701][0.187253,0.459392,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][0.294263,0.33486,0.0681681][-0.488533,-0.863297,-0.126701][0.187253,0.459392,0][0.183233,0.352687,0.234649][-0.350186,-0.856511,-0.379154][0.134599,0.482112,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][0.310477,0.32603,-0.154059][-0.471766,-0.861751,0.186607][0.225801,0.408485,0][0.303228,0.329981,-0.0298283][-0.445341,-0.895264,-0.0131706][0.204688,0.437226,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][0.233562,0.3234,-0.269816][-0.262772,-0.846138,0.463683][0.225355,0.368659,0][0.310477,0.32603,-0.154059][-0.471766,-0.861751,0.186607][0.225801,0.408485,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][-0.291996,0.334861,0.068168][0.488533,-0.863297,-0.126701][0.0462858,0.367985,0][-0.300961,0.329981,-0.0298285][0.44534,-0.895265,-0.0131705][0.0594093,0.343024,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][-0.180966,0.352688,0.234649][0.350186,-0.856512,-0.379154][0.0470263,0.425327,0][-0.291996,0.334861,0.068168][0.488533,-0.863297,-0.126701][0.0462858,0.367985,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][0.00113317,0.355666,0.307347][-1.4473e-007,-0.841096,-0.540885][0.0794778,0.4712,0][-0.180966,0.352688,0.234649][0.350186,-0.856512,-0.379154][0.0470263,0.425327,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][-0.300961,0.329981,-0.0298285][0.44534,-0.895265,-0.0131705][0.0594093,0.343024,0][-0.30821,0.32603,-0.154059][0.471766,-0.861751,0.186607][0.0770357,0.312022,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][-0.30821,0.32603,-0.154059][0.471766,-0.861751,0.186607][0.0770357,0.312022,0][-0.231295,0.3234,-0.269816][0.262771,-0.846138,0.463683][0.113579,0.29618,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][-0.0567257,0.240302,-0.403646][0.227804,-0.707166,0.669344][0.17642,0.291219,0][0.00113325,0.250747,-0.423759][-8.95758e-007,-0.714996,0.699129][0.193469,0.295404,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][0.00113325,0.250747,-0.423759][-8.95758e-007,-0.714996,0.699129][0.193469,0.295404,0][0.0589922,0.240302,-0.403646][-0.227805,-0.707166,0.669344][0.204245,0.309261,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][0.183233,0.352687,0.234649][-0.350186,-0.856511,-0.379154][0.134599,0.482112,0][0.00113317,0.355666,0.307347][-1.4473e-007,-0.841096,-0.540885][0.0794778,0.4712,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][-0.231295,0.3234,-0.269816][0.262771,-0.846138,0.463683][0.113579,0.29618,0][-0.0567257,0.240302,-0.403646][0.227804,-0.707166,0.669344][0.17642,0.291219,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0][0.0589922,0.240302,-0.403646][-0.227805,-0.707166,0.669344][0.204245,0.309261,0][0.233562,0.3234,-0.269816][-0.262772,-0.846138,0.463683][0.225355,0.368659,0][0.00113321,0.385602,-0.0273436][-2.81689e-007,-0.995587,0.0938482][0.131661,0.390723,0] \ No newline at end of file diff --git a/shareddata/fonts/pumpkin.mesh b/shareddata/fonts/pumpkin.mesh new file mode 100644 index 0000000..8d610d3 --- /dev/null +++ b/shareddata/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/shareddata/fonts/spike.mesh b/shareddata/fonts/spike.mesh new file mode 100644 index 0000000..7db5d0d --- /dev/null +++ b/shareddata/fonts/spike.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/teapotdodge.mesh b/shareddata/fonts/teapotdodge.mesh similarity index 100% rename from teapotdodge.mesh rename to shareddata/fonts/teapotdodge.mesh diff --git a/shareddata/sky/GreySky_bk.png b/shareddata/sky/GreySky_bk.png new file mode 100644 index 0000000..8561c28 Binary files /dev/null and b/shareddata/sky/GreySky_bk.png differ diff --git a/shareddata/sky/GreySky_dn.png b/shareddata/sky/GreySky_dn.png new file mode 100644 index 0000000..a4696d6 Binary files /dev/null and b/shareddata/sky/GreySky_dn.png differ diff --git a/shareddata/sky/GreySky_ft.png b/shareddata/sky/GreySky_ft.png new file mode 100644 index 0000000..1e06bf9 Binary files /dev/null and b/shareddata/sky/GreySky_ft.png differ diff --git a/shareddata/sky/GreySky_lf.png b/shareddata/sky/GreySky_lf.png new file mode 100644 index 0000000..1e06bf9 Binary files /dev/null and b/shareddata/sky/GreySky_lf.png differ diff --git a/shareddata/sky/GreySky_rt.png b/shareddata/sky/GreySky_rt.png new file mode 100644 index 0000000..431f5e8 Binary files /dev/null and b/shareddata/sky/GreySky_rt.png differ diff --git a/shareddata/sky/GreySky_up.png b/shareddata/sky/GreySky_up.png new file mode 100644 index 0000000..bdde771 Binary files /dev/null and b/shareddata/sky/GreySky_up.png differ diff --git a/sky/darksky512_bk.png b/shareddata/sky/darksky512_bk.png similarity index 100% rename from sky/darksky512_bk.png rename to shareddata/sky/darksky512_bk.png diff --git a/sky/darksky512_dn.png b/shareddata/sky/darksky512_dn.png similarity index 100% rename from sky/darksky512_dn.png rename to shareddata/sky/darksky512_dn.png diff --git a/sky/darksky512_ft.png b/shareddata/sky/darksky512_ft.png similarity index 100% rename from sky/darksky512_ft.png rename to shareddata/sky/darksky512_ft.png diff --git a/sky/darksky512_lf.png b/shareddata/sky/darksky512_lf.png similarity index 100% rename from sky/darksky512_lf.png rename to shareddata/sky/darksky512_lf.png diff --git a/sky/darksky512_rt.png b/shareddata/sky/darksky512_rt.png similarity index 100% rename from sky/darksky512_rt.png rename to shareddata/sky/darksky512_rt.png diff --git a/sky/darksky512_up.png b/shareddata/sky/darksky512_up.png similarity index 100% rename from sky/darksky512_up.png rename to shareddata/sky/darksky512_up.png diff --git a/sky/greenscreen.png b/shareddata/sky/greenscreen.png similarity index 100% rename from sky/greenscreen.png rename to shareddata/sky/greenscreen.png diff --git a/sky/redsky512_bk.png b/shareddata/sky/redsky512_bk.png similarity index 100% rename from sky/redsky512_bk.png rename to shareddata/sky/redsky512_bk.png diff --git a/sky/redsky512_dn.png b/shareddata/sky/redsky512_dn.png similarity index 100% rename from sky/redsky512_dn.png rename to shareddata/sky/redsky512_dn.png diff --git a/sky/redsky512_ft.png b/shareddata/sky/redsky512_ft.png similarity index 100% rename from sky/redsky512_ft.png rename to shareddata/sky/redsky512_ft.png diff --git a/sky/redsky512_lf.png b/shareddata/sky/redsky512_lf.png similarity index 100% rename from sky/redsky512_lf.png rename to shareddata/sky/redsky512_lf.png diff --git a/sky/redsky512_rt.png b/shareddata/sky/redsky512_rt.png similarity index 100% rename from sky/redsky512_rt.png rename to shareddata/sky/redsky512_rt.png diff --git a/sky/redsky512_up.png b/shareddata/sky/redsky512_up.png similarity index 100% rename from sky/redsky512_up.png rename to shareddata/sky/redsky512_up.png diff --git a/shareddata/textures/10face.png b/shareddata/textures/10face.png new file mode 100644 index 0000000..dbdeec6 Binary files /dev/null and b/shareddata/textures/10face.png differ diff --git a/shareddata/textures/1Face.png b/shareddata/textures/1Face.png new file mode 100644 index 0000000..b6f7d2d Binary files /dev/null and b/shareddata/textures/1Face.png differ diff --git a/shareddata/textures/BillboardBloxMart.png b/shareddata/textures/BillboardBloxMart.png new file mode 100644 index 0000000..f3ce4fd Binary files /dev/null and b/shareddata/textures/BillboardBloxMart.png differ diff --git a/shareddata/textures/BillboardBloxflakes.png b/shareddata/textures/BillboardBloxflakes.png new file mode 100644 index 0000000..9fb633d Binary files /dev/null and b/shareddata/textures/BillboardBloxflakes.png differ diff --git a/shareddata/textures/BillboardBloxflakesSanta.png b/shareddata/textures/BillboardBloxflakesSanta.png new file mode 100644 index 0000000..a27cf48 Binary files /dev/null and b/shareddata/textures/BillboardBloxflakesSanta.png differ diff --git a/shareddata/textures/BillboardCrowbar.png b/shareddata/textures/BillboardCrowbar.png new file mode 100644 index 0000000..110b5f8 Binary files /dev/null and b/shareddata/textures/BillboardCrowbar.png differ diff --git a/shareddata/textures/BillboardGodbuilder.png b/shareddata/textures/BillboardGodbuilder.png new file mode 100644 index 0000000..9927e58 Binary files /dev/null and b/shareddata/textures/BillboardGodbuilder.png differ diff --git a/shareddata/textures/BillboardHauntedMansion.png b/shareddata/textures/BillboardHauntedMansion.png new file mode 100644 index 0000000..18e1ce2 Binary files /dev/null and b/shareddata/textures/BillboardHauntedMansion.png differ diff --git a/shareddata/textures/BillboardImperialZombieArmy.png b/shareddata/textures/BillboardImperialZombieArmy.png new file mode 100644 index 0000000..e4a1b22 Binary files /dev/null and b/shareddata/textures/BillboardImperialZombieArmy.png differ diff --git a/shareddata/textures/BillboardInsureblox.png b/shareddata/textures/BillboardInsureblox.png new file mode 100644 index 0000000..f612ec2 Binary files /dev/null and b/shareddata/textures/BillboardInsureblox.png differ diff --git a/shareddata/textures/BillboardLawCenter.png b/shareddata/textures/BillboardLawCenter.png new file mode 100644 index 0000000..22dc96c Binary files /dev/null and b/shareddata/textures/BillboardLawCenter.png differ diff --git a/shareddata/textures/BillboardMicrosoftFlybugRepellent.png b/shareddata/textures/BillboardMicrosoftFlybugRepellent.png new file mode 100644 index 0000000..7616862 Binary files /dev/null and b/shareddata/textures/BillboardMicrosoftFlybugRepellent.png differ diff --git a/shareddata/textures/BillboardNukesForKids.png b/shareddata/textures/BillboardNukesForKids.png new file mode 100644 index 0000000..6cb5954 Binary files /dev/null and b/shareddata/textures/BillboardNukesForKids.png differ diff --git a/shareddata/textures/BillboardQualityHomes.png b/shareddata/textures/BillboardQualityHomes.png new file mode 100644 index 0000000..33b4a46 Binary files /dev/null and b/shareddata/textures/BillboardQualityHomes.png differ diff --git a/shareddata/textures/BillboardRobloxNews.png b/shareddata/textures/BillboardRobloxNews.png new file mode 100644 index 0000000..1c1e1d0 Binary files /dev/null and b/shareddata/textures/BillboardRobloxNews.png differ diff --git a/shareddata/textures/BillboardRobloxianWireless.png b/shareddata/textures/BillboardRobloxianWireless.png new file mode 100644 index 0000000..d3a683f Binary files /dev/null and b/shareddata/textures/BillboardRobloxianWireless.png differ diff --git a/shareddata/textures/BillboardStudioARE.png b/shareddata/textures/BillboardStudioARE.png new file mode 100644 index 0000000..f62e01a Binary files /dev/null and b/shareddata/textures/BillboardStudioARE.png differ diff --git a/shareddata/textures/BillboardWitchShoppe.png b/shareddata/textures/BillboardWitchShoppe.png new file mode 100644 index 0000000..6deecdb Binary files /dev/null and b/shareddata/textures/BillboardWitchShoppe.png differ diff --git a/shareddata/textures/BlueVortex.png b/shareddata/textures/BlueVortex.png new file mode 100644 index 0000000..b0e2226 Binary files /dev/null and b/shareddata/textures/BlueVortex.png differ diff --git a/shareddata/textures/Disappear.png b/shareddata/textures/Disappear.png new file mode 100644 index 0000000..e5f238e Binary files /dev/null and b/shareddata/textures/Disappear.png differ diff --git a/shareddata/textures/FreeBricks.png b/shareddata/textures/FreeBricks.png new file mode 100644 index 0000000..eabfdc7 Binary files /dev/null and b/shareddata/textures/FreeBricks.png differ diff --git a/shareddata/textures/Metal.png b/shareddata/textures/Metal.png new file mode 100644 index 0000000..317d8b4 Binary files /dev/null and b/shareddata/textures/Metal.png differ diff --git a/shareddata/textures/NukeTheWhales.png b/shareddata/textures/NukeTheWhales.png new file mode 100644 index 0000000..b79b099 Binary files /dev/null and b/shareddata/textures/NukeTheWhales.png differ diff --git a/shareddata/textures/PossiblyJackFrostIDK.png b/shareddata/textures/PossiblyJackFrostIDK.png new file mode 100644 index 0000000..0ed1d9c Binary files /dev/null and b/shareddata/textures/PossiblyJackFrostIDK.png differ diff --git a/shareddata/textures/PowerTools.png b/shareddata/textures/PowerTools.png new file mode 100644 index 0000000..030ace5 Binary files /dev/null and b/shareddata/textures/PowerTools.png differ diff --git a/shareddata/textures/Pumpkin.png b/shareddata/textures/Pumpkin.png new file mode 100644 index 0000000..9c0fcd7 Binary files /dev/null and b/shareddata/textures/Pumpkin.png differ diff --git a/shareddata/textures/RiddlingSkull.png b/shareddata/textures/RiddlingSkull.png new file mode 100644 index 0000000..4efa075 Binary files /dev/null and b/shareddata/textures/RiddlingSkull.png differ diff --git a/shareddata/textures/SECRETCONTEST.png b/shareddata/textures/SECRETCONTEST.png new file mode 100644 index 0000000..4dc2c75 Binary files /dev/null and b/shareddata/textures/SECRETCONTEST.png differ diff --git a/shareddata/textures/SECRETCONTEST2.png b/shareddata/textures/SECRETCONTEST2.png new file mode 100644 index 0000000..42df9ad Binary files /dev/null and b/shareddata/textures/SECRETCONTEST2.png differ diff --git a/shareddata/textures/TeapotSign.png b/shareddata/textures/TeapotSign.png new file mode 100644 index 0000000..e33e5f6 Binary files /dev/null and b/shareddata/textures/TeapotSign.png differ diff --git a/shareddata/textures/TurnItUp.png b/shareddata/textures/TurnItUp.png new file mode 100644 index 0000000..51cf189 Binary files /dev/null and b/shareddata/textures/TurnItUp.png differ diff --git a/shareddata/textures/Vortex.png b/shareddata/textures/Vortex.png new file mode 100644 index 0000000..ef8c703 Binary files /dev/null and b/shareddata/textures/Vortex.png differ diff --git a/shareddata/textures/Wood.png b/shareddata/textures/Wood.png new file mode 100644 index 0000000..8773940 Binary files /dev/null and b/shareddata/textures/Wood.png differ diff --git a/shareddata/textures/YellowCap.png b/shareddata/textures/YellowCap.png new file mode 100644 index 0000000..20a8728 Binary files /dev/null and b/shareddata/textures/YellowCap.png differ diff --git a/shareddata/textures/cake.png b/shareddata/textures/cake.png new file mode 100644 index 0000000..7dcf3ce Binary files /dev/null and b/shareddata/textures/cake.png differ diff --git a/shareddata/textures/cap.png b/shareddata/textures/cap.png new file mode 100644 index 0000000..c24dbf8 Binary files /dev/null and b/shareddata/textures/cap.png differ diff --git a/shareddata/textures/easteregg.png b/shareddata/textures/easteregg.png new file mode 100644 index 0000000..30948f4 Binary files /dev/null and b/shareddata/textures/easteregg.png differ diff --git a/shareddata/textures/fish.png b/shareddata/textures/fish.png new file mode 100644 index 0000000..c8df0b2 Binary files /dev/null and b/shareddata/textures/fish.png differ diff --git a/shareddata/textures/flush.png b/shareddata/textures/flush.png new file mode 100644 index 0000000..db07e1a Binary files /dev/null and b/shareddata/textures/flush.png differ diff --git a/shareddata/textures/napkincarpet.png b/shareddata/textures/napkincarpet.png new file mode 100644 index 0000000..d602852 Binary files /dev/null and b/shareddata/textures/napkincarpet.png differ diff --git a/shareddata/textures/plug.png b/shareddata/textures/plug.png new file mode 100644 index 0000000..cc641c7 Binary files /dev/null and b/shareddata/textures/plug.png differ diff --git a/shareddata/textures/skullface.png b/shareddata/textures/skullface.png new file mode 100644 index 0000000..f48c28a Binary files /dev/null and b/shareddata/textures/skullface.png differ diff --git a/shareddata/textures/stripe.png b/shareddata/textures/stripe.png new file mode 100644 index 0000000..64fa4cb Binary files /dev/null and b/shareddata/textures/stripe.png differ diff --git a/shareddata/textures/wall.png b/shareddata/textures/wall.png new file mode 100644 index 0000000..7d16059 Binary files /dev/null and b/shareddata/textures/wall.png differ diff --git a/shareddata/textures/wood2.png b/shareddata/textures/wood2.png new file mode 100644 index 0000000..5f05344 Binary files /dev/null and b/shareddata/textures/wood2.png differ